summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/activitypub.js941
-rwxr-xr-xsrc/app.js54
-rw-r--r--src/config/api-example.js8
-rw-r--r--src/config/database-docker.js3
-rw-r--r--src/config/database-example.js3
-rw-r--r--src/config/domain-example.js13
-rw-r--r--src/config/gathio.service13
-rw-r--r--src/helpers.js57
-rwxr-xr-xsrc/models/Event.js254
-rwxr-xr-xsrc/models/EventGroup.js57
-rwxr-xr-xsrc/models/Log.js26
-rwxr-xr-xsrc/routes.js1976
-rwxr-xr-xsrc/start.js32
13 files changed, 3437 insertions, 0 deletions
diff --git a/src/activitypub.js b/src/activitypub.js
new file mode 100644
index 0000000..442f03c
--- /dev/null
+++ b/src/activitypub.js
@@ -0,0 +1,941 @@
+const domain = require('./config/domain.js').domain;
+const contactEmail = require('./config/domain.js').email;
+const siteName = require('./config/domain.js').sitename;
+const isFederated = require('./config/domain.js').isFederated;
+const request = require('request');
+const addToLog = require('./helpers.js').addToLog;
+const crypto = require('crypto');
+// This alphabet (used to generate all event, group, etc. IDs) is missing '-'
+// because ActivityPub doesn't like it in IDs
+const { customAlphabet } = require('nanoid');
+const nanoid = customAlphabet('0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_', 21);
+var moment = require('moment-timezone');
+const mongoose = require('mongoose');
+const Event = mongoose.model('Event');
+const EventGroup = mongoose.model('EventGroup');
+var sanitizeHtml = require('sanitize-html');
+
+function createActivityPubActor(eventID, domain, pubkey, description, name, location, imageFilename, startUTC, endUTC, timezone) {
+ let actor = {
+ '@context': [
+ 'https://www.w3.org/ns/activitystreams',
+ 'https://w3id.org/security/v1'
+ ],
+
+ 'id': `https://${domain}/${eventID}`,
+ 'type': 'Person',
+ 'preferredUsername': `${eventID}`,
+ 'inbox': `https://${domain}/activitypub/inbox`,
+ 'outbox': `https://${domain}/${eventID}/outbox`,
+ 'followers': `https://${domain}/${eventID}/followers`,
+ 'summary': `<p>${description}</p>`,
+ 'name': name,
+ 'featured': `https://${domain}/${eventID}/featured`,
+
+ 'publicKey': {
+ 'id': `https://${domain}/${eventID}#main-key`,
+ 'owner': `https://${domain}/${eventID}`,
+ 'publicKeyPem': pubkey
+ }
+ };
+ if (location) {
+ actor.summary += `<p>Location: ${location}.</p>`
+ }
+ let displayDate;
+ if (startUTC && timezone) {
+ displayDate = moment.tz(startUTC, timezone).format('D MMMM YYYY h:mm a');
+ actor.summary += `<p>Starting ${displayDate} ${timezone}.</p>`;
+ }
+ if (imageFilename) {
+ actor.icon = {
+ 'type': 'Image',
+ 'mediaType': 'image/jpg',
+ 'url': `https://${domain}/events/${imageFilename}`,
+ };
+ }
+ return JSON.stringify(actor);
+}
+
+function createActivityPubEvent(name, startUTC, endUTC, timezone, description, location) {
+ const guid = crypto.randomBytes(16).toString('hex');
+ let eventObject = {
+ "@context": "https://www.w3.org/ns/activitystreams",
+ 'id': `https://${domain}/${guid}`,
+ "name": name,
+ "type": "Event",
+ "startTime": moment.tz(startUTC, timezone).format(),
+ "endTime": moment.tz(endUTC, timezone).format(),
+ "content": description,
+ "location": location
+ }
+ return JSON.stringify(eventObject);
+}
+
+function createFeaturedPost(eventID, name, startUTC, endUTC, timezone, description, location) {
+ const featured = {
+ "@context": "https://www.w3.org/ns/activitystreams",
+ "id": `https://${domain}/${eventID}/m/featuredPost`,
+ "type": "Note",
+ "name": "Test",
+ 'cc': 'https://www.w3.org/ns/activitystreams#Public',
+ "content": `<p>This is an event that was posted on <a href="https://${domain}/${eventID}">${siteName}</a>. If you follow this account, you'll see updates in your timeline about the event. If your software supports polls, you should get a poll in your DMs asking if you want to RSVP. You can reply and RSVP right from there. If your software has an event calendar built in, you should get an event in your inbox that you can RSVP to like you respond to any event.</p><p>For more information on how to interact with this, <a href="https://github.com/lowercasename/gathio/wiki/Fediverse-Instructions">check out this link</a>.</p>`,
+ 'attributedTo': `https://${domain}/${eventID}`,
+ }
+ return featured;
+}
+
+function updateActivityPubEvent(oldEvent, name, startUTC, endUTC, timezone, description, location) {
+ // we want to persist the old ID no matter what happens to the Event itself
+ const id = oldEvent.id;
+ let eventObject = {
+ "@context": "https://www.w3.org/ns/activitystreams",
+ 'id': id,
+ "name": name,
+ "type": "Event",
+ "startTime": moment.tz(startUTC, timezone).format(),
+ "endTime": moment.tz(endUTC, timezone).format(),
+ "content": description,
+ "location": location
+ }
+ return JSON.stringify(eventObject);
+}
+
+
+function updateActivityPubActor(actor, description, name, location, imageFilename, startUTC, endUTC, timezone) {
+ if (!actor) return;
+ actor.summary = `<p>${description}</p>`;
+ actor.name = name;
+ if (location) {
+ actor.summary += `<p>Location: ${location}.</p>`
+ }
+ let displayDate;
+ if (startUTC && timezone) {
+ displayDate = moment.tz(startUTC, timezone).format('D MMMM YYYY h:mm a');
+ actor.summary += `<p>Starting ${displayDate} ${timezone}.</p>`;
+ }
+ if (imageFilename) {
+ actor.icon = {
+ 'type': 'Image',
+ 'mediaType': 'image/jpg',
+ 'url': `https://${domain}/events/${imageFilename}`,
+ };
+ }
+ return JSON.stringify(actor);
+}
+
+function signAndSend(message, eventID, targetDomain, inbox, callback) {
+ if (!isFederated) return;
+ let inboxFragment = inbox.replace('https://' + targetDomain, '');
+ // get the private key
+ Event.findOne({
+ id: eventID
+ })
+ .then((event) => {
+ if (event) {
+ const digest = crypto.createHash('sha256').update(JSON.stringify(message)).digest('base64');
+ const privateKey = event.privateKey;
+ const signer = crypto.createSign('sha256');
+ let d = new Date();
+ let stringToSign = `(request-target): post ${inboxFragment}\nhost: ${targetDomain}\ndate: ${d.toUTCString()}\ndigest: SHA-256=${digest}`;
+ signer.update(stringToSign);
+ signer.end();
+ const signature = signer.sign(privateKey);
+ const signature_b64 = signature.toString('base64');
+ const algorithm = 'rsa-sha256';
+ let header = `keyId="https://${domain}/${eventID}",algorithm="${algorithm}",headers="(request-target) host date digest",signature="${signature_b64}"`;
+ request({
+ url: inbox,
+ headers: {
+ 'Host': targetDomain,
+ 'Date': d.toUTCString(),
+ 'Signature': header,
+ 'Digest': `SHA-256=${digest}`,
+ 'Content-Type': 'application/activity+json',
+ 'Accept': 'application/activity+json'
+ },
+ method: 'POST',
+ json: true,
+ body: message
+ }, function (error, response) {
+ if (error) {
+ callback(error, null, 500);
+ }
+ else {
+ // Add the message to the database
+ const messageID = message.id;
+ const newMessage = {
+ id: message.id,
+ content: JSON.stringify(message)
+ };
+ Event.findOne({
+ id: eventID,
+ }, function (err, event) {
+ if (!event) return;
+ event.activityPubMessages.push(newMessage);
+ // also add the message's object if it has one
+ if (message.object && message.object.id) {
+ event.activityPubMessages.push({
+ id: message.object.id,
+ content: JSON.stringify(message.object)
+ });
+ }
+ event.save()
+ .then(() => {
+ addToLog("addActivityPubMessage", "success", "ActivityPubMessage added to event " + eventID);
+ callback(null, message.id, 200);
+ })
+ .catch((err) => {
+ addToLog("addActivityPubMessage", "error", "Attempt to add ActivityPubMessage to event " + eventID + " failed with error: " + err);
+ callback(err, null, 500);
+ });
+ })
+ }
+ });
+ }
+ else {
+ callback(`No record found for ${eventID}.`, null, 404);
+ }
+ });
+}
+
+// this function sends something to the timeline of every follower in the followers array
+// it's also an unlisted public message, meaning non-followers can see the message if they look at
+// the profile but it doesn't spam federated timelines
+function broadcastCreateMessage(apObject, followers, eventID) {
+ if (!isFederated) return;
+ let guidCreate = crypto.randomBytes(16).toString('hex');
+ Event.findOne({
+ id: eventID,
+ }, function (err, event) {
+ if (event) {
+ // iterate over followers
+ for (const follower of followers) {
+ let actorId = follower.actorId;
+ let myURL = new URL(actorId);
+ let targetDomain = myURL.hostname;
+ // get the inbox
+ const followerFound = event.followers.find(el => el.actorId === actorId);
+ if (followerFound) {
+ const actorJson = JSON.parse(follower.actorJson);
+ const inbox = actorJson.inbox;
+ const createMessage = {
+ '@context': ['https://www.w3.org/ns/activitystreams', 'https://w3id.org/security/v1'],
+ 'id': `https://${domain}/${eventID}/m/${guidCreate}`,
+ 'type': 'Create',
+ 'actor': `https://${domain}/${eventID}`,
+ 'to': [actorId],
+ 'cc': 'https://www.w3.org/ns/activitystreams#Public',
+ 'object': apObject
+ };
+ signAndSend(createMessage, eventID, targetDomain, inbox, function (err, resp, status) {
+ if (err) {
+ console.log(`Didn't send to ${actorId}, status ${status} with error ${err}`);
+ }
+ else {
+ console.log('sent to', actorId);
+ }
+ });
+ }
+ else {
+ console.log(`No follower found with the id ${actorId}`);
+ }
+ } // end followers
+ } // end if event
+ else {
+ console.log(`No event found with the id ${eventID}`);
+ }
+ });
+}
+
+
+// sends an Announce for the apObject
+function broadcastAnnounceMessage(apObject, followers, eventID) {
+ if (!isFederated) return;
+ let guidUpdate = crypto.randomBytes(16).toString('hex');
+ Event.findOne({
+ id: eventID,
+ }, function (err, event) {
+ if (event) {
+ // iterate over followers
+ for (const follower of followers) {
+ let actorId = follower.actorId;
+ let myURL = new URL(actorId);
+ let targetDomain = myURL.hostname;
+ // get the inbox
+ const followerFound = event.followers.find(el => el.actorId === actorId);
+ if (followerFound) {
+ const actorJson = JSON.parse(follower.actorJson);
+ const inbox = actorJson.inbox;
+ const announceMessage = {
+ '@context': ['https://www.w3.org/ns/activitystreams', 'https://w3id.org/security/v1'],
+ 'id': `https://${domain}/${eventID}/m/${guidUpdate}`,
+ 'cc': 'https://www.w3.org/ns/activitystreams#Public',
+ 'type': 'Announce',
+ 'actor': `https://${domain}/${eventID}`,
+ 'object': apObject,
+ 'to': actorId
+ };
+ signAndSend(announceMessage, eventID, targetDomain, inbox, function (err, resp, status) {
+ if (err) {
+ console.log(`Didn't send to ${actorId}, status ${status} with error ${err}`);
+ }
+ else {
+ console.log('sent to', actorId);
+ }
+ });
+ }
+ else {
+ console.log(`No follower found with the id ${actorId}`);
+ }
+ } // end followers
+ } // end if event
+ else {
+ console.log(`No event found with the id ${eventID}`);
+ }
+ });
+}
+
+// sends an Update for the apObject
+function broadcastUpdateMessage(apObject, followers, eventID) {
+ if (!isFederated) return;
+ let guidUpdate = crypto.randomBytes(16).toString('hex');
+ // iterate over followers
+ Event.findOne({
+ id: eventID,
+ }, function (err, event) {
+ if (event) {
+ for (const follower of followers) {
+ let actorId = follower.actorId;
+ let myURL = new URL(actorId);
+ let targetDomain = myURL.hostname;
+ // get the inbox
+ const followerFound = event.followers.find(el => el.actorId === actorId);
+ if (followerFound) {
+ const actorJson = JSON.parse(follower.actorJson);
+ const inbox = actorJson.inbox;
+ const createMessage = {
+ '@context': 'https://www.w3.org/ns/activitystreams',
+ 'id': `https://${domain}/${eventID}/m/${guidUpdate}`,
+ 'type': 'Update',
+ 'actor': `https://${domain}/${eventID}`,
+ 'object': apObject
+ };
+ signAndSend(createMessage, eventID, targetDomain, inbox, function (err, resp, status) {
+ if (err) {
+ console.log(`Didn't send to ${actorId}, status ${status} with error ${err}`);
+ }
+ else {
+ console.log('sent to', actorId);
+ }
+ });
+ }
+ else {
+ console.log(`No follower found with the id ${actorId}`);
+ }
+ } // end followers
+ }
+ else {
+ console.log(`No event found with the id ${eventID}`);
+ }
+ });
+}
+
+function broadcastDeleteMessage(apObject, followers, eventID, callback) {
+ callback = callback || function () { };
+ if (!isFederated) {
+ callback([]);
+ return;
+ }
+ // we need to build an array of promises for each message we're sending, run Promise.all(), and then that will resolve when every message has been sent (or failed)
+ // per spec, each promise will execute *as it is built*, which is fine, we just need the guarantee that they are all done
+ let promises = [];
+
+ let guidUpdate = crypto.randomBytes(16).toString('hex');
+ // iterate over followers
+ for (const follower of followers) {
+ promises.push(new Promise((resolve, reject) => {
+ let actorId = follower.actorId;
+ let myURL = new URL(actorId);
+ let targetDomain = myURL.hostname;
+ // get the inbox
+ Event.findOne({
+ id: eventID,
+ }, function (err, event) {
+ if (event) {
+ const follower = event.followers.find(el => el.actorId === actorId);
+ if (follower) {
+ const actorJson = JSON.parse(follower.actorJson);
+ const inbox = actorJson.inbox;
+ const createMessage = {
+ '@context': 'https://www.w3.org/ns/activitystreams',
+ 'id': `https://${domain}/${eventID}/m/${guidUpdate}`,
+ 'type': 'Delete',
+ 'actor': `https://${domain}/${eventID}`,
+ 'object': apObject
+ };
+ signAndSend(createMessage, eventID, targetDomain, inbox, function (err, resp, status) {
+ if (err) {
+ console.log(`Didn't send to ${actorId}, status ${status} with error ${err}`);
+ reject(`Didn't send to ${actorId}, status ${status} with error ${err}`);
+ }
+ else {
+ console.log('sent to', actorId);
+ resolve('sent to', actorId);
+ }
+ });
+ }
+ else {
+ console.log(`No follower found with the id ${actorId}`, null, 404);
+ reject(`No follower found with the id ${actorId}`, null, 404);
+ }
+ }
+ else {
+ console.log(`No event found with the id ${eventID}`, null, 404);
+ reject(`No event found with the id ${eventID}`, null, 404);
+ }
+ }); // end event
+ }));
+ } // end followers
+
+ Promise.all(promises.map(p => p.catch(e => e))).then(statuses => {
+ callback(statuses);
+ });
+}
+
+// this sends a message "to:" an individual fediverse user
+function sendDirectMessage(apObject, actorId, eventID, callback) {
+ if (!isFederated) return;
+ callback = callback || function () { };
+ const guidCreate = crypto.randomBytes(16).toString('hex');
+ const guidObject = crypto.randomBytes(16).toString('hex');
+ let d = new Date();
+
+ apObject.published = d.toISOString();
+ apObject.attributedTo = `https://${domain}/${eventID}`;
+ apObject.to = actorId;
+ apObject.id = `https://${domain}/${eventID}/m/${guidObject}`;
+ apObject.content = unescape(apObject.content)
+
+ let createMessage = {
+ '@context': 'https://www.w3.org/ns/activitystreams',
+ 'id': `https://${domain}/${eventID}/m/${guidCreate}`,
+ 'type': 'Create',
+ 'actor': `https://${domain}/${eventID}`,
+ 'to': [actorId],
+ 'object': apObject
+ };
+
+ let myURL = new URL(actorId);
+ let targetDomain = myURL.hostname;
+ // get the inbox
+ Event.findOne({
+ id: eventID,
+ }, function (err, event) {
+ if (event) {
+ const follower = event.followers.find(el => el.actorId === actorId);
+ if (follower) {
+ const actorJson = JSON.parse(follower.actorJson);
+ const inbox = actorJson.inbox;
+ signAndSend(createMessage, eventID, targetDomain, inbox, callback);
+ }
+ else {
+ callback(`No follower found with the id ${actorId}`, null, 404);
+ }
+ }
+ else {
+ callback(`No event found with the id ${eventID}`, null, 404);
+ }
+ });
+}
+
+function sendAcceptMessage(thebody, eventID, targetDomain, callback) {
+ if (!isFederated) return;
+ callback = callback || function () { };
+ const guid = crypto.randomBytes(16).toString('hex');
+ const actorId = thebody.actor;
+ let message = {
+ '@context': 'https://www.w3.org/ns/activitystreams',
+ 'id': `https://${domain}/${guid}`,
+ 'type': 'Accept',
+ 'actor': `https://${domain}/${eventID}`,
+ 'object': thebody,
+ };
+ // get the inbox
+ Event.findOne({
+ id: eventID,
+ }, function (err, event) {
+ if (event) {
+ const follower = event.followers.find(el => el.actorId === actorId);
+ if (follower) {
+ const actorJson = JSON.parse(follower.actorJson);
+ const inbox = actorJson.inbox;
+ signAndSend(message, eventID, targetDomain, inbox, callback);
+ }
+ }
+ else {
+ callback(`Could not find event ${eventID}`, null, 404);
+ }
+ });
+}
+
+function _handleFollow(req, res) {
+ const myURL = new URL(req.body.actor);
+ let targetDomain = myURL.hostname;
+ let eventID = req.body.object.replace(`https://${domain}/`, '');
+ // Add the user to the DB of accounts that follow the account
+ // get the follower's username
+ request({
+ url: req.body.actor,
+ headers: {
+ 'Accept': 'application/activity+json',
+ 'Content-Type': 'application/activity+json'
+ }
+ }, function (error, response, body) {
+ body = JSON.parse(body)
+ const name = body.preferredUsername || body.name || body.attributedTo;
+ const newFollower = {
+ actorId: req.body.actor,
+ followId: req.body.id,
+ name: name,
+ actorJson: JSON.stringify(body)
+ };
+ Event.findOne({
+ id: eventID,
+ }, function (err, event) {
+ // if this account is NOT already in our followers list, add it
+ if (event && !event.followers.map(el => el.actorId).includes(req.body.actor)) {
+ event.followers.push(newFollower);
+ event.save()
+ .then(() => {
+ addToLog("addEventFollower", "success", "Follower added to event " + eventID);
+ // Accept the follow request
+ sendAcceptMessage(req.body, eventID, targetDomain, function (err, resp, status) {
+ if (err) {
+ console.log(`Didn't send Accept to ${req.body.actor}, status ${status} with error ${err}`);
+ }
+ else {
+ console.log('sent Accept to', req.body.actor);
+ // ALSO send an ActivityPub Event activity since this person is "interested" in the event, as indicated by the Follow
+ const jsonEventObject = JSON.parse(event.activityPubEvent);
+ // send direct message to user
+ sendDirectMessage(jsonEventObject, newFollower.actorId, event.id);
+
+ // if users can self-RSVP, send a Question to the new follower
+ if (event.usersCanAttend) {
+ const jsonObject = {
+ "@context": "https://www.w3.org/ns/activitystreams",
+ "name": `RSVP to ${event.name}`,
+ "type": "Question",
+ "content": `<span class=\"h-card\"><a href="${req.body.actor}" class="u-url mention">@<span>${name}</span></a></span> Will you attend ${event.name}? (If you reply "Yes", you'll be listed as an attendee on the event page.)`,
+ "oneOf": [
+ { "type": "Note", "name": "Yes" },
+ ],
+ "endTime": event.start.toISOString(),
+ "tag": [{ "type": "Mention", "href": req.body.actor, "name": name }]
+ }
+ // send direct message to user
+ sendDirectMessage(jsonObject, req.body.actor, eventID, function (error, response, statuscode) {
+ if (error) {
+ console.log('Error sending direct message:', error);
+ return res.status(statuscode).json(error);
+ }
+ else {
+ return res.status(statuscode).json({ messageid: response });
+ }
+ });
+ }
+ }
+ });
+ })
+ .catch((err) => {
+ addToLog("addEventFollower", "error", "Attempt to add follower to event " + eventID + " failed with error: " + err);
+ return res.status(500).send('Database error, please try again :(');
+ });
+ }
+ else {
+ // this person is already a follower so just say "ok"
+ return res.status(200);
+ }
+ })
+ }) //end request
+}
+
+function _handleUndoFollow(req, res) {
+ // get the record of all followers for this account
+ const eventID = req.body.object.object.replace(`https://${domain}/`, '');
+ Event.findOne({
+ id: eventID,
+ }, function (err, event) {
+ if (!event) return;
+ // check to see if the Follow object's id matches the id we have on record
+ // is this even someone who follows us
+ const indexOfFollower = event.followers.findIndex(el => el.actorId === req.body.object.actor);
+ if (indexOfFollower !== -1) {
+ // does the id we have match the id we are being given
+ if (event.followers[indexOfFollower].followId === req.body.object.id) {
+ // we have a match and can trust the Undo! remove this person from the followers list
+ event.followers.splice(indexOfFollower, 1);
+ event.save()
+ .then(() => {
+ addToLog("removeEventFollower", "success", "Follower removed from event " + eventID);
+ return res.sendStatus(200);
+ })
+ .catch((err) => {
+ addToLog("removeEventFollower", "error", "Attempt to remove follower from event " + eventID + " failed with error: " + err);
+ return res.send('Database error, please try again :(');
+ });
+ }
+ }
+ });
+}
+
+function _handleAcceptEvent(req, res) {
+ let { name, attributedTo, inReplyTo, to, actor } = req.body;
+ if (Array.isArray(to)) {
+ to = to[0];
+ }
+ const eventID = to.replace(`https://${domain}/`, '');
+ Event.findOne({
+ id: eventID,
+ }, function (err, event) {
+ if (!event) return;
+ // does the id we got match the id of a thing we sent out
+ const message = event.activityPubMessages.find(el => el.id === req.body.object);
+ if (message) {
+ // it's a match
+ request({
+ url: actor,
+ headers: {
+ 'Accept': 'application/activity+json',
+ 'Content-Type': 'application/activity+json'
+ }
+ }, function (error, response, body) {
+ body = JSON.parse(body)
+ // if this account is NOT already in our attendees list, add it
+ if (!event.attendees.map(el => el.id).includes(actor)) {
+ const attendeeName = body.preferredUsername || body.name || actor;
+ const newAttendee = {
+ name: attendeeName,
+ status: 'attending',
+ id: actor,
+ number: 1,
+ };
+ event.attendees.push(newAttendee);
+ event.save()
+ .then((fullEvent) => {
+ addToLog("addEventAttendee", "success", "Attendee added to event " + req.params.eventID);
+ // get the new attendee with its hidden id from the full event
+ let fullAttendee = fullEvent.attendees.find(el => el.id === actor);
+ // send a "click here to remove yourself" link back to the user as a DM
+ const jsonObject = {
+ "@context": "https://www.w3.org/ns/activitystreams",
+ "name": `RSVP to ${event.name}`,
+ "type": "Note",
+ "content": `<span class=\"h-card\"><a href="${newAttendee.id}" class="u-url mention">@<span>${newAttendee.name}</span></a></span> Thanks for RSVPing! You can remove yourself from the RSVP list by clicking here: <a href="https://${domain}/oneclickunattendevent/${event.id}/${fullAttendee._id}">https://${domain}/oneclickunattendevent/${event.id}/${fullAttendee._id}</a>`,
+ "tag": [{ "type": "Mention", "href": newAttendee.id, "name": newAttendee.name }]
+ }
+ // send direct message to user
+ sendDirectMessage(jsonObject, newAttendee.id, event.id);
+ return res.sendStatus(200);
+ })
+ .catch((err) => {
+ addToLog("addEventAttendee", "error", "Attempt to add attendee to event " + req.params.eventID + " failed with error: " + err);
+ return res.status(500).send('Database error, please try again :(');
+ });
+ }
+ else {
+ // it's a duplicate and this person is already rsvped so just say OK
+ return res.status(200).send("Attendee is already registered.");
+ }
+ });
+ }
+ });
+}
+
+function _handleUndoAcceptEvent(req, res) {
+ let { name, attributedTo, inReplyTo, to, actor } = req.body;
+ if (Array.isArray(to)) {
+ to = to[0];
+ }
+ const eventID = to.replace(`https://${domain}/`, '');
+ Event.findOne({
+ id: eventID,
+ }, function (err, event) {
+ if (!event) return;
+ // does the id we got match the id of a thing we sent out
+ const message = event.activityPubMessages.find(el => el.id === req.body.object.object);
+ if (message) {
+ // it's a match
+ Event.update(
+ { id: eventID },
+ { $pull: { attendees: { id: actor } } }
+ )
+ .then(response => {
+ addToLog("oneClickUnattend", "success", "Attendee removed via one click unattend " + req.params.eventID);
+ });
+ }
+ });
+}
+
+function _handleCreateNote(req, res) {
+ // figure out what this is in reply to -- it should be addressed specifically to us
+ let { name, attributedTo, inReplyTo, to } = req.body.object;
+ // if it's an array just grab the first element, since a poll should only broadcast back to the pollster
+ if (Array.isArray(to)) {
+ to = to[0];
+ }
+ const eventID = to.replace(`https://${domain}/`, '');
+ // make sure this person is actually a follower
+ Event.findOne({
+ id: eventID,
+ }, function (err, event) {
+ if (!event) return;
+ // is this even someone who follows us
+ const indexOfFollower = event.followers.findIndex(el => el.actorId === req.body.object.attributedTo);
+ if (indexOfFollower !== -1) {
+ // compare the inReplyTo to its stored message, if it exists and it's going to the right follower then this is a valid reply
+ const message = event.activityPubMessages.find(el => {
+ const content = JSON.parse(el.content);
+ return inReplyTo === (content.object && content.object.id);
+ });
+ if (message) {
+ const content = JSON.parse(message.content);
+ // check if the message we sent out was sent to the actor this incoming message is attributedTo
+ if (content.to[0] === attributedTo) {
+ // it's a match, this is a valid poll response, add RSVP to database
+ // fetch the profile information of the user
+ request({
+ url: attributedTo,
+ headers: {
+ 'Accept': 'application/activity+json',
+ 'Content-Type': 'application/activity+json'
+ }
+ }, function (error, response, body) {
+ body = JSON.parse(body)
+ // if this account is NOT already in our attendees list, add it
+ if (!event.attendees.map(el => el.id).includes(attributedTo)) {
+ const attendeeName = body.preferredUsername || body.name || attributedTo;
+ const newAttendee = {
+ name: attendeeName,
+ status: 'attending',
+ id: attributedTo,
+ number: 1,
+ };
+ event.attendees.push(newAttendee);
+ event.save()
+ .then((fullEvent) => {
+ addToLog("addEventAttendee", "success", "Attendee added to event " + req.params.eventID);
+ // get the new attendee with its hidden id from the full event
+ let fullAttendee = fullEvent.attendees.find(el => el.id === attributedTo);
+ // send a "click here to remove yourself" link back to the user as a DM
+ const jsonObject = {
+ "@context": "https://www.w3.org/ns/activitystreams",
+ "name": `RSVP to ${event.name}`,
+ "type": "Note",
+ "content": `<span class=\"h-card\"><a href="${newAttendee.id}" class="u-url mention">@<span>${newAttendee.name}</span></a></span> Thanks for RSVPing! You can remove yourself from the RSVP list by clicking here: <a href="https://${domain}/oneclickunattendevent/${event.id}/${fullAttendee._id}">https://${domain}/oneclickunattendevent/${event.id}/${fullAttendee._id}</a>`,
+ "tag": [{ "type": "Mention", "href": newAttendee.id, "name": newAttendee.name }]
+ }
+ // send direct message to user
+ sendDirectMessage(jsonObject, newAttendee.id, event.id);
+ return res.sendStatus(200);
+ })
+ .catch((err) => {
+ addToLog("addEventAttendee", "error", "Attempt to add attendee to event " + req.params.eventID + " failed with error: " + err);
+ return res.status(500).send('Database error, please try again :(');
+ });
+ }
+ else {
+ // it's a duplicate and this person is already rsvped so just say OK
+ return res.status(200).send("Attendee is already registered.");
+ }
+ });
+ }
+ }
+ }
+ });
+}
+
+function _handleDelete(req, res) {
+ const deleteObjectId = req.body.object.id;
+ // find all events with comments from the author
+ Event.find({
+ "comments.actorId": req.body.actor
+ }, function (err, events) {
+ if (!events) {
+ return res.sendStatus(404);
+ }
+
+ // find the event with THIS comment from the author
+ let eventWithComment = events.find(event => {
+ let comments = event.comments;
+ return comments.find(comment => {
+ if (!comment.activityJson) {
+ return false;
+ }
+ return JSON.parse(comment.activityJson).object.id === req.body.object.id;
+ })
+ });
+
+ if (!eventWithComment) {
+ return res.sendStatus(404);
+ }
+
+ // delete the comment
+ // find the index of the comment, it should have an activityJson field because from an AP server you can only delete an AP-originated comment (and of course it needs to be yours)
+ let indexOfComment = eventWithComment.comments.findIndex(comment => {
+ return comment.activityJson && JSON.parse(comment.activityJson).object.id === req.body.object.id;
+ });
+ eventWithComment.comments.splice(indexOfComment, 1);
+ eventWithComment.save()
+ .then(() => {
+ addToLog("deleteComment", "success", "Comment deleted from event " + eventWithComment.id);
+ return res.sendStatus(200);
+ })
+ .catch((err) => {
+ addToLog("deleteComment", "error", "Attempt to delete comment " + req.body.object.id + "from event " + eventWithComment.id + " failed with error: " + err);
+ return res.sendStatus(500);
+ });
+ });
+}
+
+function _handleCreateNoteComment(req, res) {
+ // figure out what this is in reply to -- it should be addressed specifically to us
+ let { attributedTo, inReplyTo, to, cc } = req.body.object;
+ // normalize cc into an array
+ if (typeof cc === 'string') {
+ cc = [cc];
+ }
+ // normalize to into an array
+ if (typeof to === 'string') {
+ to = [to];
+ }
+
+ // if this is a public message (in the to or cc fields)
+ if (to.includes('https://www.w3.org/ns/activitystreams#Public') || (Array.isArray(cc) && cc.includes('https://www.w3.org/ns/activitystreams#Public'))) {
+ // figure out which event(s) of ours it was addressing
+ let ourEvents = cc.filter(el => el.includes(`https://${domain}/`))
+ .map(el => el.replace(`https://${domain}/`, ''));
+ // comments should only be on one event. if more than one, ignore (spam, probably)
+ if (ourEvents.length === 1) {
+ let eventID = ourEvents[0];
+ // add comment
+ let commentID = nanoid();
+ // get the actor for the commenter
+ request({
+ url: req.body.actor,
+ headers: {
+ 'Accept': 'application/activity+json',
+ 'Content-Type': 'application/activity+json'
+ }
+ }, function (error, response, actor) {
+ if (!error) {
+ const parsedActor = JSON.parse(actor);
+ const name = parsedActor.preferredUsername || parsedActor.name || req.body.actor;
+ const newComment = {
+ id: commentID,
+ actorId: req.body.actor,
+ activityId: req.body.object.id,
+ author: name,
+ content: sanitizeHtml(req.body.object.content, { allowedTags: [], allowedAttributes: {} }).replace('@' + eventID, ''),
+ timestamp: moment(),
+ activityJson: JSON.stringify(req.body),
+ actorJson: actor
+ };
+
+ Event.findOne({
+ id: eventID,
+ }, function (err, event) {
+ if (!event) {
+ return res.sendStatus(404);
+ }
+ if (!event.usersCanComment) {
+ return res.sendStatus(200);
+ }
+ event.comments.push(newComment);
+ event.save()
+ .then(() => {
+ addToLog("addEventComment", "success", "Comment added to event " + eventID);
+ const guidObject = crypto.randomBytes(16).toString('hex');
+ const jsonObject = req.body.object;
+ jsonObject.attributedTo = newComment.actorId;
+ broadcastAnnounceMessage(jsonObject, event.followers, eventID)
+ return res.sendStatus(200);
+ })
+ .catch((err) => {
+ addToLog("addEventComment", "error", "Attempt to add comment to event " + eventID + " failed with error: " + err);
+ res.status(500).send('Database error, please try again :(' + err);
+ });
+ });
+ }
+ });
+ } // end ourevent
+ } // end public message
+}
+
+function processInbox(req, res) {
+ if (!isFederated) return res.sendStatus(404);
+ try {
+ // if a Follow activity hits the inbox
+ if (typeof req.body.object === 'string' && req.body.type === 'Follow') {
+ _handleFollow(req, res);
+ }
+ // if an Undo activity with a Follow object hits the inbox
+ if (req.body && req.body.type === 'Undo' && req.body.object && req.body.object.type === 'Follow') {
+ _handleUndoFollow(req, res);
+ }
+ // if an Accept activity with the id of the Event we sent out hits the inbox, it is an affirmative RSVP
+ if (req.body && req.body.type === 'Accept' && req.body.object && typeof req.body.object === 'string') {
+ _handleAcceptEvent(req, res);
+ }
+ // if an Undo activity containing an Accept containing the id of the Event we sent out hits the inbox, it is an undo RSVP
+ if (req.body && req.body.type === 'Undo' && req.body.object && req.body.object.object && typeof req.body.object.object === 'string' && req.body.object.type === 'Accept') {
+ _handleUndoAcceptEvent(req, res);
+ }
+ // if a Create activity with a Note object hits the inbox, and it's a reply, it might be a vote in a poll
+ if (req.body && req.body.type === 'Create' && req.body.object && req.body.object.type === 'Note' && req.body.object.inReplyTo && req.body.object.to) {
+ _handleCreateNote(req, res);
+ }
+ // if a Delete activity hits the inbox, it might a deletion of a comment
+ if (req.body && req.body.type === 'Delete') {
+ _handleDelete(req, res);
+ }
+ // if we are CC'ed on a public or unlisted Create/Note, then this is a comment to us we should boost (Announce) to our followers
+ if (req.body && req.body.type === 'Create' && req.body.object && req.body.object.type === 'Note' && req.body.object.to) {
+ _handleCreateNoteComment(req, res);
+ } // CC'ed
+ }
+ catch (e) {
+ console.log('Error in processing inbox:', e)
+ }
+}
+
+function createWebfinger(eventID, domain) {
+ return {
+ 'subject': `acct:${eventID}@${domain}`,
+
+ 'links': [
+ {
+ 'rel': 'self',
+ 'type': 'application/activity+json',
+ 'href': `https://${domain}/${eventID}`
+ }
+ ]
+ };
+}
+
+module.exports = {
+ processInbox,
+ sendAcceptMessage,
+ sendDirectMessage,
+ broadcastAnnounceMessage,
+ broadcastUpdateMessage,
+ broadcastDeleteMessage,
+ broadcastCreateMessage,
+ signAndSend,
+ createActivityPubActor,
+ updateActivityPubActor,
+ createActivityPubEvent,
+ updateActivityPubEvent,
+ createFeaturedPost,
+ createWebfinger,
+}
diff --git a/src/app.js b/src/app.js
new file mode 100755
index 0000000..cc50593
--- /dev/null
+++ b/src/app.js
@@ -0,0 +1,54 @@
+const express = require('express');
+const path = require('path');
+const session = require('express-session');
+const cors = require('cors');
+const routes = require('./routes');
+const hbs = require('express-handlebars');
+const bodyParser = require('body-parser');
+
+const app = express();
+
+// Configuration //
+
+//app.use(cors());
+//app.use(bodyParser.json());
+//app.use(session({ secret: 'slartibartfast', cookie: { maxAge: 60000 }, resave: false, saveUninitialized: false }));
+
+
+// View engine //
+const hbsInstance = hbs.create({
+ defaultLayout: 'main',
+ partialsDir: ['views/partials/'],
+ layoutsDir: 'views/layouts/',
+ helpers: {
+ plural: function(number, text) {
+ var singular = number === 1;
+ // If no text parameter was given, just return a conditional s.
+ if (typeof text !== 'string') return singular ? '' : 's';
+ // Split with regex into group1/group2 or group1(group3)
+ var match = text.match(/^([^()\/]+)(?:\/(.+))?(?:\((\w+)\))?/);
+ // If no match, just append a conditional s.
+ if (!match) return text + (singular ? '' : 's');
+ // We have a good match, so fire away
+ return singular && match[1] // Singular case
+ ||
+ match[2] // Plural case: 'bagel/bagels' --> bagels
+ ||
+ match[1] + (match[3] || 's'); // Plural case: 'bagel(s)' or 'bagel' --> bagels
+ }
+ }
+});
+app.engine('handlebars', hbsInstance.engine);
+app.set('view engine', 'handlebars');
+app.set('hbsInstance', hbsInstance);
+
+// Static files //
+
+app.use(express.static('public'));
+
+// Router //
+app.use(bodyParser.json({ type: "application/activity+json" })); // support json encoded bodies
+app.use(bodyParser.urlencoded({ extended: true }));
+app.use('/', routes);
+
+module.exports = app;
diff --git a/src/config/api-example.js b/src/config/api-example.js
new file mode 100644
index 0000000..9202f0a
--- /dev/null
+++ b/src/config/api-example.js
@@ -0,0 +1,8 @@
+// Which of these fields are used depends on the 'mailService' config entry in config/domain.js
+module.exports = {
+ 'sendgrid' : '', // If using SendGrid, the Sendgrid API key goes here
+ 'smtpServer': '', // If using Nodemailer, your SMTP server hostname goes here
+ 'smtpPort': '', // If using Nodemailer, your SMTP server port goes here
+ 'smtpUsername': '', // If using Nodemailer, your SMTP server username goes here
+ 'smtpPassword': '' // If using Nodemailer, your SMTP password goes here
+};
diff --git a/src/config/database-docker.js b/src/config/database-docker.js
new file mode 100644
index 0000000..7847097
--- /dev/null
+++ b/src/config/database-docker.js
@@ -0,0 +1,3 @@
+module.exports = {
+ 'url' : 'mongodb://mongo:27017/gathio' // For dockerised MongoDB connection
+};
diff --git a/src/config/database-example.js b/src/config/database-example.js
new file mode 100644
index 0000000..4aa4c4d
--- /dev/null
+++ b/src/config/database-example.js
@@ -0,0 +1,3 @@
+module.exports = {
+ 'url' : 'mongodb://localhost:27017/gathio' // For local MongoDB connection
+};
diff --git a/src/config/domain-example.js b/src/config/domain-example.js
new file mode 100644
index 0000000..19c797a
--- /dev/null
+++ b/src/config/domain-example.js
@@ -0,0 +1,13 @@
+module.exports = {
+ // Your domain goes here. If there is a port it should be 'domain:port', but otherwise just 'domain'
+ 'domain' : 'localhost:3000' ,
+ 'port': '3000',
+ 'email': 'contact@example.com',
+ 'mailService': 'nodemailer', // Which mail service to use to send emails to attendees. Options are 'nodemailer' or 'sendgrid'. Configure settings for the mail service in config/api.js.z
+ 'sitename': 'gathio',
+ 'isFederated': true,
+ // If left blank, this defaults to https://yourdomain.com/images/gathio-email-logo.gif. Set a full URL here to change it to your own logo (or just change the file itself)
+ 'logo_url': '',
+ // Show a Ko-Fi box to donate money to Raphael Kabo (Gathio's creator) on the front page
+ 'showKofi': false,
+};
diff --git a/src/config/gathio.service b/src/config/gathio.service
new file mode 100644
index 0000000..447d44f
--- /dev/null
+++ b/src/config/gathio.service
@@ -0,0 +1,13 @@
+[Unit]
+Description=GathIO
+After=network.target
+
+[Service]
+Type=simple
+User=gathio
+WorkingDirectory=/srv/gathio
+ExecStart=/usr/bin/npm start
+Restart=on-failure
+
+[Install]
+WantedBy=multi-user.target
diff --git a/src/helpers.js b/src/helpers.js
new file mode 100644
index 0000000..bf95e27
--- /dev/null
+++ b/src/helpers.js
@@ -0,0 +1,57 @@
+const domain = require('./config/domain.js').domain;
+const siteName = require('./config/domain.js').sitename;
+
+const mongoose = require('mongoose');
+const Log = mongoose.model('Log');
+var moment = require('moment-timezone');
+const icalGenerator = require('ical-generator');
+
+// LOGGING
+
+function addToLog(process, status, message) {
+ let logEntry = new Log({
+ status: status,
+ process: process,
+ message: message,
+ timestamp: moment()
+ });
+ logEntry.save().catch(() => { console.log("Error saving log entry!") });
+}
+
+function exportIcal(events, calendarName) {
+ // Create a new icalGenerator... generator
+ const cal = icalGenerator({
+ name: calendarName || siteName,
+ x: {
+ 'X-WR-CALNAME': calendarName || siteName,
+ },
+ });
+ if (events instanceof Array === false) {
+ events = [ events ];
+ }
+ events.forEach(event => {
+ // Add the event to the generator
+ cal.createEvent({
+ start: moment.tz(event.start, event.timezone),
+ end: moment.tz(event.end, event.timezone),
+ timezone: event.timezone,
+ timestamp: moment(),
+ summary: event.name,
+ description: event.description,
+ organizer: {
+ name: event.hostName || "Anonymous",
+ email: event.creatorEmail || 'anonymous@anonymous.com',
+ },
+ location: event.location,
+ url: 'https://' + domain + '/' + event.id
+ });
+ });
+ // Stringify it!
+ const string = cal.toString();
+ return string;
+}
+
+module.exports = {
+ addToLog,
+ exportIcal,
+}
diff --git a/src/models/Event.js b/src/models/Event.js
new file mode 100755
index 0000000..d800077
--- /dev/null
+++ b/src/models/Event.js
@@ -0,0 +1,254 @@
+const mongoose = require('mongoose');
+
+const Attendees = new mongoose.Schema({
+ name: {
+ type: String,
+ trim: true
+ },
+ status: {
+ type: String,
+ trim: true
+ },
+ email: {
+ type: String,
+ trim: true
+ },
+ removalPassword: {
+ type: String,
+ trim: true,
+ unique: true,
+ sparse: true,
+ },
+ id: {
+ type: String,
+ trim: true,
+ unique: true,
+ sparse: true,
+ },
+ // The number of people that are attending under one 'attendee' object
+ number: {
+ type: Number,
+ trim: true,
+ default: 1
+ },
+ created: Date,
+})
+
+const Followers = new mongoose.Schema({
+ // this is the id of the original follow *request*, which we use to validate Undo events
+ followId: {
+ type: String,
+ trim: true
+ },
+ // this is the actual remote user profile id
+ actorId: {
+ type: String,
+ trim: true
+ },
+ // this is the stringified JSON of the entire user profile
+ actorJson: {
+ type: String,
+ trim: true
+ },
+ name: {
+ type: String,
+ trim: true
+ },
+}, { _id: false })
+
+const ReplySchema = new mongoose.Schema({
+ id: {
+ type: String,
+ required: true,
+ unique: true,
+ sparse: true
+ },
+ author: {
+ type: String,
+ trim: true,
+ required: true
+ },
+ content: {
+ type: String,
+ trim: true,
+ required: true
+ },
+ timestamp: {
+ type: Date,
+ trim: true,
+ required: true
+ }
+})
+
+const ActivityPubMessages = new mongoose.Schema({
+ id: {
+ type: String,
+ required: true,
+ unique: true,
+ sparse: true
+ },
+ content: {
+ type: String,
+ trim: true,
+ required: true
+ }
+})
+
+const CommentSchema = new mongoose.Schema({
+ id: {
+ type: String,
+ required: true,
+ unique: true,
+ sparse: true
+ },
+ author: {
+ type: String,
+ trim: true,
+ required: true
+ },
+ content: {
+ type: String,
+ trim: true,
+ required: true
+ },
+ timestamp: {
+ type: Date,
+ trim: true,
+ required: true
+ },
+ activityJson: {
+ type: String,
+ trim: true
+ },
+ actorJson: {
+ type: String,
+ trim: true
+ },
+ activityId: {
+ type: String,
+ trim: true
+ },
+ actorId: {
+ type: String,
+ trim: true
+ },
+ replies: [ReplySchema]
+})
+
+const EventSchema = new mongoose.Schema({
+ id: {
+ type: String,
+ required: true,
+ unique: true
+ },
+ type: {
+ type: String,
+ trim: true,
+ required: true
+ },
+ name: {
+ type: String,
+ trim: true,
+ required: true
+ },
+ location: {
+ type: String,
+ trim: true,
+ required: true
+ },
+ start: { // Stored as a UTC timestamp
+ type: Date,
+ trim: true,
+ required: true
+ },
+ end: { // Stored as a UTC timestamp
+ type: Date,
+ trim: true,
+ required: true
+ },
+ timezone: {
+ type: String,
+ default: 'Etc/UTC'
+ },
+ description: {
+ type: String,
+ trim: true,
+ required: true
+ },
+ image: {
+ type: String,
+ trim: true
+ },
+ url: {
+ type: String,
+ trim: true
+ },
+ creatorEmail: {
+ type: String,
+ trim: true
+ },
+ hostName: {
+ type: String,
+ trim: true
+ },
+ viewPassword: {
+ type: String,
+ trim: true
+ },
+ editPassword: {
+ type: String,
+ trim: true
+ },
+ editToken: {
+ type: String,
+ trim: true,
+ minlength: 32,
+ maxlength: 32
+ },
+ eventGroup: { type: mongoose.Schema.Types.ObjectId, ref: 'EventGroup' },
+ usersCanAttend: {
+ type: Boolean,
+ trim: true,
+ default: false
+ },
+ showUsersList: {
+ type: Boolean,
+ trim: true,
+ default: false
+ },
+ usersCanComment: {
+ type: Boolean,
+ trim: true,
+ default: false
+ },
+ firstLoad: {
+ type: Boolean,
+ trim: true,
+ default: true
+ },
+ attendees: [Attendees],
+ maxAttendees: {
+ type: Number
+ },
+ comments: [CommentSchema],
+ activityPubActor: {
+ type: String,
+ trim: true
+ },
+ activityPubEvent: {
+ type: String,
+ trim: true
+ },
+ publicKey: {
+ type: String,
+ trim: true
+ },
+ privateKey: {
+ type: String,
+ trim: true
+ },
+ followers: [Followers],
+ activityPubMessages: [ActivityPubMessages]
+});
+
+module.exports = mongoose.model('Event', EventSchema);
diff --git a/src/models/EventGroup.js b/src/models/EventGroup.js
new file mode 100755
index 0000000..c70ef95
--- /dev/null
+++ b/src/models/EventGroup.js
@@ -0,0 +1,57 @@
+const mongoose = require('mongoose');
+
+const Subscriber = new mongoose.Schema({
+ email: {
+ type: String,
+ trim: true
+ },
+})
+
+const EventGroupSchema = new mongoose.Schema({
+ id: {
+ type: String,
+ required: true,
+ unique: true
+ },
+ name: {
+ type: String,
+ trim: true,
+ required: true
+ },
+ description: {
+ type: String,
+ trim: true,
+ required: true
+ },
+ image: {
+ type: String,
+ trim: true
+ },
+ url: {
+ type: String,
+ trim: true
+ },
+ creatorEmail: {
+ type: String,
+ trim: true
+ },
+ hostName: {
+ type: String,
+ trim: true
+ },
+ editToken: {
+ type: String,
+ trim: true,
+ minlength: 32,
+ maxlength: 32
+ },
+ firstLoad: {
+ type: Boolean,
+ trim: true,
+ default: true
+ },
+ events: [{ type: mongoose.Schema.Types.ObjectId, ref: 'Event' }],
+ subscribers: [Subscriber],
+});
+
+module.exports = mongoose.model('EventGroup', EventGroupSchema);
diff --git a/src/models/Log.js b/src/models/Log.js
new file mode 100755
index 0000000..95a3ab3
--- /dev/null
+++ b/src/models/Log.js
@@ -0,0 +1,26 @@
+const mongoose = require('mongoose');
+
+const LogSchema = new mongoose.Schema({
+ status: {
+ type: String,
+ trim: true,
+ required: true
+ },
+ process: {
+ type: String,
+ trim: true,
+ required: true
+ },
+ message: {
+ type: String,
+ trim: true,
+ required: true
+ },
+ timestamp: {
+ type: Date,
+ trim: true,
+ required: true
+ }
+});
+
+module.exports = mongoose.model('Log', LogSchema);
diff --git a/src/routes.js b/src/routes.js
new file mode 100755
index 0000000..c9867e3
--- /dev/null
+++ b/src/routes.js
@@ -0,0 +1,1976 @@
+const fs = require('fs');
+
+const express = require('express');
+
+const mongoose = require('mongoose');
+
+// This alphabet (used to generate all event, group, etc. IDs) is missing '-'
+// because ActivityPub doesn't like it in IDs
+const { customAlphabet } = require('nanoid');
+const nanoid = customAlphabet('0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_', 21);
+
+const randomstring = require("randomstring");
+
+const { body, validationResult } = require('express-validator');
+
+const router = express.Router();
+
+const Event = mongoose.model('Event');
+const EventGroup = mongoose.model('EventGroup');
+const addToLog = require('./helpers.js').addToLog;
+
+var moment = require('moment-timezone');
+
+const marked = require('marked');
+
+const generateRSAKeypair = require('generate-rsa-keypair');
+const crypto = require('crypto');
+const request = require('request');
+const niceware = require('niceware');
+
+const domain = require('./config/domain.js').domain;
+const contactEmail = require('./config/domain.js').email;
+const mailService = require('./config/domain.js').mailService;
+const siteName = require('./config/domain.js').sitename;
+const siteLogo = require('./config/domain.js').logo_url;
+let isFederated = require('./config/domain.js').isFederated;
+let showKofi = require('./config/domain.js').showKofi;
+// if the federation config isn't set, things are federated by default
+if (isFederated === undefined) {
+ isFederated = true;
+}
+const ap = require('./activitypub.js');
+
+// Extra marked renderer (used to render plaintext event description for page metadata)
+// Adapted from https://dustinpfister.github.io/2017/11/19/nodejs-marked/
+// &#63; to ? helper
+function htmlEscapeToText(text) {
+ return text.replace(/\&\#[0-9]*;|&amp;/g, function (escapeCode) {
+ if (escapeCode.match(/amp/)) {
+ return '&';
+ }
+ return String.fromCharCode(escapeCode.match(/[0-9]+/));
+ });
+}
+
+function render_plain() {
+ var render = new marked.Renderer();
+ // render just the text of a link, strong, em
+ render.link = function (href, title, text) {
+ return text;
+ };
+ render.strong = function (text) {
+ return text;
+ }
+ render.em = function (text) {
+ return text;
+ }
+ // render just the text of a paragraph
+ render.paragraph = function (text) {
+ return htmlEscapeToText(text) + '\r\n';
+ };
+ // render nothing for headings, images, and br
+ render.heading = function (text, level) {
+ return '';
+ };
+ render.image = function (href, title, text) {
+ return '';
+ };
+ render.br = function () {
+ return '';
+ };
+ return render;
+}
+
+const ical = require('ical');
+const { exportIcal } = require('./helpers.js');
+
+const sgMail = require('@sendgrid/mail');
+const nodemailer = require("nodemailer");
+
+const apiCredentials = require('./config/api.js');
+
+let sendEmails = false;
+let nodemailerTransporter;
+if (mailService) {
+ switch (mailService) {
+ case 'sendgrid':
+ sgMail.setApiKey(apiCredentials.sendgrid);
+ console.log("Sendgrid is ready to send emails.");
+ sendEmails = true;
+ break;
+ case 'nodemailer':
+ nodemailerTransporter = nodemailer.createTransport({
+ host: apiCredentials.smtpServer,
+ port: apiCredentials.smtpPort,
+ secure: false, // true for 465, false for other ports
+ auth: {
+ user: apiCredentials.smtpUsername, // generated ethereal user
+ pass: apiCredentials.smtpPassword, // generated ethereal password
+ },
+ });
+ nodemailerTransporter.verify((error, success) => {
+ if (error) {
+ console.log(error);
+ } else {
+ console.log("Nodemailer SMTP server is ready to send emails.");
+ sendEmails = true;
+ }
+ });
+ break;
+ default:
+ console.error('You have not configured this Gathio instance to send emails! This means that event creators will not receive emails when their events are created, which means they may end up locked out of editing events. Consider setting up an email service.')
+ }
+}
+
+const fileUpload = require('express-fileupload');
+var Jimp = require('jimp');
+router.use(fileUpload());
+
+// SCHEDULED DELETION
+const schedule = require('node-schedule');
+schedule.scheduleJob('59 23 * * *', function (fireDate) {
+ const too_old = moment.tz('Etc/UTC').subtract(7, 'days').toDate();
+ console.log("Old event deletion running! Deleting all events concluding before ", too_old);
+
+ Event.find({ end: { $lte: too_old } }).then((oldEvents) => {
+ oldEvents.forEach(event => {
+ const deleteEventFromDB = (id) => {
+ Event.remove({ "_id": id })
+ .then(response => {
+ addToLog("deleteOldEvents", "success", "Old event " + id + " deleted");
+ }).catch((err) => {
+ addToLog("deleteOldEvents", "error", "Attempt to delete old event " + id + " failed with error: " + err);
+ });
+ }
+
+ if (event.image) {
+ fs.unlink(global.appRoot + '/public/events/' + event.image, (err) => {
+ if (err) {
+ addToLog("deleteOldEvents", "error", "Attempt to delete event image for old event " + event.id + " failed with error: " + err);
+ }
+ // Image removed
+ addToLog("deleteOldEvents", "error", "Image deleted for old event " + event.id);
+ })
+ }
+ // Check if event has ActivityPub fields
+ if (event.activityPubActor && event.activityPubEvent) {
+ // Broadcast a Delete profile message to all followers so that at least Mastodon servers will delete their local profile information
+ const guidUpdateObject = crypto.randomBytes(16).toString('hex');
+ const jsonUpdateObject = JSON.parse(event.activityPubActor);
+ const jsonEventObject = JSON.parse(event.activityPubEvent);
+ // first broadcast AP messages, THEN delete from DB
+ ap.broadcastDeleteMessage(jsonUpdateObject, event.followers, event.id, function (statuses) {
+ ap.broadcastDeleteMessage(jsonEventObject, event.followers, event.id, function (statuses) {
+ deleteEventFromDB(event._id);
+ });
+ });
+ } else {
+ // No ActivityPub data - simply delete the event
+ deleteEventFromDB(event._id);
+ }
+ })
+ }).catch((err) => {
+ addToLog("deleteOldEvents", "error", "Attempt to delete old event " + event.id + " failed with error: " + err);
+ });
+
+ // TODO: While we're here, also remove all provisioned event attendees over a day
+ // old (they're not going to become active)
+});
+
+// FRONTEND ROUTES
+
+router.get('/', (req, res) => {
+ res.render('home', {
+ domain,
+ email: contactEmail,
+ siteName,
+ showKofi,
+ });
+});
+
+router.get('/new', (req, res) => {
+ res.render('home');
+});
+
+router.get('/new/event', (req, res) => {
+ res.render('newevent', {
+ domain: domain,
+ email: contactEmail,
+ siteName: siteName,
+ });
+});
+router.get('/new/event/public', (req, res) => {
+ let isPrivate = false;
+ let isPublic = true;
+ let isOrganisation = false;
+ let isUnknownType = false;
+ res.render('newevent', {
+ title: 'New event',
+ isPrivate: isPrivate,
+ isPublic: isPublic,
+ isOrganisation: isOrganisation,
+ isUnknownType: isUnknownType,
+ eventType: 'public',
+ domain: domain,
+ email: contactEmail,
+ siteName: siteName,
+ });
+})
+
+// return the JSON for the featured/pinned post for this event
+router.get('/:eventID/featured', (req, res) => {
+ if (!isFederated) return res.sendStatus(404);
+ const { eventID } = req.params;
+ const guidObject = crypto.randomBytes(16).toString('hex');
+ const featured = {
+ "@context": "https://www.w3.org/ns/activitystreams",
+ "id": `https://${domain}/${eventID}/featured`,
+ "type": "OrderedCollection",
+ "orderedItems": [
+ ap.createFeaturedPost(eventID)
+ ]
+ }
+ res.json(featured);
+});
+
+// return the JSON for a given activitypub message
+router.get('/:eventID/m/:hash', (req, res) => {
+ if (!isFederated) return res.sendStatus(404);
+ const { hash, eventID } = req.params;
+ const id = `https://${domain}/${eventID}/m/${hash}`;
+
+ Event.findOne({
+ id: eventID
+ })
+ .then((event) => {
+ if (!event) {
+ res.status(404);
+ res.render('404', { url: req.url });
+ }
+ else {
+ const message = event.activityPubMessages.find(el => el.id === id);
+ if (message) {
+ return res.json(JSON.parse(message.content));
+ }
+ else {
+ res.status(404);
+ return res.render('404', { url: req.url });
+ }
+ }
+ })
+ .catch((err) => {
+ addToLog("getActivityPubMessage", "error", "Attempt to get Activity Pub Message for " + id + " failed with error: " + err);
+ res.status(404);
+ res.render('404', { url: req.url });
+ return;
+ });
+});
+
+// return the webfinger record required for the initial activitypub handshake
+router.get('/.well-known/webfinger', (req, res) => {
+ if (!isFederated) return res.sendStatus(404);
+ let resource = req.query.resource;
+ if (!resource || !resource.includes('acct:')) {
+ return res.status(400).send('Bad request. Please make sure "acct:USER@DOMAIN" is what you are sending as the "resource" query parameter.');
+ }
+ else {
+ // "foo@domain"
+ let activityPubAccount = resource.replace('acct:', '');
+ // "foo"
+ let eventID = activityPubAccount.replace(/@.*/, '');
+ Event.findOne({
+ id: eventID
+ })
+ .then((event) => {
+ if (!event) {
+ res.status(404);
+ res.render('404', { url: req.url });
+ }
+ else {
+ res.json(ap.createWebfinger(eventID, domain));
+ }
+ })
+ .catch((err) => {
+ addToLog("renderWebfinger", "error", "Attempt to render webfinger for " + req.params.eventID + " failed with error: " + err);
+ res.status(404);
+ res.render('404', { url: req.url });
+ return;
+ });
+ }
+});
+
+router.get('/:eventID', (req, res) => {
+ Event.findOne({
+ id: req.params.eventID
+ })
+ .lean() // Required, see: https://stackoverflow.com/questions/59690923/handlebars-access-has-been-denied-to-resolve-the-property-from-because-it-is
+ .populate('eventGroup')
+ .then((event) => {
+ if (event) {
+ const parsedLocation = event.location.replace(/\s+/g, '+');
+ let displayDate;
+ if (moment.tz(event.end, event.timezone).isSame(event.start, 'day')) {
+ // Happening during one day
+ displayDate = moment.tz(event.start, event.timezone).format('dddd D MMMM YYYY [<span class="text-muted">from</span>] h:mm a') + moment.tz(event.end, event.timezone).format(' [<span class="text-muted">to</span>] h:mm a [<span class="text-muted">](z)[</span>]');
+ }
+ else {
+ displayDate = moment.tz(event.start, event.timezone).format('dddd D MMMM YYYY [<span class="text-muted">at</span>] h:mm a') + moment.tz(event.end, event.timezone).format(' [<span class="text-muted">–</span>] dddd D MMMM YYYY [<span class="text-muted">at</span>] h:mm a [<span class="text-muted">](z)[</span>]');
+ }
+ let eventStartISO = moment.tz(event.start, "Etc/UTC").toISOString();
+ let eventEndISO = moment.tz(event.end, "Etc/UTC").toISOString();
+ let parsedStart = moment.tz(event.start, event.timezone).format('YYYYMMDD[T]HHmmss');
+ let parsedEnd = moment.tz(event.end, event.timezone).format('YYYYMMDD[T]HHmmss');
+ let eventHasConcluded = false;
+ if (moment.tz(event.end, event.timezone).isBefore(moment.tz(event.timezone))) {
+ eventHasConcluded = true;
+ }
+ let eventHasBegun = false;
+ if (moment.tz(event.start, event.timezone).isBefore(moment.tz(event.timezone))) {
+ eventHasBegun = true;
+ }
+ let fromNow = moment.tz(event.start, event.timezone).fromNow();
+ let parsedDescription = marked.parse(event.description);
+ let eventEditToken = event.editToken;
+
+ let escapedName = event.name.replace(/\s+/g, '+');
+
+ let eventHasCoverImage = false;
+ if (event.image) {
+ eventHasCoverImage = true;
+ }
+ else {
+ eventHasCoverImage = false;
+ }
+ let eventHasHost = false;
+ if (event.hostName) {
+ eventHasHost = true;
+ }
+ else {
+ eventHasHost = false;
+ }
+ let firstLoad = false;
+ if (event.firstLoad === true) {
+ firstLoad = true;
+ Event.findOneAndUpdate({ id: req.params.eventID }, { firstLoad: false }, function (err, raw) {
+ if (err) {
+ res.send(err);
+ }
+ });
+ }
+ let editingEnabled = false;
+ if (Object.keys(req.query).length !== 0) {
+ if (!req.query.e) {
+ editingEnabled = false;
+ console.log("No edit token set");
+ }
+ else {
+ if (req.query.e === eventEditToken) {
+ editingEnabled = true;
+ }
+ else {
+ editingEnabled = false;
+ }
+ }
+ }
+ let eventAttendees = event.attendees.sort((a, b) => (a.name > b.name) ? 1 : ((b.name > a.name) ? -1 : 0))
+ .map(el => {
+ if (!el.id) {
+ el.id = el._id;
+ }
+ if (el.number > 1) {
+ el.name = `${el.name} (${el.number} people)`;
+ }
+ return el;
+ })
+ .filter((obj, pos, arr) => {
+ return obj.status === 'attending' && arr.map(mapObj => mapObj.id).indexOf(obj.id) === pos;
+ });
+
+ let spotsRemaining, noMoreSpots;
+ let numberOfAttendees = eventAttendees.reduce((acc, attendee) => {
+ if (attendee.status === 'attending') {
+ return acc + attendee.number || 1;
+ }
+ return acc;
+ }, 0);
+ if (event.maxAttendees) {
+ spotsRemaining = event.maxAttendees - numberOfAttendees;
+ if (spotsRemaining <= 0) {
+ noMoreSpots = true;
+ }
+ }
+ let metadata = {
+ title: event.name,
+ description: marked.parse(event.description, { renderer: render_plain() }).split(" ").splice(0, 40).join(" ").trim(),
+ image: (eventHasCoverImage ? `https://${domain}/events/` + event.image : null),
+ url: `https://${domain}/` + req.params.eventID
+ };
+ if (req.headers.accept && (req.headers.accept.includes('application/activity+json') || req.headers.accept.includes('application/json') || req.headers.accept.includes('application/json+ld'))) {
+ res.json(JSON.parse(event.activityPubActor));
+ }
+ else {
+ res.set("X-Robots-Tag", "noindex");
+ res.render('event', {
+ domain: domain,
+ isFederated: isFederated,
+ email: contactEmail,
+ title: event.name,
+ escapedName: escapedName,
+ eventData: event,
+ eventAttendees: eventAttendees,
+ numberOfAttendees,
+ spotsRemaining: spotsRemaining,
+ noMoreSpots: noMoreSpots,
+ eventStartISO: eventStartISO,
+ eventEndISO: eventEndISO,
+ parsedLocation: parsedLocation,
+ parsedStart: parsedStart,
+ parsedEnd: parsedEnd,
+ displayDate: displayDate,
+ fromNow: fromNow,
+ timezone: event.timezone,
+ parsedDescription: parsedDescription,
+ editingEnabled: editingEnabled,
+ eventHasCoverImage: eventHasCoverImage,
+ eventHasHost: eventHasHost,
+ firstLoad: firstLoad,
+ eventHasConcluded: eventHasConcluded,
+ eventHasBegun: eventHasBegun,
+ metadata: metadata,
+ siteName: siteName
+ })
+ }
+ }
+ else {
+ res.status(404);
+ res.render('404', { url: req.url });
+ }
+
+ })
+ .catch((err) => {
+ addToLog("displayEvent", "error", "Attempt to display event " + req.params.eventID + " failed with error: " + err);
+ console.log(err)
+ res.status(404);
+ res.render('404', { url: req.url });
+ return;
+ });
+})
+
+router.get('/:eventID/followers', (req, res) => {
+ if (!isFederated) return res.sendStatus(404);
+ const eventID = req.params.eventID;
+ Event.findOne({
+ id: eventID
+ })
+ .then((event) => {
+ if (event) {
+ const followers = event.followers.map(el => el.actorId);
+ let followersCollection = {
+ "type": "OrderedCollection",
+ "totalItems": followers.length,
+ "id": `https://${domain}/${eventID}/followers`,
+ "first": {
+ "type": "OrderedCollectionPage",
+ "totalItems": followers.length,
+ "partOf": `https://${domain}/${eventID}/followers`,
+ "orderedItems": followers,
+ "id": `https://${domain}/${eventID}/followers?page=1`
+ },
+ "@context": ["https://www.w3.org/ns/activitystreams"]
+ };
+ return res.json(followersCollection);
+ }
+ else {
+ return res.status(400).send('Bad request.');
+ }
+ })
+})
+
+router.get('/group/:eventGroupID', (req, res) => {
+ EventGroup.findOne({
+ id: req.params.eventGroupID
+ })
+ .lean() // Required, see: https://stackoverflow.com/questions/59690923/handlebars-access-has-been-denied-to-resolve-the-property-from-because-it-is
+ .then(async (eventGroup) => {
+ if (eventGroup) {
+ let parsedDescription = marked.parse(eventGroup.description);
+ let eventGroupEditToken = eventGroup.editToken;
+
+ let escapedName = eventGroup.name.replace(/\s+/g, '+');
+
+ let eventGroupHasCoverImage = false;
+ if (eventGroup.image) {
+ eventGroupHasCoverImage = true;
+ }
+ else {
+ eventGroupHasCoverImage = false;
+ }
+ let eventGroupHasHost = false;
+ if (eventGroup.hostName) {
+ eventGroupHasHost = true;
+ }
+ else {
+ eventGroupHasHost = false;
+ }
+
+ let events = await Event.find({ eventGroup: eventGroup._id }).lean().sort('start');
+
+ events.map(event => {
+ if (moment.tz(event.end, event.timezone).isSame(event.start, 'day')) {
+ // Happening during one day
+ event.displayDate = moment.tz(event.start, event.timezone).format('D MMM YYYY');
+ }
+ else {
+ event.displayDate = moment.tz(event.start, event.timezone).format('D MMM YYYY') + moment.tz(event.end, event.timezone).format(' - D MMM YYYY');
+ }
+ if (moment.tz(event.end, event.timezone).isBefore(moment.tz(event.timezone))) {
+ event.eventHasConcluded = true;
+ } else {
+ event.eventHasConcluded = false;
+ }
+ return (({ id, name, displayDate, eventHasConcluded }) => ({ id, name, displayDate, eventHasConcluded }))(event);
+ });
+
+ let upcomingEventsExist = false;
+ if (events.some(e => e.eventHasConcluded === false)) {
+ upcomingEventsExist = true;
+ }
+
+ let firstLoad = false;
+ if (eventGroup.firstLoad === true) {
+ firstLoad = true;
+ EventGroup.findOneAndUpdate({ id: req.params.eventGroupID }, { firstLoad: false }, function (err, raw) {
+ if (err) {
+ res.send(err);
+ }
+ });
+ }
+ let editingEnabled = false;
+ if (Object.keys(req.query).length !== 0) {
+ if (!req.query.e) {
+ editingEnabled = false;
+ console.log("No edit token set");
+ }
+ else {
+ if (req.query.e === eventGroupEditToken) {
+ editingEnabled = true;
+ }
+ else {
+ editingEnabled = false;
+ }
+ }
+ }
+ let metadata = {
+ title: eventGroup.name,
+ description: marked.parse(eventGroup.description, { renderer: render_plain() }).split(" ").splice(0, 40).join(" ").trim(),
+ image: (eventGroupHasCoverImage ? `https://${domain}/events/` + eventGroup.image : null),
+ url: `https://${domain}/` + req.params.eventID
+ };
+ res.set("X-Robots-Tag", "noindex");
+ res.render('eventgroup', {
+ domain: domain,
+ title: eventGroup.name,
+ eventGroupData: eventGroup,
+ escapedName: escapedName,
+ events: events,
+ upcomingEventsExist: upcomingEventsExist,
+ parsedDescription: parsedDescription,
+ editingEnabled: editingEnabled,
+ eventGroupHasCoverImage: eventGroupHasCoverImage,
+ eventGroupHasHost: eventGroupHasHost,
+ firstLoad: firstLoad,
+ metadata: metadata
+ })
+ }
+ else {
+ res.status(404);
+ res.render('404', { url: req.url });
+ }
+
+ })
+ .catch((err) => {
+ addToLog("displayEventGroup", "error", "Attempt to display event group " + req.params.eventGroupID + " failed with error: " + err);
+ console.log(err)
+ res.status(404);
+ res.render('404', { url: req.url });
+ return;
+ });
+})
+
+router.get('/group/:eventGroupID/feed.ics', (req, res) => {
+ EventGroup.findOne({
+ id: req.params.eventGroupID
+ })
+ .lean() // Required, see: https://stackoverflow.com/questions/59690923/handlebars-access-has-been-denied-to-resolve-the-property-from-because-it-is
+ .then(async (eventGroup) => {
+ if (eventGroup) {
+ let events = await Event.find({ eventGroup: eventGroup._id }).lean().sort('start');
+ const string = exportIcal(events, eventGroup.name);
+ res.set('Content-Type', 'text/calendar');
+ return res.send(string);
+ }
+ })
+ .catch((err) => {
+ addToLog("eventGroupFeed", "error", "Attempt to display event group feed for " + req.params.eventGroupID + " failed with error: " + err);
+ console.log(err)
+ res.status(404);
+ res.render('404', { url: req.url });
+ return;
+ });
+});
+
+router.get('/exportevent/:eventID', (req, res) => {
+ Event.findOne({
+ id: req.params.eventID
+ })
+ .populate('eventGroup')
+ .then((event) => {
+ if (event) {
+ const string = exportIcal([event]);
+ res.send(string);
+ }
+ })
+ .catch((err) => {
+ addToLog("exportEvent", "error", "Attempt to export event " + req.params.eventID + " failed with error: " + err);
+ console.log(err)
+ res.status(404);
+ res.render('404', { url: req.url });
+ return;
+ });
+});
+
+router.get('/exportgroup/:eventGroupID', (req, res) => {
+ EventGroup.findOne({
+ id: req.params.eventGroupID
+ })
+ .lean() // Required, see: https://stackoverflow.com/questions/59690923/handlebars-access-has-been-denied-to-resolve-the-property-from-because-it-is
+ .then(async (eventGroup) => {
+ if (eventGroup) {
+ let events = await Event.find({ eventGroup: eventGroup._id }).lean().sort('start');
+ const string = exportIcal(events);
+ res.send(string);
+ }
+ })
+ .catch((err) => {
+ addToLog("exportEvent", "error", "Attempt to export event group " + req.params.eventGroupID + " failed with error: " + err);
+ console.log(err)
+ res.status(404);
+ res.render('404', { url: req.url });
+ return;
+ });
+});
+
+// BACKEND ROUTES
+
+router.post('/newevent', async (req, res) => {
+ let eventID = nanoid();
+ let editToken = randomstring.generate();
+ let eventImageFilename = "";
+ let isPartOfEventGroup = false;
+ if (req.files && Object.keys(req.files).length !== 0) {
+ let eventImageBuffer = req.files.imageUpload.data;
+ eventImageFilename = await Jimp.read(eventImageBuffer)
+ .then(img => {
+ img
+ .resize(920, Jimp.AUTO) // resize
+ .quality(80) // set JPEG quality
+ .write('./public/events/' + eventID + '.jpg'); // save
+ const filename = eventID + '.jpg';
+ return filename;
+ })
+ .catch(err => {
+ addToLog("Jimp", "error", "Attempt to edit image failed with error: " + err);
+ });
+ }
+ let startUTC = moment.tz(req.body.eventStart, 'D MMMM YYYY, hh:mm a', req.body.timezone);
+ let endUTC = moment.tz(req.body.eventEnd, 'D MMMM YYYY, hh:mm a', req.body.timezone);
+ let eventGroup;
+ if (req.body.eventGroupCheckbox) {
+ eventGroup = await EventGroup.findOne({
+ id: req.body.eventGroupID,
+ editToken: req.body.eventGroupEditToken
+ })
+ if (eventGroup) {
+ isPartOfEventGroup = true;
+ }
+ }
+
+ // generate RSA keypair for ActivityPub
+ let pair = generateRSAKeypair();
+
+ const event = new Event({
+ id: eventID,
+ type: req.body.eventType,
+ name: req.body.eventName,
+ location: req.body.eventLocation,
+ start: startUTC,
+ end: endUTC,
+ timezone: req.body.timezone,
+ description: req.body.eventDescription,
+ image: eventImageFilename,
+ creatorEmail: req.body.creatorEmail,
+ url: req.body.eventURL,
+ hostName: req.body.hostName,
+ viewPassword: req.body.viewPassword,
+ editPassword: req.body.editPassword,
+ editToken: editToken,
+ eventGroup: isPartOfEventGroup ? eventGroup._id : null,
+ usersCanAttend: req.body.joinCheckbox ? true : false,
+ showUsersList: req.body.guestlistCheckbox ? true : false,
+ usersCanComment: req.body.interactionCheckbox ? true : false,
+ maxAttendees: req.body.maxAttendees,
+ firstLoad: true,
+ activityPubActor: ap.createActivityPubActor(eventID, domain, pair.public, marked.parse(req.body.eventDescription), req.body.eventName, req.body.eventLocation, eventImageFilename, startUTC, endUTC, req.body.timezone),
+ activityPubEvent: ap.createActivityPubEvent(req.body.eventName, startUTC, endUTC, req.body.timezone, req.body.eventDescription, req.body.eventLocation),
+ activityPubMessages: [{ id: `https://${domain}/${eventID}/m/featuredPost`, content: JSON.stringify(ap.createFeaturedPost(eventID, req.body.eventName, startUTC, endUTC, req.body.timezone, req.body.eventDescription, req.body.eventLocation)) }],
+ publicKey: pair.public,
+ privateKey: pair.private
+ });
+ event.save()
+ .then((event) => {
+ addToLog("createEvent", "success", "Event " + eventID + "created");
+ // Send email with edit link
+ if (req.body.creatorEmail && sendEmails) {
+ req.app.get('hbsInstance').renderView('./views/emails/createevent.handlebars', { eventID, editToken, siteName, siteLogo, domain, cache: true, layout: 'email.handlebars' }, function (err, html) {
+ const msg = {
+ to: req.body.creatorEmail,
+ from: {
+ name: siteName,
+ email: contactEmail,
+ address: contactEmail
+ },
+ subject: `${siteName}: ${req.body.eventName}`,
+ html,
+ };
+ switch (mailService) {
+ case 'sendgrid':
+ sgMail.send(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ case 'nodemailer':
+ nodemailerTransporter.sendMail(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ }
+ });
+ }
+ // If the event was added to a group, send an email to any group
+ // subscribers
+ if (event.eventGroup && sendEmails) {
+ EventGroup.findOne({ _id: event.eventGroup._id })
+ .then((eventGroup) => {
+ const subscribers = eventGroup.subscribers.reduce((acc, current) => {
+ if (acc.includes(current.email)) {
+ return acc;
+ }
+ return [current.email, ...acc];
+ }, []);
+ subscribers.forEach(emailAddress => {
+ req.app.get('hbsInstance').renderView('./views/emails/eventgroupupdated.handlebars', { siteName, siteLogo, domain, eventID: req.params.eventID, eventGroupName: eventGroup.name, eventName: event.name, eventID: event.id, eventGroupID: eventGroup.id, emailAddress: encodeURIComponent(emailAddress), cache: true, layout: 'email.handlebars' }, function (err, html) {
+ const msg = {
+ to: emailAddress,
+ from: {
+ name: siteName,
+ email: contactEmail,
+ },
+ subject: `${siteName}: New event in ${eventGroup.name}`,
+ html,
+ };
+ switch (mailService) {
+ case 'sendgrid':
+ sgMail.send(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ case 'nodemailer':
+ nodemailerTransporter.sendMail(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ }
+ });
+ });
+ });
+ }
+ res.writeHead(302, {
+ 'Location': '/' + eventID + '?e=' + editToken
+ });
+ res.end();
+ })
+ .catch((err) => { res.status(500).send('Database error, please try again :( - ' + err); addToLog("createEvent", "error", "Attempt to create event failed with error: " + err); });
+});
+
+router.post('/importevent', (req, res) => {
+ let eventID = nanoid();
+ let editToken = randomstring.generate();
+ if (req.files && Object.keys(req.files).length !== 0) {
+ let iCalObject = ical.parseICS(req.files.icsImportControl.data.toString('utf8'));
+ let importedEventData = iCalObject[Object.keys(iCalObject)];
+
+ let creatorEmail;
+ if (req.body.creatorEmail) {
+ creatorEmail = req.body.creatorEmail;
+ } else if (importedEventData.organizer) {
+ creatorEmail = importedEventData.organizer.val.replace("MAILTO:", "");
+ }
+
+ const event = new Event({
+ id: eventID,
+ type: 'public',
+ name: importedEventData.summary,
+ location: importedEventData.location,
+ start: importedEventData.start,
+ end: importedEventData.end,
+ timezone: typeof importedEventData.start.tz !== 'undefined' ? importedEventData.start.tz : "Etc/UTC",
+ description: importedEventData.description,
+ image: '',
+ creatorEmail: creatorEmail,
+ url: '',
+ hostName: importedEventData.organizer ? importedEventData.organizer.params.CN.replace(/["]+/g, '') : "",
+ viewPassword: '',
+ editPassword: '',
+ editToken: editToken,
+ usersCanAttend: false,
+ showUsersList: false,
+ usersCanComment: false,
+ firstLoad: true
+ });
+ event.save()
+ .then(() => {
+ addToLog("createEvent", "success", "Event " + eventID + " created");
+ // Send email with edit link
+ if (creatorEmail && sendEmails) {
+ req.app.get('hbsInstance').renderView('./views/emails/createevent.handlebars', { eventID, editToken, siteName, siteLogo, domain, cache: true, layout: 'email.handlebars' }, function (err, html) {
+ const msg = {
+ to: req.body.creatorEmail,
+ from: {
+ name: siteName,
+ email: contactEmail,
+ address: contactEmail
+ },
+ subject: `${siteName}: ${importedEventData.summary}`,
+ html,
+ };
+ switch (mailService) {
+ case 'sendgrid':
+ sgMail.send(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ case 'nodemailer':
+ nodemailerTransporter.sendMail(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ }
+ });
+ }
+ res.writeHead(302, {
+ 'Location': '/' + eventID + '?e=' + editToken
+ });
+ res.end();
+ })
+ .catch((err) => { res.send('Database error, please try again :('); addToLog("createEvent", "error", "Attempt to create event failed with error: " + err); });
+ }
+ else {
+ console.log("Files array is empty!")
+ res.status(500).end();
+ }
+});
+
+router.post('/neweventgroup', (req, res) => {
+ let eventGroupID = nanoid();
+ let editToken = randomstring.generate();
+ let eventGroupImageFilename = "";
+ if (req.files && Object.keys(req.files).length !== 0) {
+ let eventImageBuffer = req.files.imageUpload.data;
+ Jimp.read(eventImageBuffer, (err, img) => {
+ if (err) addToLog("Jimp", "error", "Attempt to edit image failed with error: " + err);
+ img
+ .resize(920, Jimp.AUTO) // resize
+ .quality(80) // set JPEG quality
+ .write('./public/events/' + eventGroupID + '.jpg'); // save
+ });
+ eventGroupImageFilename = eventGroupID + '.jpg';
+ }
+ const eventGroup = new EventGroup({
+ id: eventGroupID,
+ name: req.body.eventGroupName,
+ description: req.body.eventGroupDescription,
+ image: eventGroupImageFilename,
+ creatorEmail: req.body.creatorEmail,
+ url: req.body.eventGroupURL,
+ hostName: req.body.hostName,
+ editToken: editToken,
+ firstLoad: true
+ });
+ eventGroup.save()
+ .then(() => {
+ addToLog("createEventGroup", "success", "Event group " + eventGroupID + " created");
+ // Send email with edit link
+ if (req.body.creatorEmail && sendEmails) {
+ req.app.get('hbsInstance').renderView('./views/emails/createeventgroup.handlebars', { eventGroupID, editToken, siteName, siteLogo, domain, cache: true, layout: 'email.handlebars' }, function (err, html) {
+ const msg = {
+ to: req.body.creatorEmail,
+ from: {
+ name: siteName,
+ email: contactEmail,
+ address: contactEmail
+ },
+ subject: `${siteName}: ${req.body.eventGroupName}`,
+ html,
+ };
+ switch (mailService) {
+ case 'sendgrid':
+ sgMail.send(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ case 'nodemailer':
+ nodemailerTransporter.sendMail(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ }
+ });
+ }
+ res.writeHead(302, {
+ 'Location': '/group/' + eventGroupID + '?e=' + editToken
+ });
+ res.end();
+ })
+ .catch((err) => { res.send('Database error, please try again :( - ' + err); addToLog("createEvent", "error", "Attempt to create event failed with error: " + err); });
+});
+
+router.post('/verifytoken/event/:eventID', (req, res) => {
+ Event.findOne({
+ id: req.params.eventID,
+ editToken: req.body.editToken,
+ })
+ .then(event => {
+ if (event) return res.sendStatus(200);
+ return res.sendStatus(404);
+ })
+});
+
+router.post('/verifytoken/group/:eventGroupID', (req, res) => {
+ EventGroup.findOne({
+ id: req.params.eventGroupID,
+ editToken: req.body.editToken,
+ })
+ .then(group => {
+ if (group) return res.sendStatus(200);
+ return res.sendStatus(404);
+ })
+});
+
+
+router.post('/editevent/:eventID/:editToken', (req, res) => {
+ let submittedEditToken = req.params.editToken;
+ Event.findOne(({
+ id: req.params.eventID,
+ }))
+ .then(async (event) => {
+ if (event.editToken === submittedEditToken) {
+ // Token matches
+
+ // If there is a new image, upload that first
+ let eventID = req.params.eventID;
+ let eventImageFilename = event.image;
+ if (req.files && Object.keys(req.files).length !== 0) {
+ let eventImageBuffer = req.files.imageUpload.data;
+ Jimp.read(eventImageBuffer, (err, img) => {
+ if (err) throw err;
+ img
+ .resize(920, Jimp.AUTO) // resize
+ .quality(80) // set JPEG
+ .write('./public/events/' + eventID + '.jpg'); // save
+ });
+ eventImageFilename = eventID + '.jpg';
+ }
+ let startUTC = moment.tz(req.body.eventStart, 'D MMMM YYYY, hh:mm a', req.body.timezone);
+ let endUTC = moment.tz(req.body.eventEnd, 'D MMMM YYYY, hh:mm a', req.body.timezone);
+
+ let isPartOfEventGroup = false;
+ let eventGroup;
+ if (req.body.eventGroupCheckbox) {
+ eventGroup = await EventGroup.findOne({
+ id: req.body.eventGroupID,
+ editToken: req.body.eventGroupEditToken
+ })
+ if (eventGroup) {
+ isPartOfEventGroup = true;
+ }
+ }
+ const updatedEvent = {
+ name: req.body.eventName,
+ location: req.body.eventLocation,
+ start: startUTC,
+ end: endUTC,
+ timezone: req.body.timezone,
+ description: req.body.eventDescription,
+ url: req.body.eventURL,
+ hostName: req.body.hostName,
+ image: eventImageFilename,
+ usersCanAttend: req.body.joinCheckbox ? true : false,
+ showUsersList: req.body.guestlistCheckbox ? true : false,
+ usersCanComment: req.body.interactionCheckbox ? true : false,
+ maxAttendees: req.body.maxAttendeesCheckbox ? req.body.maxAttendees : null,
+ eventGroup: isPartOfEventGroup ? eventGroup._id : null,
+ activityPubActor: event.activityPubActor ? ap.updateActivityPubActor(JSON.parse(event.activityPubActor), req.body.eventDescription, req.body.eventName, req.body.eventLocation, eventImageFilename, startUTC, endUTC, req.body.timezone) : null,
+ activityPubEvent: event.activityPubEvent ? ap.updateActivityPubEvent(JSON.parse(event.activityPubEvent), req.body.eventName, req.body.startUTC, req.body.endUTC, req.body.timezone) : null,
+ }
+ let diffText = '<p>This event was just updated with new information.</p><ul>';
+ let displayDate;
+ if (event.name !== updatedEvent.name) {
+ diffText += `<li>the event name changed to ${updatedEvent.name}</li>`;
+ }
+ if (event.location !== updatedEvent.location) {
+ diffText += `<li>the location changed to ${updatedEvent.location}</li>`;
+ }
+ if (event.start.toISOString() !== updatedEvent.start.toISOString()) {
+ displayDate = moment.tz(updatedEvent.start, updatedEvent.timezone).format('dddd D MMMM YYYY h:mm a');
+ diffText += `<li>the start time changed to ${displayDate}</li>`;
+ }
+ if (event.end.toISOString() !== updatedEvent.end.toISOString()) {
+ displayDate = moment.tz(updatedEvent.end, updatedEvent.timezone).format('dddd D MMMM YYYY h:mm a');
+ diffText += `<li>the end time changed to ${displayDate}</li>`;
+ }
+ if (event.timezone !== updatedEvent.timezone) {
+ diffText += `<li>the time zone changed to ${updatedEvent.timezone}</li>`;
+ }
+ if (event.description !== updatedEvent.description) {
+ diffText += `<li>the event description changed</li>`;
+ }
+ diffText += `</ul>`;
+ Event.findOneAndUpdate({ id: req.params.eventID }, updatedEvent, function (err, raw) {
+ if (err) {
+ addToLog("editEvent", "error", "Attempt to edit event " + req.params.eventID + " failed with error: " + err);
+ res.send(err);
+ }
+ })
+ .then(() => {
+ addToLog("editEvent", "success", "Event " + req.params.eventID + " edited");
+ // send update to ActivityPub subscribers
+ Event.findOne({ id: req.params.eventID }, function (err, event) {
+ if (!event) return;
+ let attendees = event.attendees.filter(el => el.id);
+ if (!err) {
+ // broadcast an identical message to all followers, will show in home timeline
+ const guidObject = crypto.randomBytes(16).toString('hex');
+ const jsonObject = {
+ "@context": "https://www.w3.org/ns/activitystreams",
+ "id": `https://${domain}/${req.params.eventID}/m/${guidObject}`,
+ "name": `RSVP to ${event.name}`,
+ "type": "Note",
+ 'cc': 'https://www.w3.org/ns/activitystreams#Public',
+ "content": `${diffText} See here: <a href="https://${domain}/${req.params.eventID}">https://${domain}/${req.params.eventID}</a>`,
+ }
+ ap.broadcastCreateMessage(jsonObject, event.followers, eventID)
+ // also broadcast an Update profile message to all followers so that at least Mastodon servers will update the local profile information
+ const jsonUpdateObject = JSON.parse(event.activityPubActor);
+ ap.broadcastUpdateMessage(jsonUpdateObject, event.followers, eventID)
+ // also broadcast an Update/Event for any calendar apps that are consuming our Events
+ const jsonEventObject = JSON.parse(event.activityPubEvent);
+ ap.broadcastUpdateMessage(jsonEventObject, event.followers, eventID)
+
+ // DM to attendees
+ for (const attendee of attendees) {
+ const jsonObject = {
+ "@context": "https://www.w3.org/ns/activitystreams",
+ "name": `RSVP to ${event.name}`,
+ "type": "Note",
+ "content": `<span class=\"h-card\"><a href="${attendee.id}" class="u-url mention">@<span>${attendee.name}</span></a></span> ${diffText} See here: <a href="https://${domain}/${req.params.eventID}">https://${domain}/${req.params.eventID}</a>`,
+ "tag": [{ "type": "Mention", "href": attendee.id, "name": attendee.name }]
+ }
+ // send direct message to user
+ ap.sendDirectMessage(jsonObject, attendee.id, eventID);
+ }
+ }
+ })
+ // Send update to all attendees
+ if (sendEmails) {
+ Event.findOne({ id: req.params.eventID }).then((event) => {
+ const attendeeEmails = event.attendees.filter(o => o.status === 'attending' && o.email).map(o => o.email);
+ if (attendeeEmails.length) {
+ console.log("Sending emails to: " + attendeeEmails);
+ req.app.get('hbsInstance').renderView('./views/emails/editevent.handlebars', { diffText, eventID: req.params.eventID, siteName, siteLogo, domain, cache: true, layout: 'email.handlebars' }, function (err, html) {
+ const msg = {
+ to: attendeeEmails,
+ from: {
+ name: siteName,
+ email: contactEmail,
+ address: contactEmail
+ },
+ subject: `${siteName}: ${event.name} was just edited`,
+ html,
+ };
+ switch (mailService) {
+ case 'sendgrid':
+ sgMail.sendMultiple(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ case 'nodemailer':
+ nodemailerTransporter.sendMail(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ }
+ });
+ }
+ else {
+ console.log("Nothing to send!");
+ }
+ })
+ }
+ res.writeHead(302, {
+ 'Location': '/' + req.params.eventID + '?e=' + req.params.editToken
+ });
+ res.end();
+ })
+ .catch((err) => { console.error(err); res.send('Sorry! Something went wrong!'); addToLog("editEvent", "error", "Attempt to edit event " + req.params.eventID + " failed with error: " + err); });
+ }
+ else {
+ // Token doesn't match
+ res.send('Sorry! Something went wrong');
+ addToLog("editEvent", "error", "Attempt to edit event " + req.params.eventID + " failed with error: token does not match");
+ }
+ })
+ .catch((err) => { console.error(err); res.send('Sorry! Something went wrong!'); addToLog("editEvent", "error", "Attempt to edit event " + req.params.eventID + " failed with error: " + err); });
+});
+
+router.post('/editeventgroup/:eventGroupID/:editToken', (req, res) => {
+ let submittedEditToken = req.params.editToken;
+ EventGroup.findOne(({
+ id: req.params.eventGroupID,
+ }))
+ .then((eventGroup) => {
+ if (eventGroup.editToken === submittedEditToken) {
+ // Token matches
+
+ // If there is a new image, upload that first
+ let eventGroupID = req.params.eventGroupID;
+ let eventGroupImageFilename = eventGroup.image;
+ if (req.files && Object.keys(req.files).length !== 0) {
+ let eventImageBuffer = req.files.eventGroupImageUpload.data;
+ Jimp.read(eventImageBuffer, (err, img) => {
+ if (err) throw err;
+ img
+ .resize(920, Jimp.AUTO) // resize
+ .quality(80) // set JPEG
+ .write('./public/events/' + eventGroupID + '.jpg'); // save
+ });
+ eventGroupImageFilename = eventGroupID + '.jpg';
+ }
+ const updatedEventGroup = {
+ name: req.body.eventGroupName,
+ description: req.body.eventGroupDescription,
+ url: req.body.eventGroupURL,
+ hostName: req.body.hostName,
+ image: eventGroupImageFilename
+ }
+ EventGroup.findOneAndUpdate({ id: req.params.eventGroupID }, updatedEventGroup, function (err, raw) {
+ if (err) {
+ addToLog("editEventGroup", "error", "Attempt to edit event group " + req.params.eventGroupID + " failed with error: " + err);
+ res.send(err);
+ }
+ })
+ .then(() => {
+ addToLog("editEventGroup", "success", "Event group " + req.params.eventGroupID + " edited");
+ res.writeHead(302, {
+ 'Location': '/group/' + req.params.eventGroupID + '?e=' + req.params.editToken
+ });
+ res.end();
+ })
+ .catch((err) => { console.error(err); res.send('Sorry! Something went wrong!'); addToLog("editEventGroup", "error", "Attempt to edit event group " + req.params.eventGroupID + " failed with error: " + err); });
+ }
+ else {
+ // Token doesn't match
+ res.send('Sorry! Something went wrong');
+ addToLog("editEventGroup", "error", "Attempt to edit event group " + req.params.eventGroupID + " failed with error: token does not match");
+ }
+ })
+ .catch((err) => { console.error(err); res.send('Sorry! Something went wrong!'); addToLog("editEventGroup", "error", "Attempt to edit event group " + req.params.eventGroupID + " failed with error: " + err); });
+});
+
+router.post('/deleteimage/:eventID/:editToken', (req, res) => {
+ let submittedEditToken = req.params.editToken;
+ Event.findOne(({
+ id: req.params.eventID,
+ }))
+ .then((event) => {
+ if (event.editToken === submittedEditToken) {
+ // Token matches
+ if (event.image) {
+ eventImage = event.image;
+ } else {
+ res.status(500).send('This event doesn\'t have a linked image. What are you even doing');
+ }
+ fs.unlink(global.appRoot + '/public/events/' + eventImage, (err) => {
+ if (err) {
+ res.status(500).send(err);
+ addToLog("deleteEventImage", "error", "Attempt to delete event image for event " + req.params.eventID + " failed with error: " + err);
+ }
+ // Image removed
+ addToLog("deleteEventImage", "success", "Image for event " + req.params.eventID + " deleted");
+ event.image = "";
+ event.save()
+ .then(response => {
+ res.status(200).send('Success');
+ })
+ .catch(err => {
+ res.status(500).send(err);
+ addToLog("deleteEventImage", "error", "Attempt to delete event image for event " + req.params.eventID + " failed with error: " + err);
+ })
+ });
+ }
+ });
+});
+
+router.post('/deleteevent/:eventID/:editToken', (req, res) => {
+ let submittedEditToken = req.params.editToken;
+ let eventImage;
+ Event.findOne(({
+ id: req.params.eventID,
+ }))
+ .then((event) => {
+ if (event.editToken === submittedEditToken) {
+ // Token matches
+
+ let eventImage;
+ if (event.image) {
+ eventImage = event.image;
+ }
+
+ // broadcast a Delete profile message to all followers so that at least Mastodon servers will delete their local profile information
+ const guidUpdateObject = crypto.randomBytes(16).toString('hex');
+ const jsonUpdateObject = JSON.parse(event.activityPubActor);
+ // first broadcast AP messages, THEN delete from DB
+ ap.broadcastDeleteMessage(jsonUpdateObject, event.followers, req.params.eventID, function (statuses) {
+ Event.deleteOne({ id: req.params.eventID }, function (err, raw) {
+ if (err) {
+ res.send(err);
+ addToLog("deleteEvent", "error", "Attempt to delete event " + req.params.eventID + " failed with error: " + err);
+ }
+ })
+ .then(() => {
+ // Delete image
+ if (eventImage) {
+ fs.unlink(global.appRoot + '/public/events/' + eventImage, (err) => {
+ if (err) {
+ res.send(err);
+ addToLog("deleteEvent", "error", "Attempt to delete event image for event " + req.params.eventID + " failed with error: " + err);
+ }
+ // Image removed
+ addToLog("deleteEvent", "success", "Event " + req.params.eventID + " deleted");
+ })
+ }
+ res.writeHead(302, {
+ 'Location': '/'
+ });
+ res.end();
+
+ // Send emails here otherwise they don't exist lol
+ if (sendEmails) {
+ const attendeeEmails = event.attendees.filter(o => o.status === 'attending' && o.email).map(o => o.email);
+ if (attendeeEmails.length) {
+ console.log("Sending emails to: " + attendeeEmails);
+ req.app.get('hbsInstance').renderView('./views/emails/deleteevent.handlebars', { siteName, siteLogo, domain, eventName: event.name, cache: true, layout: 'email.handlebars' }, function (err, html) {
+ const msg = {
+ to: attendeeEmails,
+ from: {
+ name: siteName,
+ email: contactEmail,
+ address: contactEmail
+ },
+ subject: `${siteName}: ${event.name} was deleted`,
+ html,
+ };
+ switch (mailService) {
+ case 'sendgrid':
+ sgMail.sendMultiple(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ case 'nodemailer':
+ nodemailerTransporter.sendMail(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ }
+ });
+ }
+ else {
+ console.log("Nothing to send!");
+ }
+ }
+ })
+ .catch((err) => { res.send('Sorry! Something went wrong (error deleting): ' + err); addToLog("deleteEvent", "error", "Attempt to delete event " + req.params.eventID + " failed with error: " + err); });
+ });
+ }
+ else {
+ // Token doesn't match
+ res.send('Sorry! Something went wrong');
+ addToLog("deleteEvent", "error", "Attempt to delete event " + req.params.eventID + " failed with error: token does not match");
+ }
+ })
+ .catch((err) => { res.send('Sorry! Something went wrong: ' + err); addToLog("deleteEvent", "error", "Attempt to delete event " + req.params.eventID + " failed with error: " + err); });
+});
+
+router.post('/deleteeventgroup/:eventGroupID/:editToken', (req, res) => {
+ let submittedEditToken = req.params.editToken;
+ EventGroup.findOne(({
+ id: req.params.eventGroupID,
+ }))
+ .then(async (eventGroup) => {
+ if (eventGroup.editToken === submittedEditToken) {
+ // Token matches
+
+ let linkedEvents = await Event.find({ eventGroup: eventGroup._id });
+
+ let linkedEventIDs = linkedEvents.map(event => event._id);
+ let eventGroupImage = false;
+ if (eventGroup.image) {
+ eventGroupImage = eventGroup.image;
+ }
+
+ EventGroup.deleteOne({ id: req.params.eventGroupID }, function (err, raw) {
+ if (err) {
+ res.send(err);
+ addToLog("deleteEventGroup", "error", "Attempt to delete event group " + req.params.eventGroupID + " failed with error: " + err);
+ }
+ })
+ .then(() => {
+ // Delete image
+ if (eventGroupImage) {
+ fs.unlink(global.appRoot + '/public/events/' + eventGroupImage, (err) => {
+ if (err) {
+ res.send(err);
+ addToLog("deleteEventGroup", "error", "Attempt to delete event image for event group " + req.params.eventGroupID + " failed with error: " + err);
+ }
+ })
+ }
+ Event.update({ _id: { $in: linkedEventIDs } }, { $set: { eventGroup: null } }, { multi: true })
+ .then(response => {
+ console.log(response);
+ addToLog("deleteEventGroup", "success", "Event group " + req.params.eventGroupID + " deleted");
+ res.writeHead(302, {
+ 'Location': '/'
+ });
+ res.end();
+ })
+ .catch((err) => { res.send('Sorry! Something went wrong (error deleting): ' + err); addToLog("deleteEventGroup", "error", "Attempt to delete event group " + req.params.eventGroupID + " failed with error: " + err); });
+ })
+ .catch((err) => { res.send('Sorry! Something went wrong (error deleting): ' + err); addToLog("deleteEventGroup", "error", "Attempt to delete event group " + req.params.eventGroupID + " failed with error: " + err); });
+ }
+ else {
+ // Token doesn't match
+ res.send('Sorry! Something went wrong');
+ addToLog("deleteEventGroup", "error", "Attempt to delete event group " + req.params.eventGroupID + " failed with error: token does not match");
+ }
+ })
+ .catch((err) => { res.send('Sorry! Something went wrong: ' + err); addToLog("deleteEventGroup", "error", "Attempt to delete event group " + req.params.eventGroupID + " failed with error: " + err); });
+});
+
+router.post('/attendee/provision', async (req, res) => {
+ const removalPassword = niceware.generatePassphrase(6).join('-');
+ const newAttendee = {
+ status: 'provisioned',
+ removalPassword,
+ created: Date.now(),
+ };
+
+ const event = await Event.findOne({ id: req.query.eventID }).catch(e => {
+ addToLog("provisionEventAttendee", "error", "Attempt to provision attendee in event " + req.query.eventID + " failed with error: " + e);
+ return res.sendStatus(500);
+ });
+
+ if (!event) {
+ return res.sendStatus(404);
+ }
+
+ event.attendees.push(newAttendee);
+ await event.save().catch(e => {
+ console.log(e);
+ addToLog("provisionEventAttendee", "error", "Attempt to provision attendee in event " + req.query.eventID + " failed with error: " + e);
+ return res.sendStatus(500);
+ });
+ addToLog("provisionEventAttendee", "success", "Attendee provisioned in event " + req.query.eventID);
+
+ // Return the removal password and the number of free spots remaining
+ let freeSpots;
+ if (event.maxAttendees !== null && event.maxAttendees !== undefined) {
+ freeSpots = event.maxAttendees - event.attendees.reduce((acc, a) => acc + (a.status === 'attending' ? (a.number || 1) : 0), 0);
+ } else {
+ freeSpots = undefined;
+ }
+ return res.json({ removalPassword, freeSpots });
+});
+
+router.post('/attendevent/:eventID', async (req, res) => {
+ // Do not allow empty removal passwords
+ if (!req.body.removalPassword) {
+ return res.sendStatus(500);
+ }
+ const event = await Event.findOne({ id: req.params.eventID }).catch(e => {
+ addToLog("attendEvent", "error", "Attempt to attend event " + req.params.eventID + " failed with error: " + e);
+ return res.sendStatus(500);
+ });
+ if (!event) {
+ return res.sendStatus(404);
+ }
+ const attendee = event.attendees.find(a => a.removalPassword === req.body.removalPassword);
+ if (!attendee) {
+ return res.sendStatus(404);
+ }
+ // Do we have enough free spots in this event to accomodate this attendee?
+ // First, check if the event has a max number of attendees
+ if (event.maxAttendees !== null && event.maxAttendees !== undefined) {
+ const freeSpots = event.maxAttendees - event.attendees.reduce((acc, a) => acc + (a.status === 'attending' ? (a.number || 1) : 0), 0);
+ if (req.body.attendeeNumber > freeSpots) {
+ return res.sendStatus(403);
+ }
+ }
+
+ Event.findOneAndUpdate({ id: req.params.eventID, 'attendees.removalPassword': req.body.removalPassword }, {
+ "$set": {
+ "attendees.$.status": "attending",
+ "attendees.$.name": req.body.attendeeName,
+ "attendees.$.email": req.body.attendeeEmail,
+ "attendees.$.number": req.body.attendeeNumber,
+ }
+ }).then((event) => {
+ addToLog("addEventAttendee", "success", "Attendee added to event " + req.params.eventID);
+ if (sendEmails) {
+ if (req.body.attendeeEmail) {
+ req.app.get('hbsInstance').renderView('./views/emails/addeventattendee.handlebars', { eventID: req.params.eventID, siteName, siteLogo, domain, removalPassword: req.body.removalPassword, cache: true, layout: 'email.handlebars' }, function (err, html) {
+ const msg = {
+ to: req.body.attendeeEmail,
+ from: {
+ name: siteName,
+ email: contactEmail,
+ },
+ subject: `${siteName}: You're RSVPed to ${event.name}`,
+ html,
+ };
+ switch (mailService) {
+ case 'sendgrid':
+ sgMail.send(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ case 'nodemailer':
+ nodemailerTransporter.sendMail(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ }
+ });
+ }
+ }
+ res.redirect(`/${req.params.eventID}`);
+ })
+ .catch((error) => {
+ res.send('Database error, please try again :(');
+ addToLog("addEventAttendee", "error", "Attempt to add attendee to event " + req.params.eventID + " failed with error: " + error);
+ });
+});
+
+router.post('/unattendevent/:eventID', (req, res) => {
+ const removalPassword = req.body.removalPassword;
+ // Don't allow blank removal passwords!
+ if (!removalPassword) {
+ return res.sendStatus(500);
+ }
+
+ Event.update(
+ { id: req.params.eventID },
+ { $pull: { attendees: { removalPassword } } }
+ )
+ .then(response => {
+ console.log(response)
+ addToLog("unattendEvent", "success", "Attendee removed self from event " + req.params.eventID);
+ if (sendEmails) {
+ if (req.body.attendeeEmail) {
+ req.app.get('hbsInstance').renderView('./views/emails/unattendevent.handlebars', { eventID: req.params.eventID, siteName, siteLogo, domain, cache: true, layout: 'email.handlebars' }, function (err, html) {
+ const msg = {
+ to: req.body.attendeeEmail,
+ from: {
+ name: siteName,
+ email: contactEmail,
+ },
+ subject: `${siteName}: You have been removed from an event`,
+ html,
+ };
+ switch (mailService) {
+ case 'sendgrid':
+ sgMail.send(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ case 'nodemailer':
+ nodemailerTransporter.sendMail(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ }
+ });
+ }
+ }
+ res.writeHead(302, {
+ 'Location': '/' + req.params.eventID
+ });
+ res.end();
+ })
+ .catch((err) => {
+ res.send('Database error, please try again :('); addToLog("removeEventAttendee", "error", "Attempt to remove attendee from event " + req.params.eventID + " failed with error: " + err);
+ });
+});
+
+// this is a one-click unattend that requires a secret URL that only the person who RSVPed over
+// activitypub knows
+router.get('/oneclickunattendevent/:eventID/:attendeeID', (req, res) => {
+ // Mastodon will "click" links that sent to its users, presumably as a prefetch?
+ // Anyway, this ignores the automated clicks that are done without the user's knowledge
+ if (req.headers['user-agent'] && req.headers['user-agent'].includes('Mastodon')) {
+ return res.sendStatus(200);
+ }
+ Event.update(
+ { id: req.params.eventID },
+ { $pull: { attendees: { _id: req.params.attendeeID } } }
+ )
+ .then(response => {
+ addToLog("oneClickUnattend", "success", "Attendee removed via one click unattend " + req.params.eventID);
+ if (sendEmails) {
+ // currently this is never called because we don't have the email address
+ if (req.body.attendeeEmail) {
+ req.app.get('hbsInstance').renderView('./views/emails/removeeventattendee.handlebars', { eventName: req.params.eventName, siteName, domain, cache: true, layout: 'email.handlebars' }, function (err, html) {
+ const msg = {
+ to: req.body.attendeeEmail,
+ from: {
+ name: siteName,
+ email: contactEmail,
+ },
+ subject: `${siteName}: You have been removed from an event`,
+ html,
+ };
+ switch (mailService) {
+ case 'sendgrid':
+ sgMail.send(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ case 'nodemailer':
+ nodemailerTransporter.sendMail(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ }
+ });
+ }
+ }
+ res.writeHead(302, {
+ 'Location': '/' + req.params.eventID
+ });
+ res.end();
+ })
+ .catch((err) => {
+ res.send('Database error, please try again :('); addToLog("removeEventAttendee", "error", "Attempt to remove attendee by admin from event " + req.params.eventID + " failed with error: " + err);
+ });
+});
+
+router.post('/removeattendee/:eventID/:attendeeID', (req, res) => {
+ Event.update(
+ { id: req.params.eventID },
+ { $pull: { attendees: { _id: req.params.attendeeID } } }
+ )
+ .then(response => {
+ console.log(response)
+ addToLog("removeEventAttendee", "success", "Attendee removed by admin from event " + req.params.eventID);
+ if (sendEmails) {
+ // currently this is never called because we don't have the email address
+ if (req.body.attendeeEmail) {
+ req.app.get('hbsInstance').renderView('./views/emails/removeeventattendee.handlebars', { eventName: req.params.eventName, siteName, siteLogo, domain, cache: true, layout: 'email.handlebars' }, function (err, html) {
+ const msg = {
+ to: req.body.attendeeEmail,
+ from: {
+ name: siteName,
+ email: contactEmail,
+ },
+ subject: `${siteName}: You have been removed from an event`,
+ html,
+ };
+ switch (mailService) {
+ case 'sendgrid':
+ sgMail.send(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ case 'nodemailer':
+ nodemailerTransporter.sendMail(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ }
+ });
+ }
+ }
+ res.writeHead(302, {
+ 'Location': '/' + req.params.eventID
+ });
+ res.end();
+ })
+ .catch((err) => {
+ res.send('Database error, please try again :('); addToLog("removeEventAttendee", "error", "Attempt to remove attendee by admin from event " + req.params.eventID + " failed with error: " + err);
+ });
+});
+
+/*
+ * Create an email subscription on an event group.
+ */
+router.post('/subscribe/:eventGroupID', (req, res) => {
+ const subscriber = {
+ email: req.body.emailAddress,
+ };
+ if (!subscriber.email) {
+ return res.sendStatus(500);
+ }
+
+ EventGroup.findOne(({
+ id: req.params.eventGroupID,
+ }))
+ .then((eventGroup) => {
+ if (!eventGroup) {
+ return res.sendStatus(404);
+ }
+ eventGroup.subscribers.push(subscriber);
+ eventGroup.save();
+ if (sendEmails) {
+ req.app.get('hbsInstance').renderView('./views/emails/subscribed.handlebars', { eventGroupName: eventGroup.name, eventGroupID: eventGroup.id, emailAddress: encodeURIComponent(subscriber.email), siteName, siteLogo, domain, cache: true, layout: 'email.handlebars' }, function (err, html) {
+ const msg = {
+ to: subscriber.email,
+ from: {
+ name: siteName,
+ email: contactEmail,
+ },
+ subject: `${siteName}: You have subscribed to an event group`,
+ html,
+ };
+ switch (mailService) {
+ case 'sendgrid':
+ sgMail.send(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ case 'nodemailer':
+ nodemailerTransporter.sendMail(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ }
+ });
+ }
+ return res.redirect(`/group/${eventGroup.id}`)
+ })
+ .catch((error) => {
+ addToLog("addSubscription", "error", "Attempt to subscribe " + req.body.emailAddress + " to event group " + req.params.eventGroupID + " failed with error: " + error);
+ return res.sendStatus(500);
+ });
+});
+
+/*
+ * Delete an existing email subscription on an event group.
+ */
+router.get('/unsubscribe/:eventGroupID', (req, res) => {
+ const email = req.query.email;
+ console.log(email);
+ if (!email) {
+ return res.sendStatus(500);
+ }
+
+ EventGroup.update(
+ { id: req.params.eventGroupID },
+ { $pull: { subscribers: { email } } }
+ )
+ .then(response => {
+ return res.redirect('/');
+ })
+ .catch((error) => {
+ addToLog("removeSubscription", "error", "Attempt to unsubscribe " + req.query.email + " from event group " + req.params.eventGroupID + " failed with error: " + error);
+ return res.sendStatus(500);
+ });
+});
+
+router.post('/post/comment/:eventID', (req, res) => {
+ let commentID = nanoid();
+ const newComment = {
+ id: commentID,
+ author: req.body.commentAuthor,
+ content: req.body.commentContent,
+ timestamp: moment()
+ };
+
+ Event.findOne({
+ id: req.params.eventID,
+ }, function (err, event) {
+ if (!event) return;
+ event.comments.push(newComment);
+ event.save()
+ .then(() => {
+ addToLog("addEventComment", "success", "Comment added to event " + req.params.eventID);
+ // broadcast an identical message to all followers, will show in their home timeline
+ // and in the home timeline of the event
+ const guidObject = crypto.randomBytes(16).toString('hex');
+ const jsonObject = {
+ "@context": "https://www.w3.org/ns/activitystreams",
+ "id": `https://${domain}/${req.params.eventID}/m/${guidObject}`,
+ "name": `Comment on ${event.name}`,
+ "type": "Note",
+ 'cc': 'https://www.w3.org/ns/activitystreams#Public',
+ "content": `<p>${req.body.commentAuthor} commented: ${req.body.commentContent}.</p><p><a href="https://${domain}/${req.params.eventID}/">See the full conversation here.</a></p>`,
+ }
+ ap.broadcastCreateMessage(jsonObject, event.followers, req.params.eventID)
+ if (sendEmails) {
+ Event.findOne({ id: req.params.eventID }).then((event) => {
+ const attendeeEmails = event.attendees.filter(o => o.status === 'attending' && o.email).map(o => o.email);
+ if (attendeeEmails.length) {
+ console.log("Sending emails to: " + attendeeEmails);
+ req.app.get('hbsInstance').renderView('./views/emails/addeventcomment.handlebars', { siteName, siteLogo, domain, eventID: req.params.eventID, commentAuthor: req.body.commentAuthor, cache: true, layout: 'email.handlebars' }, function (err, html) {
+ const msg = {
+ to: attendeeEmails,
+ from: {
+ name: siteName,
+ email: contactEmail,
+ },
+ subject: `${siteName}: New comment in ${event.name}`,
+ html,
+ };
+ switch (mailService) {
+ case 'sendgrid':
+ sgMail.sendMultiple(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ case 'nodemailer':
+ nodemailerTransporter.sendMail(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ }
+ });
+ }
+ else {
+ console.log("Nothing to send!");
+ }
+ });
+ }
+ res.writeHead(302, {
+ 'Location': '/' + req.params.eventID
+ });
+ res.end();
+ })
+ .catch((err) => { res.send('Database error, please try again :(' + err); addToLog("addEventComment", "error", "Attempt to add comment to event " + req.params.eventID + " failed with error: " + err); });
+ });
+});
+
+router.post('/post/reply/:eventID/:commentID', (req, res) => {
+ let replyID = nanoid();
+ let commentID = req.params.commentID;
+ const newReply = {
+ id: replyID,
+ author: req.body.replyAuthor,
+ content: req.body.replyContent,
+ timestamp: moment()
+ };
+ Event.findOne({
+ id: req.params.eventID,
+ }, function (err, event) {
+ if (!event) return;
+ var parentComment = event.comments.id(commentID);
+ parentComment.replies.push(newReply);
+ event.save()
+ .then(() => {
+ addToLog("addEventReply", "success", "Reply added to comment " + commentID + " in event " + req.params.eventID);
+ // broadcast an identical message to all followers, will show in their home timeline
+ const guidObject = crypto.randomBytes(16).toString('hex');
+ const jsonObject = {
+ "@context": "https://www.w3.org/ns/activitystreams",
+ "id": `https://${domain}/${req.params.eventID}/m/${guidObject}`,
+ "name": `Comment on ${event.name}`,
+ "type": "Note",
+ 'cc': 'https://www.w3.org/ns/activitystreams#Public',
+ "content": `<p>${req.body.replyAuthor} commented: ${req.body.replyContent}</p><p><a href="https://${domain}/${req.params.eventID}/">See the full conversation here.</a></p>`,
+ }
+ ap.broadcastCreateMessage(jsonObject, event.followers, req.params.eventID)
+ if (sendEmails) {
+ Event.findOne({ id: req.params.eventID }).then((event) => {
+ const attendeeEmails = event.attendees.filter(o => o.status === 'attending' && o.email).map(o => o.email);
+ if (attendeeEmails.length) {
+ console.log("Sending emails to: " + attendeeEmails);
+ req.app.get('hbsInstance').renderView('./views/emails/addeventcomment.handlebars', { siteName, siteLogo, domain, eventID: req.params.eventID, commentAuthor: req.body.replyAuthor, cache: true, layout: 'email.handlebars' }, function (err, html) {
+ const msg = {
+ to: attendeeEmails,
+ from: {
+ name: siteName,
+ email: contactEmail,
+ },
+ subject: `${siteName}: New comment in ${event.name}`,
+ html,
+ };
+ switch (mailService) {
+ case 'sendgrid':
+ sgMail.sendMultiple(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ case 'nodemailer':
+ nodemailerTransporter.sendMail(msg).catch(e => {
+ console.error(e.toString());
+ res.status(500).end();
+ });
+ break;
+ }
+ });
+ }
+ else {
+ console.log("Nothing to send!");
+ }
+ });
+ }
+ res.writeHead(302, {
+ 'Location': '/' + req.params.eventID
+ });
+ res.end();
+ })
+ .catch((err) => { res.send('Database error, please try again :('); addToLog("addEventReply", "error", "Attempt to add reply to comment " + commentID + " in event " + req.params.eventID + " failed with error: " + err); });
+ });
+});
+
+router.post('/deletecomment/:eventID/:commentID/:editToken', (req, res) => {
+ let submittedEditToken = req.params.editToken;
+ Event.findOne(({
+ id: req.params.eventID,
+ }))
+ .then((event) => {
+ if (event.editToken === submittedEditToken) {
+ // Token matches
+ event.comments.id(req.params.commentID).remove();
+ event.save()
+ .then(() => {
+ addToLog("deleteComment", "success", "Comment deleted from event " + req.params.eventID);
+ res.writeHead(302, {
+ 'Location': '/' + req.params.eventID + '?e=' + req.params.editToken
+ });
+ res.end();
+ })
+ .catch((err) => { res.send('Sorry! Something went wrong (error deleting): ' + err); addToLog("deleteComment", "error", "Attempt to delete comment " + req.params.commentID + "from event " + req.params.eventID + " failed with error: " + err); });
+ }
+ else {
+ // Token doesn't match
+ res.send('Sorry! Something went wrong');
+ addToLog("deleteComment", "error", "Attempt to delete comment " + req.params.commentID + "from event " + req.params.eventID + " failed with error: token does not match");
+ }
+ })
+ .catch((err) => { res.send('Sorry! Something went wrong: ' + err); addToLog("deleteComment", "error", "Attempt to delete comment " + req.params.commentID + "from event " + req.params.eventID + " failed with error: " + err); });
+});
+
+router.post('/activitypub/inbox', (req, res) => {
+ if (!isFederated) return res.sendStatus(404);
+ // validate the incoming message
+ const signature = req.get('Signature');
+ let signature_header = signature.split(',').map(pair => {
+ return pair.split('=').map(value => {
+ return value.replace(/^"/g, '').replace(/"$/g, '')
+ });
+ }).reduce((acc, el) => {
+ acc[el[0]] = el[1];
+ return acc;
+ }, {});
+
+ // get the actor
+ // TODO if this is a Delete for an Actor this won't work
+ request({
+ url: signature_header.keyId,
+ headers: {
+ 'Accept': 'application/activity+json',
+ 'Content-Type': 'application/activity+json'
+ }
+ }, function (error, response, actor) {
+ let publicKey = '';
+
+ try {
+ if (JSON.parse(actor).publicKey) {
+ publicKey = JSON.parse(actor).publicKey.publicKeyPem;
+ }
+ }
+ catch (err) {
+ return res.status(500).send('Actor could not be parsed' + err);
+ }
+
+ let comparison_string = signature_header.headers.split(' ').map(header => {
+ if (header === '(request-target)') {
+ return '(request-target): post /activitypub/inbox';
+ }
+ else {
+ return `${header}: ${req.get(header)}`
+ }
+ }).join('\n');
+
+ const verifier = crypto.createVerify('RSA-SHA256')
+ verifier.update(comparison_string, 'ascii')
+ const publicKeyBuf = new Buffer(publicKey, 'ascii')
+ const signatureBuf = new Buffer(signature_header.signature, 'base64')
+ try {
+ const result = verifier.verify(publicKeyBuf, signatureBuf)
+ if (result) {
+ // actually process the ActivityPub message now that it's been verified
+ ap.processInbox(req, res);
+ }
+ else {
+ return res.status(401).send('Signature could not be verified.');
+ }
+ }
+ catch (err) {
+ return res.status(401).send('Signature could not be verified: ' + err);
+ }
+ });
+});
+
+router.use(function (req, res, next) {
+ res.status(404);
+ res.render('404', { url: req.url });
+ return;
+});
+
+addToLog("startup", "success", "Started up successfully");
+
+module.exports = router;
diff --git a/src/start.js b/src/start.js
new file mode 100755
index 0000000..363062e
--- /dev/null
+++ b/src/start.js
@@ -0,0 +1,32 @@
+require('dotenv').config();
+
+const path = require('path');
+
+const mongoose = require('mongoose');
+
+const databaseCredentials = require('./config/database.js');
+const port = require('./config/domain.js').port;
+
+mongoose.connect(databaseCredentials.url, { useNewUrlParser: true, useUnifiedTopology: true });
+mongoose.set('useCreateIndex', true);
+mongoose.Promise = global.Promise;
+mongoose.connection
+ .on('connected', () => {
+ console.log('Mongoose connection open!');
+ })
+ .on('error', (err) => {
+ console.log('Connection error: ${err.message}');
+ });
+
+
+require('./models/Event');
+require('./models/Log');
+require('./models/EventGroup');
+
+const app = require('./app.js');
+
+global.appRoot = path.resolve(__dirname);
+
+const server = app.listen(port, () => {
+ console.log(`Welcome to gathio! The app is now running on http://localhost:${server.address().port}`);
+});