publish in AP as type: Event

This commit is contained in:
lesion
2021-11-09 13:08:11 +01:00
parent 965c143acd
commit 11004b8759

View File

@@ -75,15 +75,10 @@ Event.prototype.toAPNote = function (username, locale, to = []) {
const tags = this.tags && this.tags.map(t => t.tag.replace(/[ #]/g, '_')) const tags = this.tags && this.tags.map(t => t.tag.replace(/[ #]/g, '_'))
const plainDescription = htmlToText(this.description && this.description.replace('\n', '').slice(0, 1000)) const plainDescription = htmlToText(this.description && this.description.replace('\n', '').slice(0, 1000))
const content = ` const content = `
${this.title}<br/><br/> 📍 ${this.place && this.place.name}
📍 ${this.place && this.place.name}<br/> 📅 ${moment.unix(this.start_datetime).locale(locale).format('dddd, D MMMM (HH:mm)')}
📅 ${moment.unix(this.start_datetime).locale(locale).format('dddd, D MMMM (HH:mm)')}<br/><br/>
${plainDescription}<br/><br/> ${plainDescription}
<a href='${config.baseurl}/event/${this.slug || this.id}'>${config.baseurl}/event/${this.slug || this.id}</a><br/>
${tags && tags.map(t => `#${t}`)}
` `
const attachment = [] const attachment = []
@@ -97,31 +92,29 @@ Event.prototype.toAPNote = function (username, locale, to = []) {
focalPoint: this.media[0].focalPoint || [0, 0] focalPoint: this.media[0].focalPoint || [0, 0]
}) })
} }
// if (this.image_path) {
// }
return { return {
id: `${config.baseurl}/federation/m/${this.id}`, id: `${config.baseurl}/federation/m/${this.id}`,
// name: this.title, name: this.title,
url: `${config.baseurl}/event/${this.id}`, url: `${config.baseurl}/event/${this.slug || this.id}`,
type: 'Note', type: 'Event',
// startTime: moment.unix(this.start_datetime).locale(locale).format(), startTime: moment.unix(this.start_datetime).locale(locale).format(),
// endTime: moment.unix(this.end_datetime).locale(locale).format(), endTime: moment.unix(this.end_datetime).locale(locale).format(),
// location: { location: {
// name: this.place && this.place.name name: this.place && this.place.name
// }, },
attachment, attachment,
// tag: tags && tags.map(tag => ({ tag: tags && tags.map(tag => ({
// type: 'Hashtag', type: 'Hashtag',
// name: '#' + tag, name: '#' + tag,
// href: '/tags/' + tag href: '/tags/' + tag
// })), })),
published: dayjs(this.createdAt).utc().format(), published: dayjs(this.createdAt).utc().format(),
attributedTo: `${config.baseurl}/federation/u/${username}`, attributedTo: `${config.baseurl}/federation/u/${username}`,
to: 'https://www.w3.org/ns/activitystreams#Public', to: ['https://www.w3.org/ns/activitystreams#Public'],
cc: [`${config.baseurl}/federation/u/${username}/followers`], cc: [`${config.baseurl}/federation/u/${username}/followers`],
content, content,
summary: null summary: content
} }
} }