define(function(require){
|
|
var $ = require('jquery'),
|
|
_ = require('underscore'),
|
|
mask = require('mask'),
|
|
monster = require('monster'),
|
|
toastr = require('toastr');
|
|
|
|
var app = {
|
|
|
|
requests: {},
|
|
|
|
subscribe: {
|
|
'voip.devices.render': 'devicesRender',
|
|
'voip.devices.renderAdd': 'devicesRenderAdd',
|
|
'voip.devices.editDevice': 'devicesRenderEdit'
|
|
},
|
|
|
|
/* Users */
|
|
/* args: parent and deviceId */
|
|
devicesRender: function(args) {
|
|
var self = this,
|
|
args = args || {},
|
|
parent = args.parent || $('.right-content'),
|
|
_deviceId = args.deviceId || '';
|
|
|
|
self.devicesGetData(function(data) {
|
|
var dataTemplate = self.devicesFormatListData(data),
|
|
template = $(monster.template(self, 'devices-layout', dataTemplate)),
|
|
templateDevice;
|
|
|
|
_.each(dataTemplate.devices, function(device) {
|
|
templateDevice = monster.template(self, 'devices-row', device);
|
|
|
|
template.find('.devices-rows').append(templateDevice);
|
|
});
|
|
|
|
template.find('.switch').bootstrapSwitch();
|
|
|
|
self.devicesBindEvents(template, parent, dataTemplate);
|
|
|
|
parent
|
|
.empty()
|
|
.append(template);
|
|
|
|
if(_deviceId) {
|
|
var row = parent.find('.grid-row[data-id=' + _deviceId + ']');
|
|
|
|
monster.ui.highlight(row, {
|
|
endColor: '#FCFCFC'
|
|
});
|
|
}
|
|
|
|
if ( dataTemplate.devices.length == 0 ) {
|
|
parent.find('.no-devices-row').css('display', 'block');
|
|
} else {
|
|
parent.find('.no-devices-row').css('display', 'none');
|
|
}
|
|
});
|
|
},
|
|
|
|
devicesBindEvents: function(template, parent, data) {
|
|
var self = this;
|
|
|
|
template.find('.devices-header .search-query').on('keyup', function() {
|
|
var searchString = $(this).val().toLowerCase(),
|
|
rows = template.find('.devices-rows .grid-row:not(.title)'),
|
|
emptySearch = template.find('.devices-rows .empty-search-row');
|
|
|
|
_.each(rows, function(row) {
|
|
var row = $(row);
|
|
|
|
row.data('search').toLowerCase().indexOf(searchString) < 0 ? row.hide() : row.show();
|
|
});
|
|
|
|
if(rows.size() > 0) {
|
|
rows.is(':visible') ? emptySearch.hide() : emptySearch.show();
|
|
}
|
|
});
|
|
|
|
template.find('.switch').on('change', function() {
|
|
var toggle = $(this),
|
|
row = toggle.parents('.grid-row'),
|
|
deviceId = row.data('id'),
|
|
enable = toggle.bootstrapSwitch('status');
|
|
|
|
self.devicesGetDevice(deviceId, function(dataDevice) {
|
|
dataDevice.enabled = enable;
|
|
|
|
self.devicesUpdateDevice(dataDevice, function(dataDevice) {
|
|
row.find('.type').removeClass('unregistered registered disabled');
|
|
|
|
var classStatus = 'disabled';
|
|
|
|
if(dataDevice.enabled === true) {
|
|
classStatus = 'unregistered';
|
|
|
|
_.each(data.devices, function(device) {
|
|
if(device.id === dataDevice.id) {
|
|
if(device.registered === true) {
|
|
classStatus = 'registered';
|
|
}
|
|
|
|
return false;
|
|
}
|
|
});
|
|
}
|
|
|
|
row.find('.type').addClass(classStatus);
|
|
//We could display a success message but that could spam the user so for now we don't display anything
|
|
},
|
|
function() {
|
|
toggle.bootstrapSwitch('toggleState');
|
|
});
|
|
},
|
|
function() {
|
|
toggle.bootstrapSwitch('toggleState');
|
|
});
|
|
});
|
|
|
|
template.find('.settings').on('click', function() {
|
|
var $this = $(this),
|
|
dataDevice = {
|
|
id: $this.parents('.grid-row').data('id')
|
|
};
|
|
|
|
|
|
self.devicesRenderEdit({ data: dataDevice, callbackSave: function(dataDevice) {
|
|
self.devicesRender({ deviceId: dataDevice.id });
|
|
}});
|
|
});
|
|
|
|
template.find('.create-device').on('click', function() {
|
|
var type = $(this).data('type');
|
|
|
|
self.devicesRenderAdd({
|
|
type: type,
|
|
callback: function(device) {
|
|
self.devicesRender({ deviceId: device.id });
|
|
}
|
|
});
|
|
});
|
|
},
|
|
|
|
devicesRenderEdit: function(args) {
|
|
var self = this,
|
|
data = args.data,
|
|
callbackSave = args.callbackSave,
|
|
callbackDelete = args.callbackDelete || function(device) {
|
|
self.devicesRender();
|
|
};
|
|
|
|
self.devicesGetEditData(data, function(dataDevice) {
|
|
self.devicesRenderDevice(dataDevice, callbackSave, callbackDelete);
|
|
});
|
|
},
|
|
|
|
devicesRenderAdd: function(args) {
|
|
var self = this,
|
|
type = args.type,
|
|
callback = args.callback,
|
|
data = {
|
|
device_type: type
|
|
};
|
|
|
|
if(type === 'sip_device' && monster.config.api.provisioner) {
|
|
monster.pub('common.chooseModel.render', {
|
|
callback: function(dataModel) {
|
|
self.callApi({
|
|
resource: 'device.create',
|
|
data: {
|
|
accountId: self.accountId,
|
|
data: dataModel
|
|
},
|
|
success: function(data, status) {
|
|
callback(data.data);
|
|
}
|
|
});
|
|
},
|
|
callbackMissingBrand: function() {
|
|
self.devicesRenderEdit({ data: data, callbackSave: function(dataDevice) {
|
|
callback && callback(dataDevice);
|
|
}});
|
|
}
|
|
});
|
|
}
|
|
else {
|
|
self.devicesRenderEdit({ data: data, callbackSave: function(dataDevice) {
|
|
callback && callback(dataDevice);
|
|
}});
|
|
}
|
|
},
|
|
|
|
devicesRenderDevice: function(data, callbackSave, callbackDelete) {
|
|
var self = this
|
|
mode = data.id ? 'edit' : 'add',
|
|
type = data.device_type,
|
|
popupTitle = mode === 'edit' ? monster.template(self, '!' + self.i18n.active().devices[type].editTitle, { name: data.name }) : self.i18n.active().devices[type].addTitle;
|
|
templateDevice = $(monster.template(self, 'devices-'+type, data)),
|
|
deviceForm = templateDevice.find('#form_device');
|
|
|
|
if ( data.extra.hasE911Numbers ) {
|
|
if(data.caller_id && data.caller_id.emergency && data.caller_id.emergency.number) {
|
|
self.devicesGetE911NumberAddress(data.caller_id.emergency.number, function(address) {
|
|
templateDevice
|
|
.find('.number-address')
|
|
.show()
|
|
.find('p')
|
|
.html(address);
|
|
});
|
|
}
|
|
}
|
|
|
|
monster.ui.validate(deviceForm, {
|
|
rules: {
|
|
'name': {
|
|
required: true
|
|
},
|
|
'mac_address': {
|
|
required: true,
|
|
mac: true
|
|
},
|
|
'mobile.mdn': {
|
|
number: true
|
|
},
|
|
'sip.username': {
|
|
required: true
|
|
},
|
|
'sip.password': {
|
|
required: true
|
|
},
|
|
'call_forward.number': {
|
|
required: true
|
|
}
|
|
},
|
|
ignore: '' // Do not ignore hidden fields
|
|
});
|
|
|
|
if($.inArray(type, ['sip_device', 'smartphone', 'mobile', 'softphone', 'fax', 'ata']) > -1) {
|
|
templateDevice.find('#audio_codec_selector .selected-codecs, #audio_codec_selector .available-codecs').sortable({
|
|
connectWith: '.connectedSortable'
|
|
}).disableSelection();
|
|
}
|
|
|
|
if($.inArray(type, ['sip_device', 'smartphone', 'mobile', 'softphone']) > -1) {
|
|
templateDevice.find('#video_codec_selector .selected-codecs, #video_codec_selector .available-codecs').sortable({
|
|
connectWith: '.connectedSortable'
|
|
}).disableSelection();
|
|
}
|
|
|
|
monster.ui.tabs(templateDevice);
|
|
monster.ui.prettyCheck.create(templateDevice);
|
|
monster.ui.protectField(templateDevice.find('#sip_password'), templateDevice);
|
|
templateDevice.find('[data-toggle="tooltip"]').tooltip();
|
|
templateDevice.find('.switch').bootstrapSwitch();
|
|
templateDevice.find('#mac_address').mask("hh:hh:hh:hh:hh:hh", {placeholder:" "});
|
|
|
|
|
|
if(!(data.media.encryption.enforce_security)) {
|
|
templateDevice.find('#rtp_method').hide();
|
|
}
|
|
|
|
templateDevice.find('#secure_rtp').on('ifChanged', function() {
|
|
templateDevice.find('#rtp_method').toggle();
|
|
});
|
|
|
|
templateDevice.find('.actions .save').on('click', function() {
|
|
if(monster.ui.valid(deviceForm)) {
|
|
var dataToSave = self.devicesMergeData(data, templateDevice);
|
|
|
|
self.devicesSaveDevice(dataToSave, function(data) {
|
|
popup.dialog('close').remove();
|
|
|
|
callbackSave && callbackSave(data);
|
|
});
|
|
} else {
|
|
templateDevice.find('.tabs-selector[data-section="basic"]').click();
|
|
}
|
|
});
|
|
|
|
templateDevice.find('#delete_device').on('click', function() {
|
|
var deviceId = $(this).parents('.edit-device').data('id');
|
|
|
|
monster.ui.confirm(self.i18n.active().devices.confirmDeleteDevice, function() {
|
|
self.devicesDeleteDevice(deviceId, function(device) {
|
|
popup.dialog('close').remove();
|
|
|
|
toastr.success(monster.template(self, '!' + self.i18n.active().devices.deletedDevice, { deviceName: device.name }));
|
|
|
|
callbackDelete && callbackDelete(device);
|
|
});
|
|
});
|
|
});
|
|
|
|
templateDevice.find('.actions .cancel-link').on('click', function() {
|
|
popup.dialog('close').remove();
|
|
});
|
|
|
|
templateDevice.on('change', '.caller-id-select', function() {
|
|
var selectedNumber = this.value;
|
|
|
|
var divAddress = templateDevice.find('.number-address');
|
|
|
|
divAddress.find('p').empty();
|
|
|
|
if (selectedNumber !== '') {
|
|
self.devicesGetE911NumberAddress(selectedNumber, function(address) {
|
|
divAddress.find('p').html(address);
|
|
});
|
|
|
|
divAddress.slideDown();
|
|
}
|
|
else {
|
|
divAddress.slideUp();
|
|
}
|
|
});
|
|
|
|
templateDevice.find('.restriction-list .switch').on('switch-change', function() {
|
|
templateDevice.find('.restriction-matcher-sign').hide();
|
|
templateDevice.find('.restriction-message').hide();
|
|
});
|
|
|
|
templateDevice.find('.restriction-matcher-button').on('click', function(e) {
|
|
e.preventDefault();
|
|
var number = templateDevice.find('.restriction-matcher-input').val(),
|
|
matched = false;
|
|
|
|
if(number) {
|
|
self.callApi({
|
|
resource: 'numbers.matchClassifier',
|
|
data: {
|
|
accountId: self.accountId,
|
|
phoneNumber: encodeURIComponent(number)
|
|
},
|
|
success: function(data, status) {
|
|
var matchedLine = templateDevice.find('.restriction-line[data-restriction="'+data.data.name+'"]'),
|
|
matchedSign = matchedLine.find('.restriction-matcher-sign'),
|
|
matchedMsg = templateDevice.find('.restriction-message');
|
|
|
|
templateDevice.find('.restriction-matcher-sign').hide();
|
|
if(matchedLine.find('.switch').bootstrapSwitch('status')) {
|
|
matchedSign.removeClass('icon-red icon-remove')
|
|
.addClass('icon-green icon-ok')
|
|
.css('display', 'inline-block');
|
|
|
|
matchedMsg.removeClass('red-box')
|
|
.addClass('green-box')
|
|
.css('display', 'inline-block')
|
|
.empty()
|
|
.text(
|
|
monster.template(self, '!' + self.i18n.active().devices.popupSettings.restrictions.matcher.allowMessage, { phoneNumber: monster.util.formatPhoneNumber(number) })
|
|
);
|
|
} else {
|
|
matchedSign.removeClass('icon-green icon-ok')
|
|
.addClass('icon-red icon-remove')
|
|
.css('display', 'inline-block');
|
|
|
|
matchedMsg.removeClass('green-box')
|
|
.addClass('red-box')
|
|
.css('display', 'inline-block')
|
|
.empty()
|
|
.text(
|
|
monster.template(self, '!' + self.i18n.active().devices.popupSettings.restrictions.matcher.denyMessage, { phoneNumber: monster.util.formatPhoneNumber(number) })
|
|
);
|
|
}
|
|
}
|
|
});
|
|
} else {
|
|
templateDevice.find('.restriction-matcher-sign').hide();
|
|
templateDevice.find('.restriction-message').hide();
|
|
}
|
|
});
|
|
|
|
var popup = monster.ui.dialog(templateDevice, {
|
|
position: ['center', 20],
|
|
title: popupTitle
|
|
});
|
|
},
|
|
|
|
devicesMergeData: function(originalData, template) {
|
|
var self = this,
|
|
hasCodecs = $.inArray(originalData.device_type, ['sip_device', 'landline', 'fax', 'ata', 'softphone', 'smartphone', 'mobile', 'sip_uri']) > -1,
|
|
hasSIP = $.inArray(originalData.device_type, ['fax', 'ata', 'softphone', 'smartphone', 'mobile']) > -1,
|
|
hasCallForward = $.inArray(originalData.device_type, ['landline', 'cellphone', 'smartphone']) > -1,
|
|
hasRTP = $.inArray(originalData.device_type, ['sip_device', 'mobile', 'softphone']) > -1,
|
|
formData = monster.ui.getFormData('form_device');
|
|
|
|
if('mac_address' in formData) {
|
|
formData.mac_address = monster.util.formatMacAddress(formData.mac_address);
|
|
}
|
|
|
|
if(hasCodecs) {
|
|
formData.media = $.extend(true, {
|
|
audio: {
|
|
codecs: []
|
|
},
|
|
video: {
|
|
codecs: []
|
|
}
|
|
}, formData.media);
|
|
|
|
template.find('#audio_codec_selector .selected-codecs li').each(function() {
|
|
formData.media.audio.codecs.push($(this).data('codec'));
|
|
});
|
|
template.find('#video_codec_selector .selected-codecs li').each(function() {
|
|
formData.media.video.codecs.push($(this).data('codec'));
|
|
});
|
|
|
|
if(originalData.media && originalData.media.audio && originalData.media.audio.codecs) {
|
|
originalData.media.audio.codecs = [];
|
|
}
|
|
if(originalData.media && originalData.media.video && originalData.media.video.codecs) {
|
|
originalData.media.video.codecs = [];
|
|
}
|
|
}
|
|
|
|
if(hasCallForward) {
|
|
formData.call_forward = $.extend(true, {
|
|
enabled: true,
|
|
require_keypress: true,
|
|
keep_caller_id: true
|
|
}, formData.call_forward);
|
|
}
|
|
|
|
if(hasSIP) {
|
|
formData.sip = $.extend(true, {
|
|
expire_seconds: 360,
|
|
invite_format: 'username',
|
|
method: 'password'
|
|
}, formData.sip);
|
|
}
|
|
|
|
if('call_restriction' in formData) {
|
|
_.each(formData.call_restriction, function(restriction, key) {
|
|
if(key in originalData.extra.restrictions && originalData.extra.restrictions[key].disabled) {
|
|
restriction.action = originalData.extra.restrictions[key].action
|
|
} else {
|
|
restriction.action = restriction.action === true ? 'inherit' : 'deny';
|
|
}
|
|
});
|
|
}
|
|
|
|
var mergedData = $.extend(true, {}, originalData, formData);
|
|
|
|
/* The extend doesn't override an array if the new array is empty, so we need to run this snippet after the merge */
|
|
if(hasRTP) {
|
|
mergedData.media.encryption.methods = [];
|
|
|
|
if(mergedData.media.encryption.enforce_security) {
|
|
mergedData.media.encryption.methods.push(formData.extra.rtpMethod);
|
|
}
|
|
}
|
|
|
|
/* Migration clean-up */
|
|
delete mergedData.media.secure_rtp;
|
|
delete mergedData.extra;
|
|
|
|
return mergedData;
|
|
},
|
|
|
|
devicesFormatData: function(data) {
|
|
var self = this,
|
|
codecsAudioI18n = self.i18n.active().devices.popupSettings.audio.codecs,
|
|
codecsVideoI18n = self.i18n.active().devices.popupSettings.video.codecs,
|
|
defaults = {
|
|
extra: {
|
|
hasE911Numbers: data.e911Numbers.length > 0,
|
|
e911Numbers: data.e911Numbers,
|
|
restrictions: data.listClassifiers,
|
|
rtpMethod: data.device.media && data.device.media.encryption && data.device.media.encryption.enforce_security ? data.device.media.encryption.methods[0] : '',
|
|
selectedCodecs: {
|
|
audio: [],
|
|
video: []
|
|
},
|
|
availableCodecs: {
|
|
audio: [],
|
|
video: []
|
|
},
|
|
listCodecs: {
|
|
audio: {
|
|
'OPUS': codecsAudioI18n['OPUS'],
|
|
'CELT@32000h': codecsAudioI18n['CELT@32000h'],
|
|
'G7221@32000h': codecsAudioI18n['G7221@32000h'],
|
|
'G7221@16000h': codecsAudioI18n['G7221@16000h'],
|
|
'G722': codecsAudioI18n['G722'],
|
|
'speex@32000h':codecsAudioI18n['speex@32000h'],
|
|
'speex@16000h': codecsAudioI18n['speex@16000h'],
|
|
'speex': codecsAudioI18n['speex'],
|
|
'PCMU': codecsAudioI18n['PCMU'],
|
|
'PCMA': codecsAudioI18n['PCMA'],
|
|
'G729':codecsAudioI18n['G729'],
|
|
'GSM': codecsAudioI18n['GSM'],
|
|
'CELT@48000h': codecsAudioI18n['CELT@48000h'],
|
|
'CELT@64000h': codecsAudioI18n['CELT@64000h']
|
|
},
|
|
video: {
|
|
'VP8': codecsVideoI18n['VP8'],
|
|
'H264': codecsVideoI18n['H264'],
|
|
'H263': codecsVideoI18n['H263'],
|
|
'H261': codecsVideoI18n['H261']
|
|
}
|
|
}
|
|
},
|
|
call_restriction: {},
|
|
device_type: 'sip_device',
|
|
enabled: true,
|
|
media: {
|
|
encryption: {
|
|
enforce_security: false,
|
|
},
|
|
audio: {
|
|
codecs: ['PCMU', 'PCMA']
|
|
},
|
|
video: {
|
|
codecs: []
|
|
}
|
|
},
|
|
suppress_unregister_notifications: false
|
|
},
|
|
typedDefaults = {
|
|
sip_device: {
|
|
sip: {
|
|
password: monster.util.randomString(12),
|
|
realm: monster.apps['auth'].currentAccount.realm,
|
|
username: 'user_' + monster.util.randomString(10)
|
|
}
|
|
},
|
|
landline: {
|
|
call_forward: {
|
|
require_keypress: true,
|
|
keep_caller_id: true
|
|
},
|
|
contact_list: {
|
|
exclude: true
|
|
}
|
|
},
|
|
cellphone: {
|
|
call_forward: {
|
|
require_keypress: true,
|
|
keep_caller_id: true
|
|
},
|
|
contact_list: {
|
|
exclude: true
|
|
},
|
|
},
|
|
ata: {
|
|
sip: {
|
|
password: monster.util.randomString(12),
|
|
realm: monster.apps['auth'].currentAccount.realm,
|
|
username: 'user_' + monster.util.randomString(10)
|
|
}
|
|
},
|
|
fax: {
|
|
media: {
|
|
fax_option: 'false'
|
|
},
|
|
outbound_flags: ['fax'],
|
|
sip: {
|
|
password: monster.util.randomString(12),
|
|
realm: monster.apps['auth'].currentAccount.realm,
|
|
username: 'user_' + monster.util.randomString(10)
|
|
}
|
|
},
|
|
softphone: {
|
|
sip: {
|
|
password: monster.util.randomString(12),
|
|
realm: monster.apps['auth'].currentAccount.realm,
|
|
username: 'user_' + monster.util.randomString(10)
|
|
}
|
|
},
|
|
mobile: {
|
|
sip: {
|
|
password: monster.util.randomString(12),
|
|
realm: monster.apps['auth'].currentAccount.realm,
|
|
username: 'user_' + monster.util.randomString(10)
|
|
}
|
|
},
|
|
smartphone: {
|
|
call_forward: {
|
|
require_keypress: true,
|
|
keep_caller_id: true
|
|
},
|
|
contact_list: {
|
|
exclude: true
|
|
},
|
|
sip: {
|
|
password: monster.util.randomString(12),
|
|
realm: monster.apps['auth'].currentAccount.realm,
|
|
username: 'user_' + monster.util.randomString(10)
|
|
}
|
|
},
|
|
sip_uri: {
|
|
sip: {
|
|
password: monster.util.randomString(12),
|
|
username: 'user_' + monster.util.randomString(10),
|
|
expire_seconds: 360,
|
|
invite_format: 'route',
|
|
method: 'password'
|
|
}
|
|
}
|
|
};
|
|
|
|
_.each(data.listClassifiers, function(restriction, name) {
|
|
if(name in self.i18n.active().devices.classifiers) {
|
|
defaults.extra.restrictions[name].friendly_name = self.i18n.active().devices.classifiers[name].name;
|
|
|
|
if('help' in self.i18n.active().devices.classifiers[name]) {
|
|
defaults.extra.restrictions[name].help = self.i18n.active().devices.classifiers[name].help;
|
|
}
|
|
}
|
|
|
|
if('call_restriction' in data.accountLimits
|
|
&& name in data.accountLimits.call_restriction
|
|
&& data.accountLimits.call_restriction[name].action === 'deny') {
|
|
defaults.extra.restrictions[name].disabled = true;
|
|
defaults.extra.hasDisabledRestrictions = true;
|
|
}
|
|
|
|
if('call_restriction' in data.device && name in data.device.call_restriction) {
|
|
defaults.extra.restrictions[name].action = data.device.call_restriction[name].action;
|
|
}
|
|
else {
|
|
defaults.extra.restrictions[name].action = 'inherit';
|
|
}
|
|
});
|
|
|
|
var formattedData = $.extend(true, {}, typedDefaults[data.device.device_type], defaults, data.device);
|
|
|
|
/* Audio Codecs*/
|
|
/* extend doesn't replace the array so we need to do it manually */
|
|
if(data.device.media && data.device.media.audio && data.device.media.audio.codecs) {
|
|
var mapMigrateCodec = {
|
|
'Speex': 'speex@16000h',
|
|
'G722_16': 'G7221@16000h',
|
|
'G722_32': 'G7221@32000h',
|
|
'CELT_48': 'CELT@48000h',
|
|
'CELT_64': 'CELT@64000h'
|
|
},
|
|
newCodecList = [];
|
|
|
|
_.each(data.device.media.audio.codecs, function(codec) {
|
|
mapMigrateCodec.hasOwnProperty(codec) ? newCodecList.push(mapMigrateCodec[codec]) : newCodecList.push(codec);
|
|
});
|
|
|
|
formattedData.media.audio.codecs = newCodecList;
|
|
}
|
|
|
|
_.each(formattedData.media.audio.codecs, function(codec) {
|
|
formattedData.extra.selectedCodecs.audio.push({ codec: codec, description: defaults.extra.listCodecs.audio[codec] });
|
|
});
|
|
|
|
_.each(defaults.extra.listCodecs.audio, function(description, codec) {
|
|
if(formattedData.media.audio.codecs.indexOf(codec) === -1) {
|
|
formattedData.extra.availableCodecs.audio.push({ codec: codec, description: description });
|
|
}
|
|
});
|
|
|
|
/* Video codecs */
|
|
if(data.device.media && data.device.media.video && data.device.media.video.codecs) {
|
|
formattedData.media.video.codecs = data.device.media.video.codecs;
|
|
}
|
|
|
|
_.each(formattedData.media.video.codecs, function(codec) {
|
|
formattedData.extra.selectedCodecs.video.push({ codec: codec, description: defaults.extra.listCodecs.video[codec] });
|
|
});
|
|
|
|
_.each(defaults.extra.listCodecs.video, function(description, codec) {
|
|
if(formattedData.media.video.codecs.indexOf(codec) === -1) {
|
|
formattedData.extra.availableCodecs.video.push({ codec: codec, description: description });
|
|
}
|
|
});
|
|
|
|
return formattedData;
|
|
},
|
|
|
|
devicesFormatListData: function(data) {
|
|
var self = this,
|
|
formattedData = {
|
|
countDevices: 0,
|
|
devices: {}
|
|
},
|
|
mapUsers = {},
|
|
unassignedString = self.i18n.active().devices.unassignedDevice,
|
|
mapIconClass = {
|
|
cellphone: 'icon-phone',
|
|
smartphone: 'icon-telicon-mobile-phone',
|
|
landline: 'icon-telicon-home-phone',
|
|
mobile: 'icon-telicon-sprint-phone',
|
|
softphone: 'icon-telicon-soft-phone',
|
|
sip_device: 'icon-telicon-voip-phone',
|
|
sip_uri: 'icon-telicon-voip-phone',
|
|
fax: 'icon-telicon-fax',
|
|
ata: 'icon-telicon-fax'
|
|
};
|
|
|
|
_.each(data.users, function(user) {
|
|
mapUsers[user.id] = user;
|
|
});
|
|
|
|
_.each(data.devices, function(device) {
|
|
var isAssigned = device.owner_id ? true : false;
|
|
|
|
formattedData.countDevices++;
|
|
|
|
formattedData.devices[device.id] = {
|
|
id: device.id,
|
|
isAssigned: isAssigned + '',
|
|
friendlyIconClass: mapIconClass[device.device_type],
|
|
macAddress: device.mac_address,
|
|
name: device.name,
|
|
userName: device.owner_id && device.owner_id in mapUsers ? mapUsers[device.owner_id].first_name + ' ' + mapUsers[device.owner_id].last_name : unassignedString,
|
|
sortableUserName: device.owner_id && device.owner_id in mapUsers ? mapUsers[device.owner_id].last_name + ' ' + mapUsers[device.owner_id].first_name : unassignedString,
|
|
enabled: device.enabled,
|
|
type: device.device_type,
|
|
friendlyType: self.i18n.active().devices.types[device.device_type],
|
|
registered: false,
|
|
classStatus: device.enabled ? 'unregistered' : 'disabled' /* Display a device in black if it's disabled, otherwise, until we know whether it's registered or not, we set the color to red */
|
|
}
|
|
});
|
|
|
|
_.each(data.status, function(status) {
|
|
if(status.registered === true && status.device_id in formattedData.devices) {
|
|
var device = formattedData.devices[status.device_id];
|
|
|
|
device.registered = true;
|
|
|
|
/* Now that we know if it's registered, we set the color to green */
|
|
if(device.enabled) {
|
|
device.classStatus = 'registered';
|
|
}
|
|
}
|
|
});
|
|
|
|
var arrayToSort = [];
|
|
|
|
_.each(formattedData.devices, function(device) {
|
|
arrayToSort.push(device);
|
|
});
|
|
|
|
arrayToSort.sort(function(a, b) {
|
|
/* If owner is the same, order by device name */
|
|
if(a.userName === b.userName) {
|
|
var aName = a.name.toLowerCase(),
|
|
bName = b.name.toLowerCase();
|
|
|
|
return (aName > bName) ? 1 : (aName < bName) ? -1 : 0;
|
|
}
|
|
else {
|
|
/* Otherwise, push the unassigned devices to the bottom of the list, and show the assigned devices ordered by user name */
|
|
if(a.userName === unassignedString) {
|
|
return 1;
|
|
}
|
|
else if(b.userName === unassignedString) {
|
|
return -1;
|
|
}
|
|
else {
|
|
var aSortName = a.sortableUserName.toLowerCase(),
|
|
bSortName = b.sortableUserName.toLowerCase();
|
|
|
|
return (aSortName > bSortName) ? 1 : (aSortName < bSortName) ? -1 : 0;
|
|
}
|
|
}
|
|
});
|
|
|
|
formattedData.devices = arrayToSort;
|
|
|
|
return formattedData;
|
|
},
|
|
|
|
/* Utils */
|
|
devicesDeleteDevice: function(deviceId, callback) {
|
|
var self = this;
|
|
|
|
self.callApi({
|
|
resource: 'device.delete',
|
|
data: {
|
|
accountId: self.accountId,
|
|
deviceId: deviceId,
|
|
data: {}
|
|
},
|
|
success: function(data) {
|
|
callback(data.data);
|
|
}
|
|
});
|
|
},
|
|
|
|
devicesListClassifiers: function(callback) {
|
|
var self = this;
|
|
|
|
self.callApi({
|
|
resource: 'numbers.listClassifiers',
|
|
data: {
|
|
accountId: self.accountId
|
|
},
|
|
success: function(data) {
|
|
callback(data.data);
|
|
}
|
|
});
|
|
},
|
|
|
|
devicesGetE911Numbers: function(callback) {
|
|
var self = this;
|
|
|
|
self.callApi({
|
|
resource: 'numbers.list',
|
|
data: {
|
|
accountId: self.accountId,
|
|
filters: {
|
|
paginate: 'false'
|
|
}
|
|
},
|
|
success: function(data) {
|
|
var e911Numbers = [];
|
|
|
|
_.each(data.data.numbers, function(number, value) {
|
|
if(number.features.indexOf('dash_e911') >= 0) {
|
|
e911Numbers.push(value);
|
|
}
|
|
});
|
|
|
|
callback(e911Numbers);
|
|
}
|
|
});
|
|
},
|
|
|
|
devicesGetEditData: function(dataDevice, callback) {
|
|
var self = this;
|
|
|
|
monster.parallel({
|
|
listClassifiers: function(callback) {
|
|
self.devicesListClassifiers(function(dataClassifiers) {
|
|
callback(null, dataClassifiers);
|
|
});
|
|
},
|
|
device: function(callback) {
|
|
if(dataDevice.id) {
|
|
self.devicesGetDevice(dataDevice.id, function(dataDevice) {
|
|
callback(null, dataDevice);
|
|
});
|
|
}
|
|
else {
|
|
callback(null, dataDevice);
|
|
}
|
|
},
|
|
e911Numbers: function(callback) {
|
|
self.devicesGetE911Numbers(function(e911Numbers) {
|
|
callback(null, e911Numbers);
|
|
});
|
|
},
|
|
accountLimits: function(callback) {
|
|
self.callApi({
|
|
resource: 'limits.get',
|
|
data: {
|
|
accountId: self.accountId
|
|
},
|
|
success: function(data, status) {
|
|
callback(null, data.data);
|
|
}
|
|
});
|
|
}
|
|
},
|
|
function(error, results) {
|
|
var formattedData = self.devicesFormatData(results);
|
|
|
|
callback && callback(formattedData);
|
|
}
|
|
);
|
|
},
|
|
|
|
devicesGetDevice: function(deviceId, callbackSuccess, callbackError) {
|
|
var self = this;
|
|
|
|
self.callApi({
|
|
resource: 'device.get',
|
|
data: {
|
|
accountId: self.accountId,
|
|
deviceId: deviceId
|
|
},
|
|
success: function(data) {
|
|
callbackSuccess && callbackSuccess(data.data);
|
|
},
|
|
error: function(data) {
|
|
callbackError && callbackError(data);
|
|
}
|
|
});
|
|
},
|
|
|
|
devicesSaveDevice: function(deviceData, callback) {
|
|
var self = this;
|
|
|
|
if(deviceData.id) {
|
|
self.devicesUpdateDevice(deviceData, callback);
|
|
}
|
|
else {
|
|
self.devicesCreateDevice(deviceData, callback);
|
|
}
|
|
},
|
|
|
|
devicesCreateDevice: function(deviceData, callback) {
|
|
var self = this;
|
|
|
|
self.callApi({
|
|
resource: 'device.create',
|
|
data: {
|
|
accountId: self.accountId,
|
|
data: deviceData
|
|
},
|
|
success: function(data) {
|
|
callback(data.data);
|
|
}
|
|
});
|
|
},
|
|
|
|
devicesUpdateDevice: function(deviceData, callbackSuccess, callbackError) {
|
|
var self = this;
|
|
|
|
self.callApi({
|
|
resource: 'device.update',
|
|
data: {
|
|
accountId: self.accountId,
|
|
data: deviceData,
|
|
deviceId: deviceData.id
|
|
},
|
|
success: function(data) {
|
|
callbackSuccess && callbackSuccess(data.data);
|
|
},
|
|
error: function(data) {
|
|
callbackError && callbackError(data);
|
|
}
|
|
});
|
|
},
|
|
|
|
devicesGetData: function(callback) {
|
|
var self = this;
|
|
|
|
monster.parallel({
|
|
users: function(callback) {
|
|
self.callApi({
|
|
resource: 'user.list',
|
|
data: {
|
|
accountId: self.accountId,
|
|
filters: {
|
|
paginate: 'false'
|
|
}
|
|
},
|
|
success: function(dataUsers) {
|
|
callback && callback(null, dataUsers.data);
|
|
}
|
|
});
|
|
},
|
|
status: function(callback) {
|
|
self.callApi({
|
|
resource: 'device.getStatus',
|
|
data: {
|
|
accountId: self.accountId,
|
|
filters: {
|
|
paginate: 'false'
|
|
}
|
|
},
|
|
success: function(dataStatus) {
|
|
callback && callback(null, dataStatus.data);
|
|
}
|
|
});
|
|
},
|
|
devices: function(callback) {
|
|
self.callApi({
|
|
resource: 'device.list',
|
|
data: {
|
|
accountId: self.accountId,
|
|
filters: {
|
|
paginate: 'false'
|
|
}
|
|
},
|
|
success: function(dataDevices) {
|
|
callback(null, dataDevices.data);
|
|
}
|
|
});
|
|
}
|
|
},
|
|
function(err, results) {
|
|
callback && callback(results);
|
|
}
|
|
);
|
|
},
|
|
|
|
devicesGetE911NumberAddress: function(number, callback) {
|
|
var self = this;
|
|
|
|
self.callApi({
|
|
resource: 'numbers.get',
|
|
data: {
|
|
accountId: self.accountId,
|
|
phoneNumber: encodeURIComponent(number)
|
|
},
|
|
success: function(_data, status) {
|
|
var street_address = _data.data.dash_e911.street_address,
|
|
locality = _data.data.dash_e911.locality,
|
|
postal_code = _data.data.dash_e911.postal_code,
|
|
region = _data.data.dash_e911.region;
|
|
|
|
if ( typeof _data.data.dash_e911.extended_address !== 'undefined' ) {
|
|
callback(street_address + ', ' + _data.data.dash_e911.extended_address + '<br>' + locality + ', ' + region + ' ' + postal_code);
|
|
} else {
|
|
callback(street_address + ', ' + '<br>' + locality + ', ' + region + ' ' + postal_code);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
};
|
|
|
|
return app;
|
|
});
|