Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Evil Sharkey
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
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
23Sonics
Evil Sharkey
Commits
ade801ec
Commit
ade801ec
authored
4 months ago
by
Hazelnoot
Browse files
Options
Downloads
Patches
Plain Diff
check token permissions in admin/accounts/create.ts
parent
37ff2bb0
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
packages/backend/src/server/api/endpoints/admin/accounts/create.ts
+46
-11
46 additions, 11 deletions
...backend/src/server/api/endpoints/admin/accounts/create.ts
with
46 additions
and
11 deletions
packages/backend/src/server/api/endpoints/admin/accounts/create.ts
+
46
−
11
View file @
ade801ec
...
...
@@ -5,13 +5,14 @@
import
{
Injectable
}
from
'
@nestjs/common
'
;
import
{
Endpoint
}
from
'
@/server/api/endpoint-base.js
'
;
import
{
MiUser
}
from
'
@/models/_.js
'
;
import
{
MiAccessToken
,
MiUser
}
from
'
@/models/_.js
'
;
import
{
SignupService
}
from
'
@/core/SignupService.js
'
;
import
{
UserEntityService
}
from
'
@/core/entities/UserEntityService.js
'
;
import
{
InstanceActorService
}
from
'
@/core/InstanceActorService.js
'
;
import
{
localUsernameSchema
,
passwordSchema
}
from
'
@/models/User.js
'
;
import
{
Packed
}
from
'
@/misc/json-schema.js
'
;
import
{
RoleService
}
from
'
@/core/RoleService.js
'
;
import
{
ApiError
}
from
'
@/server/api/error.js
'
;
export
const
meta
=
{
tags
:
[
'
admin
'
],
...
...
@@ -27,6 +28,35 @@ export const meta = {
},
},
},
errors
:
{
// From ApiCallService.ts
noCredential
:
{
message
:
'
Credential required.
'
,
code
:
'
CREDENTIAL_REQUIRED
'
,
id
:
'
1384574d-a912-4b81-8601-c7b1c4085df1
'
,
httpStatusCode
:
401
,
},
noAdmin
:
{
message
:
'
You are not assigned to an administrator role.
'
,
code
:
'
ROLE_PERMISSION_DENIED
'
,
kind
:
'
permission
'
,
id
:
'
c3d38592-54c0-429d-be96-5636b0431a61
'
,
},
noPermission
:
{
message
:
'
Your app does not have the necessary permissions to use this endpoint.
'
,
code
:
'
PERMISSION_DENIED
'
,
kind
:
'
permission
'
,
id
:
'
1370e5b7-d4eb-4566-bb1d-7748ee6a1838
'
,
},
},
// Required token permissions, but we need to check them manually.
// ApiCallService checks access in a way that would prevent creating the first account.
softPermissions
:
[
'
write:admin:account
'
,
'
write:admin:approve-user
'
,
],
}
as const
;
export
const
paramDef
=
{
...
...
@@ -46,10 +76,8 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
private
signupService
:
SignupService
,
private
instanceActorService
:
InstanceActorService
,
)
{
super
(
meta
,
paramDef
,
async
(
ps
,
_me
)
=>
{
if
(
!
await
this
.
canCreate
(
_me
))
{
throw
new
Error
(
'
access denied
'
);
}
super
(
meta
,
paramDef
,
async
(
ps
,
_me
,
token
)
=>
{
await
this
.
ensurePermissions
(
_me
,
token
);
const
{
account
,
secret
}
=
await
this
.
signupService
.
signup
({
username
:
ps
.
username
,
...
...
@@ -69,13 +97,20 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
});
}
private
async
canCreate
(
me
:
MiUser
|
null
):
Promise
<
boolean
>
{
// Allow the first user to be created without authentication, as part of normal setup flow
if
(
!
me
)
{
return
!
await
this
.
instanceActorService
.
realLocalUsersPresent
();
private
async
ensurePermissions
(
me
:
MiUser
|
null
,
token
:
MiAccessToken
|
null
):
Promise
<
void
>
{
// Tokens have scoped permissions which may be *less* than the user's official role, so we need to check.
if
(
token
&&
!
meta
.
softPermissions
.
every
(
p
=>
token
.
permission
.
includes
(
p
)))
{
throw
new
ApiError
(
meta
.
errors
.
noPermission
);
}
// Only administrators (including root) can create users.
if
(
me
&&
!
await
this
.
roleService
.
isAdministrator
(
me
))
{
throw
new
ApiError
(
meta
.
errors
.
noAdmin
);
}
// Administrators (including root) can always create users
return
await
this
.
roleService
.
isAdministrator
(
me
);
// Anonymous access is only allowed for initial instance setup.
if
(
!
me
&&
await
this
.
instanceActorService
.
realLocalUsersPresent
())
{
throw
new
ApiError
(
meta
.
errors
.
noCredential
);
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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