mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-06 15:59:38 +00:00
UBERF-8445: More smart admin mode (#6897)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
parent
765043d7ff
commit
0d0c410b86
@ -503,6 +503,14 @@ export class SpaceSecurityMiddleware extends BaseMiddleware implements Middlewar
|
|||||||
const isSpace = this.context.hierarchy.isDerived(_class, core.class.Space)
|
const isSpace = this.context.hierarchy.isDerived(_class, core.class.Space)
|
||||||
const field = this.getKey(domain)
|
const field = this.getKey(domain)
|
||||||
|
|
||||||
|
if (
|
||||||
|
ctx.contextData.admin === true &&
|
||||||
|
this.context.hierarchy.isDerived(_class, core.class.Space) &&
|
||||||
|
(newQuery as DocumentQuery<Space>).members !== undefined
|
||||||
|
) {
|
||||||
|
delete (newQuery as any).members
|
||||||
|
}
|
||||||
|
|
||||||
let clientFilterSpaces: Set<Ref<Space>> | undefined
|
let clientFilterSpaces: Set<Ref<Space>> | undefined
|
||||||
|
|
||||||
if (!this.skipFindCheck && !isSystem(account) && account.role !== AccountRole.DocGuest && domain !== DOMAIN_MODEL) {
|
if (!this.skipFindCheck && !isSystem(account) && account.role !== AccountRole.DocGuest && domain !== DOMAIN_MODEL) {
|
||||||
@ -558,6 +566,12 @@ export class SpaceSecurityMiddleware extends BaseMiddleware implements Middlewar
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (ctx.contextData.admin === true && this.context.hierarchy.isDerived(_class, core.class.Space)) {
|
||||||
|
// We need to add amin to all spaces.
|
||||||
|
for (const d of findResult) {
|
||||||
|
;(d as unknown as Space).members = [...((d as unknown as Space).members ?? []), ctx.contextData.account._id]
|
||||||
|
}
|
||||||
|
}
|
||||||
return findResult
|
return findResult
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,5 +20,5 @@ export function isOwner (account: Account, ctx: MeasureContext<SessionData>): bo
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function isSystem (account: Account): boolean {
|
export function isSystem (account: Account): boolean {
|
||||||
return account._id === core.account.System
|
return account._id === core.account.System || account._id.startsWith('system:')
|
||||||
}
|
}
|
||||||
|
@ -108,8 +108,13 @@ export class ClientSession implements Session {
|
|||||||
async getAccount (ctx: ClientSessionCtx): Promise<void> {
|
async getAccount (ctx: ClientSessionCtx): Promise<void> {
|
||||||
const account = this._pipeline.context.modelDb.getAccountByEmail(this.token.email)
|
const account = this._pipeline.context.modelDb.getAccountByEmail(this.token.email)
|
||||||
if (account === undefined && this.token.extra?.admin === 'true') {
|
if (account === undefined && this.token.extra?.admin === 'true') {
|
||||||
const systemAccount = this._pipeline.context.modelDb.findObject(this.token.email as Ref<Account>)
|
await ctx.sendResponse(this.getSystemAccount())
|
||||||
if (systemAccount === undefined) {
|
return
|
||||||
|
}
|
||||||
|
await ctx.sendResponse(account)
|
||||||
|
}
|
||||||
|
|
||||||
|
private getSystemAccount (): Account {
|
||||||
// Generate account for admin user
|
// Generate account for admin user
|
||||||
const factory = new TxFactory(core.account.System)
|
const factory = new TxFactory(core.account.System)
|
||||||
const email = `system:${this.token.email}`
|
const email = `system:${this.token.email}`
|
||||||
@ -120,22 +125,20 @@ export class ClientSession implements Session {
|
|||||||
role: AccountRole.Owner,
|
role: AccountRole.Owner,
|
||||||
email
|
email
|
||||||
},
|
},
|
||||||
this.token.email as Ref<Account>
|
email as Ref<Account>
|
||||||
)
|
)
|
||||||
this.includeSessionContext(ctx.ctx)
|
return TxProcessor.createDoc2Doc(createTx)
|
||||||
await this._pipeline.tx(ctx.ctx, [createTx])
|
|
||||||
const acc = TxProcessor.createDoc2Doc(createTx)
|
|
||||||
await ctx.sendResponse(acc)
|
|
||||||
return
|
|
||||||
} else {
|
|
||||||
await ctx.sendResponse(systemAccount)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
await ctx.sendResponse(account)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
includeSessionContext (ctx: MeasureContext): void {
|
includeSessionContext (ctx: MeasureContext): void {
|
||||||
|
let account: Account | undefined
|
||||||
|
if (this.token.extra?.admin === 'true') {
|
||||||
|
account = this._pipeline.context.modelDb.getAccountByEmail(this.token.email)
|
||||||
|
if (account === undefined) {
|
||||||
|
account = this.getSystemAccount()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const contextData = new SessionDataImpl(
|
const contextData = new SessionDataImpl(
|
||||||
this.token.email,
|
this.token.email,
|
||||||
this.sessionId,
|
this.sessionId,
|
||||||
@ -149,7 +152,8 @@ export class ClientSession implements Session {
|
|||||||
false,
|
false,
|
||||||
new Map(),
|
new Map(),
|
||||||
new Map(),
|
new Map(),
|
||||||
this._pipeline.context.modelDb
|
this._pipeline.context.modelDb,
|
||||||
|
account
|
||||||
)
|
)
|
||||||
ctx.contextData = contextData
|
ctx.contextData = contextData
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user