Built motion from commit (unavailable).|2.5.22
[motion2.git] / server / api / chatInteraction / index.js
1 // *************************************************************************
2 // *                                                                       *
3 // * xCALLY Motion -  The Omnichannel Contact Center                       *
4 // * Copyright (c) Xenialab s.r.l. All Rights Reserved                     *
5 // *                                                                       *
6 // *************************************************************************
7 // *                                                                       *
8 // * Email: info@xcally.com                                                *
9 // * Website: https://www.xcally.com                                       *
10 // *                                                                       *
11 // *************************************************************************
12 // *                                                                       *
13 // * The SOFTWARE PRODUCT is protected by copyright laws and international *
14 // * copyright treaties, as well as other intellectual property laws and   *
15 // * treaties. The SOFTWARE PRODUCT is licensed, not sold.                         *
16 // *                                                                       *
17 // *************************************************************************
18 var _0xd5f7=['connect-timeout','express','Router','./chatInteraction.controller','get','/describe','isAuthenticated','describe','/:id','isChatInteractionAuthorized','/:id/attachment_download','/:id/messages','getMessages','/:id/my_messages','getMyMessages','post','create','join','root','server/files/attachments/','format','%s-%s','now','replace','/:id/attachment_upload','single','file','attachmentUpload','/:id/tags','tracked','chat','put','chatinteraction:update','/:id/custom_update','customUpdate','abandon','/:id/close','close','destroy','delete','removeTags','exports','multer','path'];(function(_0x12e6f0,_0x392524){var _0x2010c5=function(_0x153e0e){while(--_0x153e0e){_0x12e6f0['push'](_0x12e6f0['shift']());}};_0x2010c5(++_0x392524);}(_0xd5f7,0x15e));var _0x7d5f=function(_0x17e241,_0xd2886e){_0x17e241=_0x17e241-0x0;var _0x1dd2ac=_0xd5f7[_0x17e241];return _0x1dd2ac;};'use strict';var multer=require(_0x7d5f('0x0'));var util=require('util');var path=require(_0x7d5f('0x1'));var timeout=require(_0x7d5f('0x2'));var express=require(_0x7d5f('0x3'));var router=express[_0x7d5f('0x4')]();var auth=require('../../components/auth/service');var interaction=require('../../components/interaction/service');var config=require('../../config/environment');var controller=require(_0x7d5f('0x5'));router[_0x7d5f('0x6')]('/',auth['isAuthenticated'](),controller['index']);router[_0x7d5f('0x6')](_0x7d5f('0x7'),auth[_0x7d5f('0x8')](),controller[_0x7d5f('0x9')]);router['get'](_0x7d5f('0xa'),auth[_0x7d5f('0xb')](),controller['show']);router['get'](_0x7d5f('0xc'),auth[_0x7d5f('0xb')](),controller['attachmentDownload']);router[_0x7d5f('0x6')](_0x7d5f('0xd'),auth[_0x7d5f('0x8')](),controller[_0x7d5f('0xe')]);router[_0x7d5f('0x6')](_0x7d5f('0xf'),auth['isChatInteractionAuthorized'](),controller[_0x7d5f('0x10')]);router[_0x7d5f('0x6')]('/:id/download',auth['isAuthenticated'](),controller['download']);router[_0x7d5f('0x11')]('/',auth[_0x7d5f('0x8')](),controller[_0x7d5f('0x12')]);router[_0x7d5f('0x11')]('/:id/vidaoo',auth[_0x7d5f('0x8')](),controller['createVidaooSession']);var upload=multer({'storage':multer['diskStorage']({'destination':function(_0x1d8228,_0x4ad808,_0x14fa87){_0x14fa87(null,path[_0x7d5f('0x13')](config[_0x7d5f('0x14')],_0x7d5f('0x15')));},'filename':function(_0x8d00f4,_0x24821c,_0x6d79b7){_0x6d79b7(null,util[_0x7d5f('0x16')](_0x7d5f('0x17'),Date[_0x7d5f('0x18')](),_0x24821c['originalname'][_0x7d5f('0x19')](/[+@&\/\\#,+()$~%'":*?<>{}\s\\|]/g,'-')));}})});router[_0x7d5f('0x11')](_0x7d5f('0x1a'),upload[_0x7d5f('0x1b')](_0x7d5f('0x1c')),controller[_0x7d5f('0x1d')]);router['post'](_0x7d5f('0xd'),auth[_0x7d5f('0xb')](),controller['addMessage']);router[_0x7d5f('0x11')](_0x7d5f('0x1e'),auth[_0x7d5f('0x8')](),interaction[_0x7d5f('0x1f')](_0x7d5f('0x20'),'chatinteraction:addtags'),controller['addTags']);router[_0x7d5f('0x21')](_0x7d5f('0xa'),auth[_0x7d5f('0x8')](),interaction[_0x7d5f('0x1f')](_0x7d5f('0x20'),_0x7d5f('0x22')),controller['update']);router['put'](_0x7d5f('0x23'),controller[_0x7d5f('0x24')]);router[_0x7d5f('0x21')]('/:id/abandon',auth[_0x7d5f('0xb')](),controller[_0x7d5f('0x25')]);router[_0x7d5f('0x21')](_0x7d5f('0x26'),controller[_0x7d5f('0x27')]);router['delete']('/:id',auth[_0x7d5f('0x8')](),interaction[_0x7d5f('0x1f')]('chat','chatinteraction:destroy'),controller[_0x7d5f('0x28')]);router[_0x7d5f('0x29')](_0x7d5f('0x1e'),auth[_0x7d5f('0x8')](),controller[_0x7d5f('0x2a')]);module[_0x7d5f('0x2b')]=router;