Skip to content

Commit

Permalink
fix: urls in posts and announces
Browse files Browse the repository at this point in the history
  • Loading branch information
julianlam committed Feb 7, 2024
1 parent a61e7fe commit 4fb6574
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
11 changes: 9 additions & 2 deletions public/src/modules/helpers.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ module.exports = function (utils, Benchpress, relative_path) {
userAgentIcons,
buildAvatar,
increment,
generatePostUrl,
generateRepliedTo,
generateWrote,
isoTimeToLocaleString,
Expand Down Expand Up @@ -329,18 +330,24 @@ module.exports = function (utils, Benchpress, relative_path) {
return String(value + parseInt(inc, 10));
}

function generatePostUrl(post, property = 'pid') {
return utils.isNumber(post[property]) ? `${relative_path}/post/${post[property]}` : post[property];
}

function generateRepliedTo(post, timeagoCutoff) {
const displayname = post.parent && post.parent.displayname ?
post.parent.displayname : '[[global:guest]]';
const isBeforeCutoff = post.timestamp < (Date.now() - (timeagoCutoff * oneDayInMs));
const langSuffix = isBeforeCutoff ? 'on' : 'ago';
return `[[topic:replied-to-user-${langSuffix}, ${post.toPid}, ${relative_path}/post/${post.toPid}, ${displayname}, ${relative_path}/post/${post.pid}, ${post.timestampISO}]]`;
const url = generatePostUrl(post, 'toPid');
return `[[topic:replied-to-user-${langSuffix}, ${post.toPid}, ${url}, ${displayname}, ${relative_path}/post/${post.pid}, ${post.timestampISO}]]`;
}

function generateWrote(post, timeagoCutoff) {
const isBeforeCutoff = post.timestamp < (Date.now() - (timeagoCutoff * oneDayInMs));
const langSuffix = isBeforeCutoff ? 'on' : 'ago';
return `[[topic:wrote-${langSuffix}, ${relative_path}/post/${post.pid}, ${post.timestampISO}]]`;
const url = generatePostUrl(post);
return `[[topic:wrote-${langSuffix}, ${url}, ${post.timestampISO}]]`;
}

function isoTimeToLocaleString(isoTime, locale = 'en-GB') {
Expand Down
3 changes: 2 additions & 1 deletion src/activitypub/inbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const user = require('../user');
const posts = require('../posts');
const topics = require('../topics');
const categories = require('../categories');
const utils = require('../utils');
const activitypub = require('.');

const helpers = require('./helpers');
Expand Down Expand Up @@ -115,7 +116,7 @@ inbox.announce = async (req) => {
await topics.events.log(tid, {
type: 'announce',
uid: actor,
href: `/post/${pid}`,
href: utils.isNumber(pid) ? `/post/${pid}` : pid,
pid,
timestamp,
});
Expand Down

0 comments on commit 4fb6574

Please sign in to comment.