color, weigth, locale, config

This commit is contained in:
lesion
2019-06-26 14:44:21 +02:00
parent b093dae3f3
commit 1087723be8
27 changed files with 188 additions and 86 deletions

View File

@@ -17,7 +17,7 @@ const botController = {
access_token,
api_url: `https://${instance}/api/v1`
})
const listener = botController.bot.stream('/streaming/direct')
const listener = botController.bot.stream('/streaming/public')
listener.on('message', botController.message)
listener.on('error', botController.error)
// const botUsers = await User.findAll({ where: { mastodon_auth: { [Op.ne]: null } } })
@@ -51,12 +51,13 @@ ${event.description.length > 200 ? event.description.substr(0, 200) + '...' : ev
media = await bot.post('media', { file: fs.createReadStream(file) })
}
}
return botController.bot.post('/statuses', { status, visibility: 'direct', media_ids: media ? [media.data.id] : [] })
return botController.bot.post('/statuses', { status, media_ids: media ? [media.data.id] : [] })
},
// TOFIX: enable message deletion
async message(msg) {
const replyid = msg.data.in_reply_to_id || msg.data.last_status.in_reply_to_id
const type = msg.event
const replyid = msg.data.in_reply_to_id
if (!replyid) return
let event = await Event.findOne({ where: { activitypub_id: replyid } })
if (!event) {
@@ -65,8 +66,8 @@ ${event.description.length > 200 ? event.description.substr(0, 200) + '...' : ev
if (!comment) return
event = comment.event
}
const comment = await Comment.create({
activitypub_id: msg.data.last_status.id,
await Comment.create({
activitypub_id: msg.data.id,
data: msg.data,
eventId: event.id
})

View File

@@ -23,7 +23,7 @@ const eventController = {
const places = await Place.findAll({
order: [[Sequelize.literal('weigth'), 'DESC']],
attributes: {
include: [[Sequelize.fn('count', Sequelize.col('events.placeId')) , 'weigth']], // <---- Here you will get the total count of user
include: [[Sequelize.fn('count', Sequelize.col('events.placeId')) , 'weigth']],
exclude: ['weigth', 'createdAt', 'updatedAt']
},
include: [{ model: Event, attributes: [] }],
@@ -32,10 +32,9 @@ const eventController = {
const tags = await Tag.findAll({
order: [['weigth', 'DESC']],
includeIgnoreAttributes: false,
attributes: {
exclude: ['createdAt', 'updatedAt']
}
},
})
res.json({ tags, places })
@@ -84,20 +83,20 @@ const eventController = {
// TODO retrieve next/prev event also
// select id, start_datetime, title from events where start_datetime > (select start_datetime from events where id=89) order by start_datetime limit 20;
// weigth is not updated
async get(req, res) {
const id = req.params.event_id
const event = await Event.findByPk(id, {
let event = await Event.findByPk(id, {
plain: true,
attributes: { exclude: ['createdAt', 'updatedAt'] },
include: [
Tag,
Comment,
{ model: Place, attributes: ['name', 'address'] }
{ model: Tag, attributes: ['tag', 'weigth'], through: { attributes: [] } },
{ model: Place, attributes: ['name', 'address'] },
Comment
],
order: [ [Comment, 'id', 'DESC'], [Tag, 'weigth', 'DESC'] ]
order: [ [Comment, 'id', 'DESC'] ]
})
if (event) {
event.activitypub_id = event.activitypub_id ? String(event.activitypub_id) : null
res.json(event)
} else {
res.sendStatus(404)
@@ -171,17 +170,18 @@ const eventController = {
async getAll(req, res) {
// this is due how v-calendar shows dates
const start = moment().year(req.params.year).month(req.params.month)
.startOf('month').startOf('isoWeek').unix()
.startOf('month').startOf('isoWeek')
let end = moment().utc().year(req.params.year).month(req.params.month).endOf('month')
const shownDays = end.diff(start, 'days')
if (shownDays <= 34) end = end.add(1, 'week')
end = end.endOf('isoWeek').unix()
console.error(shownDays)
if (shownDays <= 35) end = end.add(1, 'week')
end = end.endOf('isoWeek')
const events = await Event.findAll({
where: {
is_visible: true,
[Op.and]: [
Sequelize.literal(`start_datetime >= ${start}`),
Sequelize.literal(`start_datetime <= ${end}`)
Sequelize.literal(`start_datetime >= ${start.unix()}`),
Sequelize.literal(`start_datetime <= ${end.unix()}`)
]
},
order: [

View File

@@ -9,26 +9,25 @@ const exportController = {
const type = req.params.type
const tags = req.query.tags
const places = req.query.places
const whereTag = {}
const wherePlace = {}
const yesterday = moment().subtract('1', 'day')
const where = {}
const yesterday = moment().subtract('1', 'day').unix()
if (tags) {
whereTag.tag = tags.split(',')
where.tag = tags.split(',')
}
if (places) {
wherePlace.id = places.split(',')
where.placeId = places.split(',')
}
const events = await Event.findAll({
order: ['start_datetime'],
where: {
is_visible: true,
start_datetime: { [Op.gte]: yesterday },
placeId: places.split(',')
...where
},
attributes: {
exclude: ['createdAt', 'updatedAt']
},
include: [{ model: Place, attributes: ['name', 'id', 'address', 'weigth'] }]
include: [{ model: Place, attributes: ['name', 'id', 'address'] }]
})
switch (type) {
case 'feed':

View File

@@ -77,7 +77,7 @@ const settingsController = {
`https://${instance}`, callback)
const mastodon_auth = { client_id, client_secret, access_token }
await settingsController.set('mastodon_auth', mastodon_auth, true)
const botController = require('./bot')
const botController = require('./bot')
botController.initialize()
res.redirect('/admin')
} catch (e) {

View File

@@ -98,23 +98,24 @@ const userController = {
defaults: { address: body.place_address } })
.spread((place, created) => place)
await event.setPlace(place)
event.place = place
} catch (e) {
console.error(e)
}
// create/assign tags
if (body.tags) {
await Tag.bulkCreate(body.tags.map(t => ({ tag: t })), { ignoreDuplicates: true })
const tags = await Tag.findAll({ where: { tag: { [Op.in]: body.tags } } })
await Promise.all(tags.map(t => t.update({weigth: Number(t.weigth)+1})))
await event.addTags(tags)
event.tags = tags
}
if (req.user) {
await req.user.addEvent(event)
await event.setUser(req.user)
}
// event = await Event.findByPk(event.id, { include: [Tag, Place] })
// send response to client
res.json(event)

View File

@@ -30,7 +30,6 @@ const jwt = expressJwt({
const [ prefix, token ] = req.cookies['auth._token.local'].split(' ')
if (prefix === 'Bearer') return token
}
return null
}
})

View File

@@ -3,9 +3,10 @@ const path = require('path')
const moment = require('moment')
const config = require('config')
moment.locale(config.locale)
moment.locale('it')
const mail = {
send(addresses, template, locals) {
console.error('invio email via ', config.smtp)
const email = new Email({
views: { root: path.join(__dirname, '..', 'emails') },
htmlToText: false,
@@ -22,7 +23,7 @@ const mail = {
send: true,
i18n: {
directory: path.join(__dirname, '..', '..', 'locales', 'email'),
defaultLocale: config.locale
defaultLocale: 'it'
},
transport: config.smtp
})
@@ -30,11 +31,11 @@ const mail = {
template,
message: {
to: addresses,
bcc: config.admin
bcc: config.admin_email
},
locals: {
...locals,
locale: config.locale,
locale: 'it',
config: { title: config.title, baseurl: config.baseurl, description: config.description },
datetime: datetime => moment(datetime).format('ddd, D MMMM HH:mm')
}

View File

@@ -20,15 +20,14 @@ module.exports = (sequelize, DataTypes) => {
index: true
},
}, {})
event.associate = function (models) {
event.belongsTo(models.place)
event.belongsTo(models.user)
event.belongsToMany(models.tag, { through: 'event_tags' })
event.belongsToMany(models.notification, { through: 'event_notification' })
event.hasMany(models.comment)
// Tag.belongsToMany(Event, { through: 'tagEvent' })
// Event.hasMany(models.Tag)
// associations can be defined here
}
return event
}

View File

@@ -10,7 +10,7 @@ module.exports = (sequelize, DataTypes) => {
}
}, {})
notification.associate = function (models) {
notification.belongsToMany(models.event, { through: 'event_notification' })
notification.belongsToMany(models.event, { through: models.event_notification })
// associations can be defined here
}
return notification

View File

@@ -1,13 +1,15 @@
'use strict'
module.exports = (sequelize, DataTypes) => {
const place = sequelize.define('place', {
name: DataTypes.STRING,
address: DataTypes.STRING,
weigth: DataTypes.INTEGER
name: {
type: DataTypes.STRING,
unique: true, index: true,
allowNull: false
},
address: DataTypes.STRING
}, {})
place.associate = function (models) {
// associations can be defined here
place.hasMany(models.event)
}

View File

@@ -3,16 +3,16 @@ module.exports = (sequelize, DataTypes) => {
const tag = sequelize.define('tag', {
tag: {
type: DataTypes.STRING,
allowNull: false,
index: true,
primaryKey: true
},
weigth: DataTypes.INTEGER,
weigth: { type: DataTypes.INTEGER, defaultValue: 0, allowNull: false },
color: DataTypes.STRING
}, {})
tag.associate = function (models) {
tag.belongsToMany(models.event, { through: 'event_tags' })
// associations can be defined here
}
return tag