mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-08-17 21:25:54 +02:00
247 lines
8.4 KiB
JavaScript
247 lines
8.4 KiB
JavaScript
// Example express application adding the parse-server module to expose Parse
|
|
// compatible API routes.
|
|
|
|
import dotenv from 'dotenv';
|
|
dotenv.config();
|
|
|
|
import express from 'express';
|
|
import cors from 'cors';
|
|
import { ParseServer } from 'parse-server';
|
|
import path from 'path';
|
|
const __dirname = path.resolve();
|
|
import http from 'http';
|
|
import formData from 'form-data';
|
|
import Mailgun from 'mailgun.js';
|
|
import { ApiPayloadConverter } from 'parse-server-api-mail-adapter';
|
|
import S3Adapter from 'parse-server-s3-adapter';
|
|
import FSFilesAdapter from 'parse-server-fs-adapter';
|
|
import AWS from 'aws-sdk';
|
|
import { app as customRoute } from './cloud/customRoute/customApp.js';
|
|
import { exec } from 'child_process';
|
|
import { createTransport } from 'nodemailer';
|
|
import { app as v1 } from './cloud/customRoute/v1/apiV1.js';
|
|
import { PostHog } from 'posthog-node';
|
|
// console.log("configuration ", configuration);
|
|
let fsAdapter;
|
|
if (process.env.USE_LOCAL !== 'TRUE') {
|
|
try {
|
|
const spacesEndpoint = new AWS.Endpoint(process.env.DO_ENDPOINT);
|
|
const s3Options = {
|
|
bucket: process.env.DO_SPACE, // globalConfig.S3FilesAdapter.bucket,
|
|
baseUrl: process.env.DO_BASEURL,
|
|
region: process.env.DO_REGION,
|
|
directAccess: true,
|
|
preserveFileName: true,
|
|
s3overrides: {
|
|
accessKeyId: process.env.DO_ACCESS_KEY_ID,
|
|
secretAccessKey: process.env.DO_SECRET_ACCESS_KEY,
|
|
endpoint: spacesEndpoint,
|
|
},
|
|
};
|
|
fsAdapter = new S3Adapter(s3Options);
|
|
} catch (err) {
|
|
console.log('Please provide AWS credintials in env file! Defaulting to local storage.');
|
|
fsAdapter = new FSFilesAdapter({
|
|
filesSubDirectory: 'files', // optional, defaults to ./files
|
|
});
|
|
}
|
|
} else {
|
|
fsAdapter = new FSFilesAdapter({
|
|
filesSubDirectory: 'files', // optional, defaults to ./files
|
|
});
|
|
}
|
|
|
|
let transporterMail;
|
|
let mailgunClient;
|
|
let mailgunDomain;
|
|
let isMailAdapter = false;
|
|
if (process.env.SMTP_ENABLE) {
|
|
try {
|
|
transporterMail = createTransport({
|
|
host: process.env.SMTP_HOST,
|
|
port: process.env.SMTP_PORT || 465,
|
|
secure: process.env.SMTP_SECURE || true,
|
|
auth: {
|
|
user: process.env.SMTP_USER_EMAIL,
|
|
pass: process.env.SMTP_PASS,
|
|
},
|
|
});
|
|
await transporterMail.verify();
|
|
isMailAdapter = true;
|
|
} catch (err) {
|
|
console.dir('Please provide valid SMTP credentials');
|
|
isMailAdapter = false;
|
|
}
|
|
} else if (process.env.MAILGUN_API_KEY) {
|
|
try {
|
|
const mailgun = new Mailgun(formData);
|
|
mailgunClient = mailgun.client({
|
|
username: 'api',
|
|
key: process.env.MAILGUN_API_KEY,
|
|
});
|
|
mailgunDomain = process.env.MAILGUN_DOMAIN;
|
|
isMailAdapter = true;
|
|
} catch (error) {
|
|
isMailAdapter = false;
|
|
console.dir('Please provide valid Mailgun credentials');
|
|
}
|
|
}
|
|
|
|
export const config = {
|
|
databaseURI:
|
|
process.env.DATABASE_URI || process.env.MONGODB_URI || 'mongodb://localhost:27017/dev',
|
|
cloud: function () {
|
|
import('./cloud/main.js');
|
|
},
|
|
appId: process.env.APP_ID || 'myAppId',
|
|
maxLimit: 500,
|
|
maxUploadSize: '30mb',
|
|
masterKey: process.env.MASTER_KEY, //Add your master key here. Keep it secret!
|
|
masterKeyIps: ['0.0.0.0/0', '::/0'], // '::1'
|
|
serverURL: process.env.SERVER_URL || 'http://localhost:8080/app', // Don't forget to change to https if needed
|
|
verifyUserEmails: isMailAdapter === true ? true : false,
|
|
publicServerURL: process.env.SERVER_URL || 'http://localhost:8080/app',
|
|
// Your apps name. This will appear in the subject and body of the emails that are sent.
|
|
appName: 'Open Sign',
|
|
allowClientClassCreation: false,
|
|
allowExpiredAuthDataToken: false,
|
|
encodeParseObjectInCloudFunction: true,
|
|
...(isMailAdapter === true
|
|
? {
|
|
emailAdapter: {
|
|
module: 'parse-server-api-mail-adapter',
|
|
options: {
|
|
// The email address from which emails are sent.
|
|
sender: process.env.SMTP_ENABLE
|
|
? process.env.SMTP_USER_EMAIL
|
|
: process.env.MAILGUN_SENDER,
|
|
// The email templates.
|
|
templates: {
|
|
// The template used by Parse Server to send an email for password
|
|
// reset; this is a reserved template name.
|
|
passwordResetEmail: {
|
|
subjectPath: './files/password_reset_email_subject.txt',
|
|
textPath: './files/password_reset_email.txt',
|
|
htmlPath: './files/password_reset_email.html',
|
|
},
|
|
// The template used by Parse Server to send an email for email
|
|
// address verification; this is a reserved template name.
|
|
verificationEmail: {
|
|
subjectPath: './files/verification_email_subject.txt',
|
|
textPath: './files/verification_email.txt',
|
|
htmlPath: './files/verification_email.html',
|
|
},
|
|
},
|
|
apiCallback: async ({ payload, locale }) => {
|
|
if (mailgunClient) {
|
|
const mailgunPayload = ApiPayloadConverter.mailgun(payload);
|
|
await mailgunClient.messages.create(mailgunDomain, mailgunPayload);
|
|
} else if (transporterMail) await transporterMail.sendMail(payload);
|
|
},
|
|
},
|
|
},
|
|
}
|
|
: {}),
|
|
filesAdapter: fsAdapter,
|
|
auth: {
|
|
google: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
};
|
|
// Client-keys like the javascript key or the .NET key are not necessary with parse-server
|
|
// If you wish you require them, you can set them as options in the initialization above:
|
|
// javascriptKey, restAPIKey, dotNetKey, clientKey
|
|
|
|
export const app = express();
|
|
app.use(cors());
|
|
app.use(express.json({ limit: '50mb' }));
|
|
app.use(express.urlencoded({ limit: '50mb', extended: true }));
|
|
app.use(function (req, res, next) {
|
|
// console.log("req ", req.headers);
|
|
// console.log("x-forwarded-for", req.headers["x-forwarded-for"]);
|
|
// console.log("req.ip", req.ip);
|
|
// console.log("req.socket.remoteAddress; ", req.socket.remoteAddress);
|
|
// console.log("ip", ip.address());
|
|
req.headers['x-real-ip'] = getUserIP(req);
|
|
next();
|
|
});
|
|
function getUserIP(request) {
|
|
let forwardedFor = request.headers['x-forwarded-for'];
|
|
if (forwardedFor) {
|
|
if (forwardedFor.indexOf(',') > -1) {
|
|
return forwardedFor.split(',')[0];
|
|
} else {
|
|
return forwardedFor;
|
|
}
|
|
} else {
|
|
return request.socket.remoteAddress;
|
|
}
|
|
}
|
|
app.use(function (req, res, next) {
|
|
const ph_project_api_key = process.env.PH_PROJECT_API_KEY;
|
|
try {
|
|
req.posthog = new PostHog(ph_project_api_key);
|
|
} catch (err) {
|
|
// console.log('Err', err);
|
|
req.posthog = '';
|
|
}
|
|
next();
|
|
});
|
|
// Serve static assets from the /public folder
|
|
app.use('/public', express.static(path.join(__dirname, '/public')));
|
|
|
|
// Serve the Parse API on the /parse URL prefix
|
|
if (!process.env.TESTING) {
|
|
const mountPath = process.env.PARSE_MOUNT || '/app';
|
|
try {
|
|
const server = new ParseServer(config);
|
|
await server.start();
|
|
app.use(mountPath, server.app);
|
|
} catch (err) {
|
|
console.log(err);
|
|
}
|
|
}
|
|
// Mount your custom express app
|
|
app.use('/', customRoute);
|
|
|
|
// Mount v1
|
|
app.use('/v1', v1);
|
|
|
|
// Parse Server plays nicely with the rest of your web routes
|
|
app.get('/', function (req, res) {
|
|
// res.statusCode = 200;
|
|
// res.setHeader('Content-Type', 'text/plain');
|
|
// res.end('I dream of being a website. Please star the parse-server repo on GitHub!');
|
|
res.status(200).send('open-sign-server is running !!!');
|
|
});
|
|
|
|
if (!process.env.TESTING) {
|
|
const port = process.env.PORT || 8080;
|
|
const httpServer = http.createServer(app);
|
|
// Set the Keep-Alive and headers timeout to 100 seconds
|
|
httpServer.keepAliveTimeout = 100000; // in milliseconds
|
|
httpServer.headersTimeout = 100000; // in milliseconds
|
|
httpServer.listen(port, function () {
|
|
console.log('parse-server-example running on port ' + port + '.');
|
|
const isWindows = process.platform === 'win32';
|
|
// console.log('isWindows', isWindows);
|
|
|
|
const migrate = isWindows
|
|
? `set APPLICATION_ID=${process.env.APP_ID}&& set SERVER_URL=http://localhost:8080/app&& set MASTER_KEY=${process.env.MASTER_KEY}&& npx parse-dbtool migrate`
|
|
: `APPLICATION_ID=${process.env.APP_ID} SERVER_URL=http://localhost:8080/app MASTER_KEY=${process.env.MASTER_KEY} npx parse-dbtool migrate`;
|
|
exec(migrate, (error, stdout, stderr) => {
|
|
if (error) {
|
|
console.error(`Error: ${error.message}`);
|
|
return;
|
|
}
|
|
|
|
if (stderr) {
|
|
console.error(`Error: ${stderr}`);
|
|
return;
|
|
}
|
|
console.log(`Command output: ${stdout}`);
|
|
});
|
|
});
|
|
}
|