mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 19:38:09 +00:00
131 lines
3.5 KiB
JavaScript
131 lines
3.5 KiB
JavaScript
// =============================================================================
|
|
// Contains linphone helpers.
|
|
// =============================================================================
|
|
|
|
.pragma library
|
|
|
|
.import Linphone 1.0 as Linphone
|
|
|
|
.import 'qrc:/ui/scripts/Utils/utils.js' as Utils
|
|
|
|
// =============================================================================
|
|
// Contact/SIP address helpers.
|
|
// =============================================================================
|
|
|
|
function _getDisplayNameFromQuotedString (str) {
|
|
var start = str.indexOf('"')
|
|
if (start === -1) {
|
|
return
|
|
}
|
|
|
|
var end = str.lastIndexOf('"')
|
|
if (end === -1 || start === end) {
|
|
return
|
|
}
|
|
|
|
return str.substring(start + 1, end)
|
|
}
|
|
|
|
function _getDisplayNameFromString (str) {
|
|
var end = str.indexOf('<')
|
|
if (end === -1) {
|
|
return
|
|
}
|
|
|
|
return str.substring(0, end).trim() || undefined
|
|
}
|
|
|
|
function _getDisplayName (str) {
|
|
var name = _getDisplayNameFromQuotedString(str)
|
|
if (name != null) {
|
|
return name
|
|
}
|
|
|
|
return _getDisplayNameFromString(str)
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
function _getUsername (str) {
|
|
var start = str.indexOf('sip')
|
|
if (start === -1) {
|
|
return
|
|
}
|
|
start += 4 + Number(str.charAt(start + 4) === ':') // Deal with `sip:` and `sips:`
|
|
|
|
var end = str.indexOf('@', start + 1)
|
|
if (end === -1) {
|
|
return str.substring(start)
|
|
}
|
|
|
|
return str.substring(start, end)
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// Returns the username of a contact/sipAddressObserver object or URI string.
|
|
function getContactUsername (contact) {
|
|
var object = contact.contact || // Contact object from `SipAddressObserver`.
|
|
(contact.vcard && contact) // Contact object.
|
|
|
|
// 1. `object` is a contact.
|
|
if (object) {
|
|
return object.vcard.username
|
|
}
|
|
|
|
// 2. `object` is just a string.
|
|
object = Utils.isString(contact.peerAddress)
|
|
? contact.peerAddress // String from `SipAddressObserver`.
|
|
: contact // Just a String.
|
|
|
|
// Use display name.
|
|
var name = _getDisplayName(object)
|
|
if (name != null) {
|
|
return name
|
|
}
|
|
|
|
// Use username.
|
|
name = _getUsername(object)
|
|
return name == null ? 'Bad EGG' : name
|
|
}
|
|
|
|
// =============================================================================
|
|
// Codec helpers.
|
|
// =============================================================================
|
|
|
|
function openCodecOnlineInstallerDialog (window, codecInfo, cb) {
|
|
var VideoCodecsModel = Linphone.VideoCodecsModel
|
|
window.attachVirtualWindow(Utils.buildDialogUri('ConfirmDialog'), {
|
|
descriptionText: qsTr('downloadCodecDescription')
|
|
.replace('%1', codecInfo.mime)
|
|
.replace('%2', codecInfo.encoderDescription)
|
|
}, function (status) {
|
|
if (status) {
|
|
window.attachVirtualWindow(buildDialogUri('OnlineInstallerDialog'), {
|
|
downloadUrl: codecInfo.downloadUrl,
|
|
extract: true,
|
|
installFolder: VideoCodecsModel.codecsFolder,
|
|
installName: codecInfo.installName,
|
|
mime: codecInfo.mime
|
|
}, function (status) {
|
|
if (status) {
|
|
VideoCodecsModel.reload()
|
|
}
|
|
if (cb) {
|
|
cb(window)
|
|
}
|
|
})
|
|
}
|
|
else if (cb) {
|
|
cb(window)
|
|
}
|
|
})
|
|
}
|
|
|
|
// =============================================================================
|
|
// QML helpers.
|
|
// =============================================================================
|
|
|
|
function buildDialogUri (component) {
|
|
return 'qrc:/ui/modules/Linphone/Dialog/' + component + '.qml'
|
|
}
|