Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
AmiBX
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
bitrix
AmiBX
Commits
4864c379
Commit
4864c379
authored
Dec 01, 2021
by
Kulya
😊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change INtegration changes
parent
c7715ed3
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
2770 additions
and
77 deletions
+2770
-77
installer.sh
alovoice/installer.sh
+33
-0
footer_queues.js
template/js/footer_queues.js
+19
-1
AloVoiceActions.php
vendor/alovoice/src/AloVoiceActions.php
+7
-6
AloVoiceRest.php
vendor/alovoice/src/AloVoiceRest.php
+69
-69
telegram-cli
vendor/tg/src/telegram-cli
+0
-0
tgc.log
vendor/tg/src/tgc.log
+15
-0
tgm.log
vendor/tg/src/tgm.log
+2627
-1
No files found.
alovoice/installer.sh
View file @
4864c379
...
...
@@ -106,7 +106,27 @@ echo "read = system,call,log,verbose,command,agent,user,config,command,dtmf,repo
echo
"write = system,call,log,verbose,command,agent,user,config,command,dtmf,reporting,cdr,dialplan,originate,message "
>>
/etc/asterisk/manager_custom.conf
echo
"writetimeout = 500 "
>>
/etc/asterisk/manager_custom.conf
#open FireWALL ports
echo
" "
echo
"Opening ports..."
firewall-cmd
--zone
=
public
--permanent
--add-port
=
80/tcp
firewall-cmd
--zone
=
public
--permanent
--add-port
=
443/tcp
firewall-cmd
--zone
=
public
--permanent
--add-port
=
55522/tcp
firewall-cmd
--zone
=
public
--permanent
--add-port
=
5060/tcp
firewall-cmd
--zone
=
public
--permanent
--add-port
=
5060/udp
firewall-cmd
--zone
=
public
--permanent
--add-port
=
5061/tcp
firewall-cmd
--zone
=
public
--permanent
--add-port
=
5061/udp
firewall-cmd
--zone
=
public
--permanent
--add-port
=
4569/udp
firewall-cmd
--zone
=
public
--permanent
--add-port
=
5038/tcp
firewall-cmd
--zone
=
public
--permanent
--add-port
=
5038/udp
firewall-cmd
--zone
=
public
--permanent
--add-port
=
10000-20000/udp
firewall-cmd
--reload
# Letsencrypt settings...
echo
" "
echo
"Letsencrypt settings..."
mkdir
-p
/var/lib/letsencrypt/.well-known
chgrp
asterisk /var/lib/letsencrypt
...
...
@@ -120,6 +140,19 @@ echo ' Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec' >> /et
echo
' Require method GET POST OPTIONS'
>>
/etc/httpd/conf.d/letsencrypt.conf
echo
'</Directory>'
>>
/etc/httpd/conf.d/letsencrypt.conf
#Cronnig fro AloVoice jobs
crontab
-l
>
mycron
echo
"* * * * * /usr/bin/chmod 777 /var/www/html/bx24/alovoice/ -R"
>
mycron
echo
"* * * * * /etc/init.d/amibx check"
>>
mycron
echo
"* * * * * /usr/bin/chmod 777 /var/www/html/bx24/logs/*"
>>
mycron
crontab mycron
rm
mycron
echo
"Done!"
exit
0
template/js/footer_queues.js
View file @
4864c379
...
...
@@ -265,7 +265,7 @@ function getQuesue() {
*/
function
Quesue
(
data
)
{
const
self
=
this
this
.
data
=
data
.
data
this
.
data
=
this
.
_toCurrentAgentData
(
data
.
data
)
// this.target = data.target
this
.
locale
=
data
.
locale
this
.
params
=
data
.
params
...
...
@@ -333,6 +333,7 @@ function getQuesue() {
* @returns {Boolean}
*/
update
(
newData
)
{
newData
=
this
.
_toCurrentAgentData
(
newData
)
const
self
=
this
const
prevData
=
this
.
data
;
this
.
_channels
=
this
.
_getCurrentQueuesCalls
(
newData
.
channels
)
...
...
@@ -363,6 +364,23 @@ function getQuesue() {
return
true
},
_toCurrentAgentData
(
data
)
{
var
agents
=
{};
Object
.
entries
(
data
.
agents
).
map
(
function
(
arr
)
{
var
key
=
arr
[
0
],
value
=
arr
[
1
];
if
(
value
.
connect
&&
value
.
status
===
'
off
'
)
{
value
.
status
=
'
free
'
}
agents
[
key
]
=
value
})
data
.
agents
=
agents
return
data
},
/**
* uppdate queue
* @private
...
...
vendor/alovoice/src/AloVoiceActions.php
View file @
4864c379
...
...
@@ -45,8 +45,9 @@ class AloVoiceActions
public
function
doAction
()
{
if
(
!
empty
(
$_REQUEST
)){
ALVC
::
eLog
(
$_REQUEST
,
"---- ****** ----- CODE ["
.
$_REQUEST
[
"code"
]
.
"]:"
);
if
(
!
empty
(
$_REQUEST
[
"code"
])
&&
$_REQUEST
[
"code"
]
==
"autocallrobot"
){
$code
=
(
!
empty
(
$_REQUEST
[
"code"
]))
?
$_REQUEST
[
"code"
]
:
false
;
ALVC
::
eLog
(
$_REQUEST
,
"---- ****** ----- CODE ["
.
$code
.
"]:"
);
if
(
!
empty
(
$code
)
&&
$code
==
"autocallrobot"
){
return
$this
->
doAutoCallRobot
(
$_REQUEST
);
}
...
...
@@ -56,8 +57,8 @@ class AloVoiceActions
}
}
if
(
!
empty
(
$_REQUEST
[
"type"
])
&&
!
empty
(
$
_REQUEST
[
"code"
]
)
&&
!
empty
(
$_REQUEST
[
"properties"
])){
if
(
(
$_REQUEST
[
"type"
]
==
"SMS"
)
&&
(
$
_REQUEST
[
"code"
]
==
"alosms"
)
&&
(
!
empty
(
$_REQUEST
[
"message_to"
])
)
&&
(
!
empty
(
$_REQUEST
[
"message_body"
])
)){
//["properties"] ["properties"]
if
(
!
empty
(
$_REQUEST
[
"type"
])
&&
!
empty
(
$
code
)
&&
!
empty
(
$_REQUEST
[
"properties"
])){
if
(
(
$_REQUEST
[
"type"
]
==
"SMS"
)
&&
(
$
code
==
"alosms"
)
&&
(
!
empty
(
$_REQUEST
[
"message_to"
])
)
&&
(
!
empty
(
$_REQUEST
[
"message_body"
])
)){
//["properties"] ["properties"]
$sndParams
=
array
(
"sendto"
=>
$_REQUEST
[
"message_to"
],
"message"
=>
$_REQUEST
[
"message_body"
]);
if
(
!
empty
(
$_REQUEST
[
"properties"
][
"send_from_number"
])
){
$sndParams
[
'fromnumber'
]
=
$_REQUEST
[
"properties"
][
"send_from_number"
];
...
...
@@ -65,7 +66,7 @@ class AloVoiceActions
return
$this
->
doSendSms
(
$sndParams
);
}
if
(
(
$_REQUEST
[
"type"
]
==
"SMS"
)
&&
(
$
_REQUEST
[
"code"
]
==
"smsetc"
)
&&
(
!
empty
(
$_REQUEST
[
"message_to"
])
)
&&
(
!
empty
(
$_REQUEST
[
"message_body"
])
)){
//["properties"] ["properties"]
if
(
(
$_REQUEST
[
"type"
]
==
"SMS"
)
&&
(
$
code
==
"smsetc"
)
&&
(
!
empty
(
$_REQUEST
[
"message_to"
])
)
&&
(
!
empty
(
$_REQUEST
[
"message_body"
])
)){
//["properties"] ["properties"]
$sndParams
=
array
(
"sendto"
=>
$_REQUEST
[
"message_to"
],
"message"
=>
$_REQUEST
[
"message_body"
]);
if
(
!
empty
(
$_REQUEST
[
"properties"
][
"send_from_number"
])
){
$sndParams
[
'fromnumber'
]
=
$_REQUEST
[
"properties"
][
"send_from_number"
];
...
...
@@ -73,7 +74,7 @@ class AloVoiceActions
return
$this
->
doEtcSms
(
$sndParams
);
}
}
//"type":"SMS","code":"alosms"
}
return
false
;
...
...
vendor/alovoice/src/AloVoiceRest.php
View file @
4864c379
...
...
@@ -792,40 +792,40 @@ function(result){
'title'
=>
'Автоназначение внут.номера'
,
'status'
=>
'off'
,
)];
$res
[
'nextintegration'
]
=
'status_
leadupdate
'
;
$res
[
'nextintegration'
]
=
'status_
activityadd
'
;
$res
[
'rescheck'
]
=
$arResults
;
return
$res
;
}
private
function
status_leadupdate
(
$r
=
false
)
{
//
private function status_leadupdate($r=false) {
$arResults
=
BxRest
::
call
(
'event.get'
);
$integrations
=
[];
if
(
!
empty
(
$arResults
[
"result"
])){
foreach
(
$arResults
[
"result"
]
as
$itg
){
if
(
$itg
[
"event"
]
==
"ONCRMLEADUPDATE"
){
if
(
$itg
[
"handler"
]
==
$this
->
config
[
"alovoice_host"
]
){
$integrations
[]
=
array
(
'code'
=>
'leadupdateevent'
,
'title'
=>
'Лидообработка'
,
'status'
=>
'on'
,
);
}
}
}
}
$res
[
'lines'
]
=
(
!
empty
(
$integrations
))
?
$integrations
:
[
array
(
'code'
=>
'leadupdateevent'
,
'title'
=>
'Лидообработка'
,
'status'
=>
'off'
,
)];
$res
[
'nextintegration'
]
=
'status_activityadd'
;
$res
[
'rescheck'
]
=
$arResults
;
return
$res
;
}
//
$arResults = BxRest::call('event.get');
//
$integrations = [];
//
if(!empty($arResults["result"])){
//
foreach($arResults["result"] as $itg){
//
if( $itg["event"] == "ONCRMLEADUPDATE" ){
//
if( $itg["handler"] == $this->config["alovoice_host"] ){
//
$integrations[] = array(
//
'code'=>'leadupdateevent',
//
'title'=>'Лидообработка',
//
'status'=>'on',
//
);
//
}
//
}
//
}
//
}
//
$res['lines'] = (!empty($integrations)) ? $integrations : [array(
//
'code'=>'leadupdateevent',
//
'title'=>'Лидообработка',
//
'status'=>'off',
//
)];
//
$res['nextintegration'] = 'status_activityadd';
//
$res['rescheck'] = $arResults;
//
return $res;
//
}
private
function
status_activityadd
(
$r
=
false
)
{
$arResults
=
BxRest
::
call
(
'event.get'
);
...
...
@@ -878,53 +878,53 @@ function(result){
'title'
=>
'Обратный звонок'
,
'status'
=>
'off'
,
)];
$res
[
'nextintegration'
]
=
'status_alo
sms
'
;
$res
[
'nextintegration'
]
=
'status_alo
tg
'
;
$res
[
'rescheck'
]
=
$arResults
;
return
$res
;
}
private
function
status_alosms
(
$r
=
false
)
{
$integrations
=
[];
$arResults
=
BxRest
::
call
(
'messageservice.sender.list'
);
if
(
!
empty
(
$arResults
[
"result"
])
&&
in_array
(
"alosms"
,
$arResults
[
"result"
])){
$integrations
[]
=
array
(
'code'
=>
'smsservice'
,
'title'
=>
'SMS сервис (alosms)'
,
'status'
=>
'on'
,
);
}
$res
[
'lines'
]
=
(
!
empty
(
$integrations
))
?
$integrations
:
[
array
(
'code'
=>
'smsservice'
,
'title'
=>
'SMS сервис'
,
'status'
=>
'off'
,
)];
$res
[
'nextintegration'
]
=
'status_aloetc
'
;
$res
[
'rescheck'
]
=
$arResults
;
return
$res
;
}
private
function
status_aloetc
(
$r
=
false
)
{
$integrations
=
[];
$arResults
=
BxRest
::
call
(
'messageservice.sender.list'
);
if
(
!
empty
(
$arResults
[
"result"
])
&&
in_array
(
"smsetc"
,
$arResults
[
"result"
])){
$integrations
[]
=
array
(
'code'
=>
'smsetcgateway'
,
'title'
=>
'SMS шлюз (smsetc)'
,
'status'
=>
'on'
,
);
}
$res
[
'lines'
]
=
(
!
empty
(
$integrations
))
?
$integrations
:
[
array
(
'code'
=>
'smsetcgateway'
,
'title'
=>
'SMS шлюз Etc'
,
'status'
=>
'off'
,
)];
$res
[
'nextintegration'
]
=
'status_alotg'
;
$res
[
'rescheck'
]
=
$arResults
;
return
$res
;
}
//
private function status_alosms($r=false) {
//
$integrations = [];
//
$arResults = BxRest::call('messageservice.sender.list');
//
if(!empty($arResults["result"]) && in_array("alosms",$arResults["result"])){
//
$integrations[] = array(
//
'code'=>'smsservice',
//
'title'=>'SMS сервис (alosms)',
//
'status'=>'on',
//
);
//
}
//
$res['lines'] = (!empty($integrations)) ? $integrations : [array(
//
'code'=>'smsservice',
//
'title'=>'SMS сервис',
//
'status'=>'off',
//
)];
// $res['nextintegration'] = 'status_alotg
';
//
$res['rescheck'] = $arResults;
//
return $res;
//
}
//
private function status_aloetc($r=false) {
//
$integrations = [];
//
$arResults = BxRest::call('messageservice.sender.list');
//
if(!empty($arResults["result"]) && in_array("smsetc",$arResults["result"])){
//
$integrations[] = array(
//
'code'=>'smsetcgateway',
//
'title'=>'SMS шлюз (smsetc)',
//
'status'=>'on',
//
);
//
}
//
$res['lines'] = (!empty($integrations)) ? $integrations : [array(
//
'code'=>'smsetcgateway',
//
'title'=>'SMS шлюз Etc',
//
'status'=>'off',
//
)];
//
$res['nextintegration'] = 'status_alotg';
//
$res['rescheck'] = $arResults;
//
return $res;
//
}
private
function
status_alotg
(
$r
=
false
)
{
//OnImConnectorMessageAdd
...
...
vendor/tg/src/telegram-cli
100644 → 100755
View file @
4864c379
File mode changed from 100644 to 100755
vendor/tg/src/tgc.log
View file @
4864c379
...
...
@@ -20768,3 +20768,18 @@
2021-11-29_19:32:00 add_contact 998367577 "Newcont_7577" "Newcont_7577"
2021-11-29_19:32:00 addContact: RES:
2021-11-29_19:32:00 []
2021-12-01_11:12:09 addContact: 998904127410, Newcont_7410,
2021-12-01_11:12:09 RES INFOFOFOF: false
2021-12-01_11:12:09 add_contact 998904127410 "Newcont_7410" "Newcont_7410"
2021-12-01_11:12:09 addContact: RES:
2021-12-01_11:12:09 false
2021-12-01_11:13:31 addContact: 998904127410, Newcont_7410,
2021-12-01_11:13:31 RES INFOFOFOF: false
2021-12-01_11:13:31 add_contact 998904127410 "Newcont_7410" "Newcont_7410"
2021-12-01_11:13:31 addContact: RES:
2021-12-01_11:13:31 false
2021-12-01_11:14:30 addContact: 998977807990, Newcont_7990,
2021-12-01_11:14:31 RES INFOFOFOF: false
2021-12-01_11:14:31 add_contact 998977807990 "Newcont_7990" "Newcont_7990"
2021-12-01_11:14:31 addContact: RES:
2021-12-01_11:14:31 [{"id":"$01000000fe7e891177bcc1766ac01038","peer_type":"user","peer_id":294223614,"print_name":"Newcont_7990_Newcont_7990","flags":65537,"first_name":"Newcont_7990","last_name":"Newcont_7990","phone":"998977807990"}]
vendor/tg/src/tgm.log
View file @
4864c379
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment