mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-08-17 21:25:54 +02:00
32 lines
1.1 KiB
JavaScript
32 lines
1.1 KiB
JavaScript
import { appName } from '../../Utils.js';
|
|
|
|
// `GetLogoByDomain` is used to get logo by domain as well as check any tenant exist or not in db
|
|
export default async function GetLogoByDomain(request) {
|
|
const domain = request.params.domain;
|
|
try {
|
|
const tenantCreditsQuery = new Parse.Query('partners_Tenant');
|
|
tenantCreditsQuery.equalTo('Domain', domain);
|
|
const res = await tenantCreditsQuery.first({ useMasterKey: true });
|
|
if (res) {
|
|
const updateRes = JSON.parse(JSON.stringify(res));
|
|
return {
|
|
logo: updateRes?.Logo,
|
|
appname: appName,
|
|
user: 'exist',
|
|
};
|
|
} else {
|
|
const tenantCreditsQuery = new Parse.Query('partners_Tenant');
|
|
const tenantRes = await tenantCreditsQuery.first({ useMasterKey: true });
|
|
if (tenantRes) {
|
|
return { logo: '', appname: appName, user: 'exist' };
|
|
} else {
|
|
return { logo: '', appname: appName, user: 'not_exist' };
|
|
}
|
|
}
|
|
} catch (err) {
|
|
const code = err.code || 400;
|
|
const msg = err.message || 'Something went wrong.';
|
|
throw new Parse.Error(code, msg);
|
|
}
|
|
}
|