🕹 Manage root users

🕹 Manage root users
This commit is contained in:
Montassar Ghanmy
2023-08-28 09:23:52 +01:00
committed by GitHub
parent 832ab8ac90
commit 84270a31e2
29 changed files with 410 additions and 45 deletions
@@ -40,7 +40,7 @@ export default class ElasticSearch extends SearchAdapter implements SearchAdapte
public async connect() {
try {
let clientOptions: any = {
const clientOptions: any = {
node: this.configuration.endpoint,
ssl: {
rejectUnauthorized: false,
@@ -48,7 +48,7 @@ export default class ElasticSearch extends SearchAdapter implements SearchAdapte
};
if (this.configuration.useAuth) {
logger.info(`Using auth for ES client`);
logger.info("Using auth for ES client");
clientOptions.auth = {
username: this.configuration.username,
password: this.configuration.password,
@@ -61,6 +61,26 @@ export const isCompanyGuest = async (context: CompanyExecutionContext): Promise<
return userRole === "guest" || !userRole;
};
/**
* checks the current user is a member
* Company members can access shared drive
*
* @param {CompanyExecutionContext} context
* @returns {Promise<boolean>}
*/
export const isCompanyMember = async (context: CompanyExecutionContext): Promise<boolean> => {
if (await isCompanyApplication(context)) {
return false;
}
const userRole = await globalResolver.services.companies.getUserRole(
context.company.id,
context.user?.id,
);
return userRole === "member" || !userRole;
};
/**
* checks the current user is a admin
*
@@ -149,8 +169,15 @@ export const getAccessLevel = async (
repository: Repository<DriveFile>,
context: CompanyExecutionContext & { public_token?: string; tdrive_tab_token?: string },
): Promise<DriveFileAccessLevel | "none"> => {
if (!id || id === "root")
return !context?.user?.id || (await isCompanyGuest(context)) ? "none" : "manage";
const isMember = !context?.user?.id || (await isCompanyMember(context));
if (!id || id === "root") {
if (!context?.user?.id || (await isCompanyGuest(context))) {
return "none";
} else {
if (isMember) return "read";
return "manage";
}
}
if (id === "trash")
return (await isCompanyGuest(context)) || !context?.user?.id
? "none"
@@ -182,6 +209,9 @@ export const getAccessLevel = async (
}
if (await isCompanyApplication(context)) {
if (!id.startsWith("user_") && isMember && item.creator != context.user.id) {
return "read";
}
return "manage";
}
@@ -5,7 +5,11 @@ import { CrudException, ListResult } from "../../../../core/platform/framework/a
import { File } from "../../../../services/files/entities/file";
import { UploadOptions } from "../../../../services/files/types";
import globalResolver from "../../../../services/global-resolver";
import { PaginationQueryParameters, ResourceWebsocket } from "../../../../utils/types";
import {
PaginationQueryParameters,
ResourceWebsocket,
CompanyUserRole,
} from "../../../../utils/types";
import { DriveFile } from "../../entities/drive-file";
import { FileVersion } from "../../entities/file-version";
import {
@@ -21,9 +25,21 @@ import {
} from "../../types";
import { DriveFileDTO } from "../dto/drive-file-dto";
import { DriveFileDTOBuilder } from "../../services/drive-file-dto-builder";
import { ExecutionContext } from "../../../../core/platform/framework/api/crud-service";
import gr from "../../../global-resolver";
import config from "config";
export class DocumentsController {
private driveFileDTOBuilder = new DriveFileDTOBuilder();
private rootAdmins: string[] = config.has("drive.rootAdmins")
? config.get("drive.rootAdmins")
: [];
private getCompanyUserRole(companyId: string, userId: string, context?: ExecutionContext) {
return gr.services.companies
.getCompanyUser({ id: companyId }, { id: userId }, context)
.then(a => (a ? a.level : null));
}
/**
* Creates a DriveFile item
@@ -166,7 +182,7 @@ export class DocumentsController {
onlyUploadedNotByMe: true,
};
return {
const data = {
...(await globalResolver.services.documents.documents.browse(id, options, context)),
websockets: request.currentUser?.id
? globalResolver.platformServices.realtime.sign(
@@ -175,6 +191,8 @@ export class DocumentsController {
)
: [],
};
return data;
};
sharedWithMe = async (
@@ -257,6 +275,45 @@ export class DocumentsController {
return await globalResolver.services.documents.documents.update(id, update, context);
};
updateLevel = async (
request: FastifyRequest<{
Params: ItemRequestParams;
Body: Partial<DriveFile> | any;
Querystring: { public_token?: string };
}>,
): Promise<any> => {
const { id } = request.params;
const update = request.body;
if (!id) throw new CrudException("Missing id", 400);
if (!this.rootAdmins.includes(request.currentUser.email)) {
throw new CrudException("Unauthorized access. User is not a root admin.", 401);
}
if (id == "root") {
const companyUser = await globalResolver.services.companies.getCompanyUser(
{ id: update.company_id },
{ id: update.user_id },
);
if (companyUser) {
let level = CompanyUserRole.member;
if (update.level == "manage") {
level = CompanyUserRole.admin;
}
await globalResolver.services.companies.setUserRole(
update.company_id,
update.user_id,
companyUser.role,
level,
);
} else {
throw new CrudException("User is not part of this company.", 406);
}
}
return {};
};
/**
* Create a drive file version.
*
@@ -37,6 +37,13 @@ const routes: FastifyPluginCallback = (fastify: FastifyInstance, _options, next)
handler: documentsController.update.bind(documentsController),
});
fastify.route({
method: "POST",
url: `${serviceUrl}/:id/level`,
preValidation: [fastify.authenticateOptional],
handler: documentsController.updateLevel.bind(documentsController),
});
fastify.route({
method: "DELETE",
url: `${serviceUrl}/:id`,
@@ -261,6 +261,7 @@ export class CompanyServiceImpl {
companyId: uuid,
userId: uuid,
role: CompanyUserRole = "member",
level?: any,
applications: string[] = [],
context?: ExecutionContext,
): Promise<SaveResult<CompanyUser>> {
@@ -275,6 +276,9 @@ export class CompanyServiceImpl {
}
entity.role = role;
if (level) {
entity.level = level;
}
entity.applications = applications;
await this.companyUserRepository.save(entity, context);
@@ -26,6 +26,7 @@ import {
UserListQueryParameters,
UserObject,
UserParameters,
CompanyUsersParameters,
} from "./types";
import Company from "../entities/company";
import CompanyUser from "../entities/company_user";
@@ -144,6 +145,36 @@ export class UsersCrudController
};
}
async all(
request: FastifyRequest<{
Querystring: UserListQueryParameters;
Params: CompanyUsersParameters;
}>,
): Promise<ResourceListResponse<UserObject>> {
const companyId = request.params.companyId;
const users = await gr.services.users.search(
new Pagination(request.query.page_token, request.query.limit),
{
search: "",
companyId,
},
);
const resUsers = await Promise.all(
users.getEntities().map(user =>
formatUser(user, {
includeCompanies: true,
}),
),
);
// return users;
return {
resources: resUsers,
};
}
async getUserCompanies(
request: FastifyRequest<{ Params: UserParameters }>,
_reply: FastifyReply,
@@ -60,6 +60,15 @@ const routes: FastifyPluginCallback = (fastify: FastifyInstance, options, next)
handler: usersController.list.bind(usersController),
});
fastify.route({
method: "POST",
url: `${usersUrl}/:companyId/all`,
preHandler: accessControl,
preValidation: [fastify.authenticate],
schema: getUsersSchema,
handler: usersController.all.bind(usersController),
});
// Get a list of companies for a user, only common companies with current user are returned.
fastify.route({
method: "GET",
@@ -13,6 +13,11 @@ export interface UserParameters {
id: string;
}
export interface CompanyUsersParameters {
/* user id */
companyId: string;
}
export interface CompanyParameters {
/* company id */
id: string;
+5
View File
@@ -130,3 +130,8 @@ export interface JWTObject {
email: string;
track: boolean;
}
export enum CompanyUserRole {
member = 1,
admin = 0,
}