-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Enhance flagFloatingIps Enhance flagFloatingIps * adjust frontend error handling adjust frontend error handling * adjust front end again adjust front end again * Run precommit Run precommit
- Loading branch information
Showing
5 changed files
with
81 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import { getRepository } from 'typeorm'; | ||
import { DL_Organization, connectToDatalake2 } from '../../models'; | ||
|
||
export default async (acronym: string): Promise<boolean> => { | ||
// Connect to the database | ||
const mdl_connection = await connectToDatalake2(); | ||
const mdl_organization_repo = mdl_connection.getRepository(DL_Organization); | ||
|
||
// Find the organization by acronym | ||
const organization = await mdl_organization_repo.findOne({ | ||
where: { acronym }, | ||
relations: ['sectors', 'parent'] | ||
}); | ||
|
||
if (!organization) { | ||
return false; // Return false if the organization is not found | ||
} | ||
|
||
const isOrganizationExecutive = async ( | ||
org: DL_Organization | ||
): Promise<boolean> => { | ||
// Check if the current organization has the EXECUTIVE sector | ||
if (org.sectors.some((sector) => sector.acronym === 'EXECUTIVE')) { | ||
return true; | ||
} | ||
// If there is a parent organization, check it recursively | ||
if (org.parent) { | ||
const parentOrg = await mdl_organization_repo.findOne({ | ||
where: { id: org.parent.id }, | ||
relations: ['sectors'] | ||
}); | ||
return parentOrg ? await isOrganizationExecutive(parentOrg) : false; | ||
} | ||
return false; | ||
}; | ||
|
||
// Check if the organization or its parents are executive | ||
return await isOrganizationExecutive(organization); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters