52 lines
		
	
	
		
			No EOL
		
	
	
		
			2.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			No EOL
		
	
	
		
			2.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| const passport = require('../../lib/passport');
 | |
| const subscriptions = require('../../models/subscriptions');
 | |
| const { SubscriptionSource } = require('../../../shared/lists');
 | |
| 
 | |
| const router = require('../../lib/router-async').create();
 | |
| const {castToInteger} = require('../../lib/helpers');
 | |
| 
 | |
| 
 | |
| router.postAsync('/subscriptions-table/:listId/:segmentId?', passport.loggedIn, async (req, res) => {
 | |
|     return res.json(await subscriptions.listDTAjax(req.context, castToInteger(req.params.listId), req.params.segmentId ? castToInteger(req.params.segmentId) : null, req.body));
 | |
| });
 | |
| 
 | |
| router.postAsync('/subscriptions-test-user-table/:listCid', passport.loggedIn, async (req, res) => {
 | |
|     return res.json(await subscriptions.listTestUsersDTAjax(req.context, req.params.listCid, req.body));
 | |
| });
 | |
| 
 | |
| router.getAsync('/subscriptions/:listId/:subscriptionId', passport.loggedIn, async (req, res) => {
 | |
|     const entity = await subscriptions.getById(req.context, castToInteger(req.params.listId), castToInteger(req.params.subscriptionId));
 | |
|     entity.hash = await subscriptions.hashByList(castToInteger(req.params.listId), entity);
 | |
|     return res.json(entity);
 | |
| });
 | |
| 
 | |
| router.postAsync('/subscriptions/:listId', passport.loggedIn, passport.csrfProtection, async (req, res) => {
 | |
|     return res.json(await subscriptions.create(req.context, castToInteger(req.params.listId), req.body, SubscriptionSource.ADMIN_FORM, {}));
 | |
| });
 | |
| 
 | |
| router.putAsync('/subscriptions/:listId/:subscriptionId', passport.loggedIn, passport.csrfProtection, async (req, res) => {
 | |
|     const entity = req.body;
 | |
|     entity.id = castToInteger(req.params.subscriptionId);
 | |
| 
 | |
|     await subscriptions.updateWithConsistencyCheck(req.context, castToInteger(req.params.listId), entity, SubscriptionSource.ADMIN_FORM);
 | |
|     return res.json();
 | |
| });
 | |
| 
 | |
| router.deleteAsync('/subscriptions/:listId/:subscriptionId', passport.loggedIn, passport.csrfProtection, async (req, res) => {
 | |
|     await subscriptions.remove(req.context, castToInteger(req.params.listId), castToInteger(req.params.subscriptionId));
 | |
|     return res.json();
 | |
| });
 | |
| 
 | |
| router.postAsync('/subscriptions-validate/:listId', passport.loggedIn, async (req, res) => {
 | |
|     return res.json(await subscriptions.serverValidate(req.context, castToInteger(req.params.listId), req.body));
 | |
| });
 | |
| 
 | |
| router.postAsync('/subscriptions-unsubscribe/:listId/:subscriptionId', passport.loggedIn, passport.csrfProtection, async (req, res) => {
 | |
|     await subscriptions.unsubscribeByIdAndGet(req.context, castToInteger(req.params.listId), castToInteger(req.params.subscriptionId));
 | |
|     return res.json();
 | |
| });
 | |
| 
 | |
| 
 | |
| module.exports = router; |