mirror of
https://github.com/dariusk/rss-to-activitypub.git
synced 2024-11-22 17:29:19 +02:00
62 lines
2.2 KiB
JavaScript
62 lines
2.2 KiB
JavaScript
import express from 'express';
|
|
import bodyParser from 'body-parser';
|
|
import cors from 'cors';
|
|
import http from 'http';
|
|
import Database from 'better-sqlite3';
|
|
import fs from 'fs';
|
|
import config from './config.js';
|
|
import routes from './routes/index.js';
|
|
|
|
const { DOMAIN, PRIVKEY_PATH, CERT_PATH, PORT_HTTP, PORT_HTTPS, OAUTH } = config;
|
|
|
|
const app = express();
|
|
const db = new Database('bot-node.db');
|
|
|
|
let sslOptions;
|
|
|
|
try {
|
|
sslOptions = {
|
|
key: fs.readFileSync(PRIVKEY_PATH),
|
|
cert: fs.readFileSync(CERT_PATH)
|
|
};
|
|
} catch(err) {
|
|
if (err.errno === -2) {
|
|
console.log('No SSL key and/or cert found, not enabling https server');
|
|
}
|
|
else {
|
|
console.log(err);
|
|
}
|
|
}
|
|
|
|
// if there is no `accounts` table in the DB, create an empty table
|
|
db.prepare('CREATE TABLE IF NOT EXISTS accounts (name TEXT PRIMARY KEY, privkey TEXT, pubkey TEXT, webfinger TEXT, actor TEXT, apikey TEXT, followers TEXT, messages TEXT)').run();
|
|
// if there is no `feeds` table in the DB, create an empty table
|
|
db.prepare('CREATE TABLE IF NOT EXISTS feeds (feed TEXT PRIMARY KEY, username TEXT, content TEXT)').run();
|
|
// if there is no `messages` table in the DB, create an empty table
|
|
db.prepare('CREATE TABLE IF NOT EXISTS messages (guid TEXT PRIMARY KEY, message TEXT)').run();
|
|
|
|
app.set('db', db);
|
|
app.set('domain', DOMAIN);
|
|
app.set('port', process.env.PORT || PORT_HTTP);
|
|
app.set('port-https', process.env.PORT_HTTPS || PORT_HTTPS);
|
|
app.set('views', './views');
|
|
app.set('view engine', 'pug');
|
|
app.use(bodyParser.json({type: 'application/activity+json'})); // support json encoded bodies
|
|
app.use(bodyParser.urlencoded({ extended: true })); // support encoded bodies
|
|
|
|
app.get('/', (req, res) => res.render('home', { OAUTH }));
|
|
|
|
// admin page
|
|
app.options('/api', cors());
|
|
app.use('/api', cors(), routes.api);
|
|
app.use('/admin', express.static('public/admin'));
|
|
app.use('/convert', express.static('public/convert'));
|
|
app.use('/.well-known/webfinger', cors(), routes.webfinger);
|
|
app.use('/u', cors(), routes.user);
|
|
app.use('/m', cors(), routes.message);
|
|
app.use('/api/inbox', cors(), routes.inbox);
|
|
|
|
http.createServer(app).listen(app.get('port'), function(){
|
|
console.log('Express server listening on port ' + app.get('port'));
|
|
});
|