mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-08-17 21:25:54 +02:00
90 lines
3.1 KiB
JavaScript
90 lines
3.1 KiB
JavaScript
import reportJson from './reportsJson.js';
|
|
import axios from 'axios';
|
|
|
|
export default async function getReport(request) {
|
|
const reportId = request.params.reportId;
|
|
const limit = request.params.limit;
|
|
const skip = request.params.skip;
|
|
|
|
const serverUrl = process.env.SERVER_URL;
|
|
const appId = process.env.APP_ID;
|
|
const masterKey = process.env.MASTER_KEY;
|
|
try {
|
|
const userRes = await axios.get(serverUrl + '/users/me', {
|
|
headers: {
|
|
'X-Parse-Application-Id': appId,
|
|
'X-Parse-Session-Token': request.headers['sessiontoken'],
|
|
},
|
|
});
|
|
const userId = userRes.data && userRes.data.objectId;
|
|
if (userId) {
|
|
const json = reportId && reportJson(reportId, userId);
|
|
const clsName = json?.reportClass ? json.reportClass : 'contracts_Document';
|
|
if (json) {
|
|
const { params, keys } = json;
|
|
const orderBy = '-updatedAt';
|
|
const strKeys = keys.join();
|
|
let strParams = JSON.stringify(params);
|
|
if (reportId == '6TeaPr321t') {
|
|
const extUserQuery = new Parse.Query('contracts_Users');
|
|
extUserQuery.equalTo('Email', userRes.data.email);
|
|
extUserQuery.include('DepartmentIds');
|
|
const extUser = await extUserQuery.first({ useMasterKey: true });
|
|
if (extUser) {
|
|
const _extUser = JSON.parse(JSON.stringify(extUser));
|
|
if (_extUser?.DepartmentIds && _extUser.DepartmentIds?.length > 0) {
|
|
let departmentArr = [];
|
|
_extUser?.DepartmentIds?.forEach(
|
|
x => (departmentArr = [...departmentArr, ...x.Ancestors])
|
|
);
|
|
strParams = JSON.stringify({
|
|
...params,
|
|
$or: [
|
|
{ SharedWith: { $in: departmentArr } },
|
|
{
|
|
ExtUserPtr: {
|
|
__type: 'Pointer',
|
|
className: 'contracts_Users',
|
|
objectId: extUser.id,
|
|
},
|
|
},
|
|
],
|
|
});
|
|
} else {
|
|
strParams = JSON.stringify({
|
|
...params,
|
|
CreatedBy: {
|
|
__type: 'Pointer',
|
|
className: '_User',
|
|
objectId: userId,
|
|
},
|
|
});
|
|
}
|
|
}
|
|
}
|
|
const headers = {
|
|
'Content-Type': 'application/json',
|
|
'X-Parse-Application-Id': appId,
|
|
'X-Parse-Master-Key': masterKey,
|
|
};
|
|
const url = `${serverUrl}/classes/${clsName}?where=${strParams}&keys=${strKeys}&order=${orderBy}&skip=${skip}&limit=${limit}&include=AuditTrail.UserPtr,Placeholders.signerPtr`;
|
|
const res = await axios.get(url, { headers: headers });
|
|
if (res.data && res.data.results) {
|
|
return res.data.results;
|
|
} else {
|
|
return [];
|
|
}
|
|
} else {
|
|
return { error: 'Report is not available!' };
|
|
}
|
|
}
|
|
} catch (err) {
|
|
console.log('err', err.message);
|
|
if (err.code == 209) {
|
|
return { error: 'Invalid session token' };
|
|
} else {
|
|
return { error: "You don't have access!" };
|
|
}
|
|
}
|
|
}
|