mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
fix ics and rss export with filters
This commit is contained in:
parent
f40184a5a3
commit
e5f2e2eeda
11 changed files with 108 additions and 43 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -6,6 +6,9 @@ node_modules
|
|||
.env.local
|
||||
.env.*.local
|
||||
|
||||
config.development.js
|
||||
config.production.js
|
||||
|
||||
# Log files
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
|
|
|
@ -35,9 +35,9 @@ api.get('/event/meta', eventController.getMeta)
|
|||
api.route('/event/:event_id')
|
||||
.get(eventController.get)
|
||||
|
||||
|
||||
api.get('/export/feed', exportController.feed)
|
||||
api.get('/export/ics', exportController.ics)
|
||||
// api.get('/export/feed', exportController.feed)
|
||||
// api.get('/export/ics', exportController.ics)
|
||||
api.get('/export/:type', exportController.export)
|
||||
|
||||
api.route('/event/:year/:month')
|
||||
.get(eventController.getAll)
|
||||
|
|
|
@ -49,7 +49,7 @@ const eventController = {
|
|||
{ start_datetime: { [Sequelize.Op.lte]: end } }
|
||||
]
|
||||
},
|
||||
order: [['createdAt', 'ASC']],
|
||||
order: [['start_datetime', 'ASC']],
|
||||
include: [User, Comment, Tag, Place]
|
||||
})
|
||||
res.json(events)
|
||||
|
|
|
@ -1,43 +1,62 @@
|
|||
const jwt = require('jsonwebtoken')
|
||||
const { User, Event, Comment, Tag, Place } = require('../model')
|
||||
const config = require('../config')
|
||||
const mail = require('../mail')
|
||||
const moment = require('moment')
|
||||
const { Event, Comment, Tag, Place } = require('../model')
|
||||
const Sequelize = require('sequelize')
|
||||
const config = require('../config')
|
||||
const moment = require('moment')
|
||||
const ics = require('ics')
|
||||
|
||||
const exportController = {
|
||||
async getAll (req, res) {
|
||||
async export (req, res) {
|
||||
console.log('type ', req.params.type)
|
||||
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')
|
||||
if (tags) {
|
||||
whereTag.tag = tags.split(',')
|
||||
}
|
||||
if (places) {
|
||||
wherePlace.name = places.split(',')
|
||||
}
|
||||
console.log(wherePlace.name)
|
||||
const events = await Event.findAll({
|
||||
where: {
|
||||
[Sequelize.Op.and]: [
|
||||
{ start_datetime: { [Sequelize.Op.gte]: start } },
|
||||
{ start_datetime: { [Sequelize.Op.lte]: end } }
|
||||
]
|
||||
},
|
||||
order: [['createdAt', 'DESC']],
|
||||
include: [User, Comment, Tag, Place]
|
||||
order: [['start_datetime', 'ASC']],
|
||||
where: { start_datetime: { [Sequelize.Op.gte]: yesterday } },
|
||||
include: [Comment, {
|
||||
model: Tag,
|
||||
where: whereTag
|
||||
}, { model: Place, where: wherePlace } ]
|
||||
})
|
||||
res.json(events)
|
||||
switch (type) {
|
||||
case 'feed':
|
||||
return exportController.feed(res, events)
|
||||
case 'ics':
|
||||
return exportController.ics(res, events)
|
||||
}
|
||||
},
|
||||
async feed (req, res) {
|
||||
const events = await Event.findAll({include: [Comment, Tag, Place]})
|
||||
async feed (res, events) {
|
||||
res.type('application/rss+xml; charset=UTF-8')
|
||||
res.render('feed/rss.pug', {events, config, moment})
|
||||
res.render('feed/rss.pug', { events, config, moment })
|
||||
},
|
||||
async ics (req, res) {
|
||||
const events = await Event.findAll({include: [Comment, Tag, Place]})
|
||||
console.log(events)
|
||||
const eventsMap = events.map(e => ({
|
||||
start: [2019, 2, 2],
|
||||
end: [2019, 2, 3],
|
||||
title: e.title,
|
||||
description: e.description,
|
||||
location: e.place.name
|
||||
}))
|
||||
|
||||
async ics (res, events) {
|
||||
const eventsMap = events.map(e => {
|
||||
const tmpStart = moment(e.start_datetime)
|
||||
const tmpEnd = moment(e.end_datetime)
|
||||
const start = [tmpStart.year(), tmpStart.month() + 1, tmpStart.date(), tmpStart.hour(), tmpStart.minute()]
|
||||
const end = [tmpEnd.year(), tmpEnd.month() + 1, tmpEnd.date(), tmpEnd.hour(), tmpEnd.minute()]
|
||||
return {
|
||||
start,
|
||||
end,
|
||||
title: e.title,
|
||||
description: e.description,
|
||||
location: e.place.name + ' ' + e.place.address
|
||||
}
|
||||
})
|
||||
res.type('text/calendar; charset=UTF-8')
|
||||
const { error, value } = ics.createEvents(eventsMap)
|
||||
console.log(value)
|
||||
console.log(error, value)
|
||||
res.send(value)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@ const mail = {
|
|||
}
|
||||
},
|
||||
message: {
|
||||
from: 'Gancio <eventi@cisti.org>'
|
||||
from: `${config.title} <${config.admin}>`
|
||||
},
|
||||
send: true,
|
||||
i18n: {},
|
||||
|
|
|
@ -4,6 +4,7 @@ const beConf = require('../config/config.' + env + '.json')
|
|||
const conf = {
|
||||
// environment
|
||||
title: beConf.title,
|
||||
description: beConf.description,
|
||||
|
||||
// base url
|
||||
baseurl: beConf.baseurl,
|
||||
|
|
|
@ -66,7 +66,7 @@ export default {
|
|||
backgroundColor: '#aaffaa'
|
||||
},
|
||||
popover: {label: this.$t('Today')}
|
||||
},
|
||||
},
|
||||
...this.events.map(this.eventToAttribute)
|
||||
]
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<template lang="pug">
|
||||
b-modal(hide-footer hide-header
|
||||
@hide='$router.go(-1)' size='lg' :visible='true' v-if='type')
|
||||
@hide='$router.replace("/")' size='lg' :visible='true' v-if='type')
|
||||
h3.text-center Export {{type}}
|
||||
b-input-group.mb-2(v-if='showLink')
|
||||
b-form-input( v-model='link' autocomplete='off')
|
||||
|
@ -18,21 +18,43 @@
|
|||
el-switch(v-model='mail.reminder' :active-text="$t('send_reminder')")
|
||||
b-form-input.mt-1(v-model='mail.mail' :placeholder="$t('Insert your address')")
|
||||
b-button.mt-1.float-right(variant='success' @click='activate_email') {{$t('Send')}}
|
||||
|
||||
b-form(v-if="type==='embed'" style='max-width: 400px;')
|
||||
el-switch(v-model='export_list' :active-text="$t('export_list')")
|
||||
b-card(v-if='export_list' no-body header='Eventi')
|
||||
b-list-group(flush)
|
||||
b-list-group-item.flex-column.align-items-start(v-for="event in filteredEvents"
|
||||
:href='`/event/${event.id}`')
|
||||
b-media
|
||||
img(v-if='event.image_path' slot="aside" :src="imgPath(event)" alt="Media Aside" style='max-height: 60px')
|
||||
small.float-right {{event.start_datetime|short_datetime}}
|
||||
h5.mb-1 {{event.title}}
|
||||
small.mb-1 {{event.description}}
|
||||
b-badge.float-right.ml-1(v-for='tag in event.tags') {{tag.tag}}
|
||||
small.float-right(v-b-popover.hover='event.place.address') {{event.place.name}}
|
||||
Calendar(v-else)
|
||||
|
||||
</template>
|
||||
<script>
|
||||
import { mapState } from 'vuex'
|
||||
import config from '../../config'
|
||||
import path from 'path'
|
||||
import filters from '../filters'
|
||||
import Calendar from '@/components/Calendar'
|
||||
import {intersection} from 'lodash'
|
||||
|
||||
export default {
|
||||
name: 'Export',
|
||||
components: { Calendar },
|
||||
data () {
|
||||
return {
|
||||
type: '',
|
||||
link: '',
|
||||
mail: {}
|
||||
mail: {},
|
||||
export_list: true
|
||||
}
|
||||
},
|
||||
filters,
|
||||
mounted () {
|
||||
this.type = this.$route.params.type
|
||||
this.link = this.loadLink()
|
||||
|
@ -47,10 +69,27 @@ export default {
|
|||
loadLink () {
|
||||
const filters = this.filters.tags.join(',')
|
||||
return `${config.apiurl}/export/${this.type}/${filters}`
|
||||
}
|
||||
},
|
||||
imgPath (event) {
|
||||
return event.image_path && config.apiurl + '/../' + event.image_path
|
||||
},
|
||||
},
|
||||
computed: {
|
||||
...mapState(['filters', 'user', 'logged']),
|
||||
...mapState(['filters', 'user', 'logged', 'events']),
|
||||
filteredEvents () {
|
||||
if (!this.filters.tags.length && !this.filters.places.length) return this.events
|
||||
return this.events.filter(e => {
|
||||
if (this.filters.tags.length) {
|
||||
const m = intersection(e.tags.map(t => t.tag), this.filters.tags)
|
||||
if (m.length>0) return true
|
||||
}
|
||||
if (this.filters.places.length) {
|
||||
if (this.filters.places.find(p => p === e.place.name))
|
||||
return true
|
||||
}
|
||||
return 0
|
||||
})
|
||||
},
|
||||
showLink () {
|
||||
return (['feed', 'ics'].indexOf(this.type)>-1)
|
||||
},
|
||||
|
|
|
@ -138,8 +138,8 @@ export default {
|
|||
}
|
||||
},
|
||||
methods: {
|
||||
update (e) {
|
||||
if (this.multiple && e.data === ',') {
|
||||
update (e, value) {
|
||||
if (this.multiple && this.search[this.search.length-1] === ',') {
|
||||
this.search = this.search.substr(0, this.search.length-1)
|
||||
this.hit(e)
|
||||
return
|
||||
|
|
|
@ -4,6 +4,6 @@ import Settings from '@/components/Settings'
|
|||
import newEvent from '@/components/newEvent'
|
||||
import eventDetail from '@/components/EventDetail'
|
||||
import Home from '@/components/Home'
|
||||
import Event from '@/components/event'
|
||||
import Event from '@/components/Event'
|
||||
|
||||
module.exports = { Home, eventDetail, newEvent, Settings, Login, Register, Event }
|
||||
export default { Home, eventDetail, newEvent, Settings, Login, Register, Event }
|
||||
|
|
|
@ -5,6 +5,9 @@ export default {
|
|||
datetime (value) {
|
||||
return moment(value).format('ddd, D MMMM HH:mm')
|
||||
},
|
||||
short_datetime (value) {
|
||||
return moment(value).format('D/MM HH:mm')
|
||||
},
|
||||
hour (value) {
|
||||
return moment(value).format('HH:mm')
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue