mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
- Added ManualAPI for manually triggering workflows via GET and POST requests. - Introduced WorkflowAPI for updating workflows with authorization checks. - Created documentation for JavaScript and Webhook components. - Established WorkflowFeatureSet to initialize routing and job processing. - Developed QueueWorkflow service for managing workflow queue operations. - Implemented RunWorkflow service to execute workflows with error handling and logging. - Added utility for loading component metadata dynamically.
74 lines
1.9 KiB
TypeScript
74 lines
1.9 KiB
TypeScript
import DataMigrationBase from "./DataMigrationBase";
|
|
import LIMIT_MAX from "Common/Types/Database/LimitMax";
|
|
import ProjectService from "Common/Server/Services/ProjectService";
|
|
import UserService from "Common/Server/Services/UserService";
|
|
import QueryHelper from "Common/Server/Types/Database/QueryHelper";
|
|
import Project from "Common/Models/DatabaseModels/Project";
|
|
import User from "Common/Models/DatabaseModels/User";
|
|
|
|
export default class AddOwnerInfoToProjects extends DataMigrationBase {
|
|
public constructor() {
|
|
super("AddOwnerInfoToProjects");
|
|
}
|
|
|
|
public override async migrate(): Promise<void> {
|
|
// get all the users with email isVerified true.
|
|
|
|
const projects: Array<Project> = await ProjectService.findBy({
|
|
query: {
|
|
createdOwnerEmail: QueryHelper.isNull(),
|
|
},
|
|
select: {
|
|
_id: true,
|
|
},
|
|
skip: 0,
|
|
limit: LIMIT_MAX,
|
|
props: {
|
|
isRoot: true,
|
|
},
|
|
});
|
|
|
|
for (const project of projects) {
|
|
const owners: Array<User> = await ProjectService.getOwners(project.id!);
|
|
|
|
if (owners.length > 0) {
|
|
const ownerUser: User | null = owners[0]!;
|
|
|
|
const user: User | null = await UserService.findOneById({
|
|
id: ownerUser.id!,
|
|
select: {
|
|
email: true,
|
|
name: true,
|
|
companyName: true,
|
|
companyPhoneNumber: true,
|
|
},
|
|
props: {
|
|
isRoot: true,
|
|
},
|
|
});
|
|
|
|
if (!user) {
|
|
continue;
|
|
}
|
|
|
|
await ProjectService.updateOneById({
|
|
id: project.id!,
|
|
data: {
|
|
createdOwnerEmail: user.email!,
|
|
createdOwnerPhone: user.companyPhoneNumber!,
|
|
createdOwnerName: user.name!,
|
|
createdOwnerCompanyName: user.companyName!,
|
|
},
|
|
props: {
|
|
isRoot: true,
|
|
},
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
public override async rollback(): Promise<void> {
|
|
return;
|
|
}
|
|
}
|