mirror of
https://framagit.org/les/gancio.git
synced 2025-02-01 00:52:01 +01:00
106 lines
2.8 KiB
JavaScript
106 lines
2.8 KiB
JavaScript
const config = require('config')
|
|
const moment = require('moment-timezone')
|
|
const htmlToText = require('html-to-text')
|
|
|
|
const { Model, DataTypes } = require('sequelize')
|
|
const sequelize = require('./index')
|
|
|
|
const Resource = require('./resource')
|
|
const Notification = require('./notification')
|
|
const Place = require('./place')
|
|
const User = require('./user')
|
|
const Tag = require('./tag')
|
|
|
|
class Event extends Model {}
|
|
|
|
Event.init({
|
|
id: {
|
|
allowNull: false,
|
|
type: DataTypes.INTEGER,
|
|
primaryKey: true,
|
|
autoIncrement: true
|
|
},
|
|
title: DataTypes.STRING,
|
|
slug: DataTypes.STRING,
|
|
description: DataTypes.TEXT,
|
|
multidate: DataTypes.BOOLEAN,
|
|
start_datetime: {
|
|
type: DataTypes.INTEGER,
|
|
index: true
|
|
},
|
|
end_datetime: {
|
|
type: DataTypes.INTEGER,
|
|
index: true
|
|
},
|
|
image_path: DataTypes.STRING,
|
|
is_visible: DataTypes.BOOLEAN,
|
|
recurrent: DataTypes.JSON,
|
|
likes: { type: DataTypes.JSON, defaultValue: [] },
|
|
boost: { type: DataTypes.JSON, defaultValue: [] }
|
|
}, { sequelize, modelName: 'event' })
|
|
|
|
Event.belongsTo(Place)
|
|
Place.hasMany(Event)
|
|
|
|
Event.belongsTo(User)
|
|
Event.belongsToMany(Tag, { through: 'event_tags' })
|
|
|
|
Event.belongsToMany(Notification, { through: 'event_notification' })
|
|
Notification.belongsToMany(Event, { through: 'event_notification' })
|
|
|
|
Event.hasMany(Resource)
|
|
Resource.belongsTo(Event)
|
|
Event.hasMany(Event, { as: 'child', foreignKey: 'parentId' })
|
|
Event.belongsTo(Event, { as: 'parent' })
|
|
|
|
Event.prototype.toAP = function (username, locale, follower = []) {
|
|
const tags = this.tags && this.tags.map(t => t.tag.replace(/[ #]/g, '_'))
|
|
|
|
const plainDescription = htmlToText.fromString(this.description.replace('\n', '').slice(0, 1000))
|
|
const summary = `
|
|
📍 ${this.place.name}
|
|
📅 ${moment.unix(this.start_datetime).locale(locale).format('dddd, D MMMM (HH:mm)')}
|
|
|
|
${plainDescription}
|
|
|
|
${tags.map(t => `#${t}`)}
|
|
|
|
`
|
|
|
|
const attachment = []
|
|
if (this.image_path) {
|
|
attachment.push({
|
|
type: 'Document',
|
|
mediaType: 'image/webp',
|
|
url: `${config.baseurl}/media/${this.image_path}`,
|
|
name: null,
|
|
blurHash: null
|
|
})
|
|
}
|
|
|
|
return {
|
|
id: `${config.baseurl}/federation/m/${this.id}`,
|
|
name: this.title,
|
|
url: `${config.baseurl}/event/${this.id}`,
|
|
type: 'Event',
|
|
startTime: moment.unix(this.start_datetime).locale(locale).format(),
|
|
endTime: moment.unix(this.end_datetime).locale(locale).format(),
|
|
location: {
|
|
name: this.place.name
|
|
},
|
|
attachment,
|
|
tag: tags.map(tag => ({
|
|
type: 'Hashtag',
|
|
name: '#' + tag,
|
|
href: '/tags/' + tag
|
|
})),
|
|
published: this.createdAt,
|
|
attributedTo: `${config.baseurl}/federation/u/${username}`,
|
|
to: follower || [],
|
|
cc: ['https://www.w3.org/ns/activitystreams#Public', `${config.baseurl}/federation/u/${username}/followers`],
|
|
summary,
|
|
sensitive: false
|
|
}
|
|
}
|
|
|
|
module.exports = Event
|