Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pubsweet
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julien Tremblay McLellan
pubsweet
Commits
ede80491
Commit
ede80491
authored
6 years ago
by
Jure
Browse files
Options
Downloads
Patches
Plain Diff
feat(server): expose model in connector
parent
9c48f2c4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
packages/server/src/connectors/connector.js
+39
-3
39 additions, 3 deletions
packages/server/src/connectors/connector.js
with
39 additions
and
3 deletions
packages/server/src/connectors/connector.js
+
39
−
3
View file @
ede80491
const
{
can
,
canKnowAbout
,
filterAll
}
=
require
(
'
../helpers/authorization
'
)
const
{
can
,
canKnowAbout
,
filterAll
}
=
require
(
'
../helpers/authorization
'
)
const
{
ref
,
lit
}
=
require
(
'
objection
'
)
// create a function which creates a new entity and performs authorization checks
// create a function which creates a new entity and performs authorization checks
const
createCreator
=
(
entityName
,
EntityModel
)
=>
async
(
input
,
ctx
)
=>
{
const
createCreator
=
(
entityName
,
EntityModel
)
=>
async
(
input
,
ctx
)
=>
{
await
can
(
ctx
.
user
,
'
create
'
,
entityName
)
await
can
(
ctx
.
user
,
'
create
'
,
entityName
)
...
@@ -36,10 +36,45 @@ const updateCreator = (entityName, EntityModel) => async (id, update, ctx) => {
...
@@ -36,10 +36,45 @@ const updateCreator = (entityName, EntityModel) => async (id, update, ctx) => {
// create a function which fetches all entities of the
// create a function which fetches all entities of the
// given model and performs authorization checks
// given model and performs authorization checks
const
fetchAllCreator
=
(
entityName
,
EntityModel
)
=>
async
ctx
=>
{
const
fetchAllCreator
=
(
entityName
,
EntityModel
)
=>
async
(
where
,
ctx
)
=>
{
await
can
(
ctx
.
user
,
'
read
'
,
entityName
)
await
can
(
ctx
.
user
,
'
read
'
,
entityName
)
const
entities
=
await
EntityModel
.
all
()
let
entities
if
(
where
)
{
const
{
_json
}
=
where
delete
where
.
_json
let
query
=
EntityModel
.
query
().
where
(
where
)
// Add appropriate JSON conditionals
if
(
_json
)
{
_json
.
forEach
(
condition
=>
{
query
=
query
.
where
(
ref
(
condition
.
ref
),
'
=
'
,
lit
(
condition
.
value
).
castJson
(),
)
})
}
const
{
_relations
}
=
where
delete
where
.
_relations
// Add conditionals for related ids
if
(
_relations
)
{
_relations
.
forEach
(
condition
=>
{
condition
.
ids
.
forEach
((
id
,
index
)
=>
{
const
alias
=
`members_
${
index
}
`
query
=
query
.
joinRelation
(
`members as
${
alias
}
`
)
.
where
(
`
${
alias
}
.id`
,
id
)
})
})
}
entities
=
await
query
}
else
{
entities
=
await
EntityModel
.
query
()
}
return
filterAll
(
ctx
.
user
,
entities
)
return
filterAll
(
ctx
.
user
,
entities
)
}
}
...
@@ -74,5 +109,6 @@ module.exports = function connector(entityName, EntityModel) {
...
@@ -74,5 +109,6 @@ module.exports = function connector(entityName, EntityModel) {
fetchAll
,
fetchAll
,
fetchOne
,
fetchOne
,
fetchSome
,
fetchSome
,
model
:
EntityModel
,
}
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment