tis-lifesize

3.0.13-14
Lifesize delivers cloud-based video conferencing. Connect, communicate, and collaborate
1534 downloads
Download
See build result See VirusTotal scan
tis-lifesize icon
  • package : tis-lifesize
  • name : Lifesize Desktop App
  • version : 3.0.13-14
  • categories : Media,Messaging
  • maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ
  • editor : Lifesize
  • licence : proprietary_free,wapt_public
  • locale : all
  • target_os : windows(>=5.1)
  • impacted_process : Lifesize,Lifesize App Service
  • architecture : x64
  • signature_date : 2023-12-07 10:40
  • size : 121.88 Mo
  • installed_size : 448.71 Mo
  • homepage : https://www.lifesize.com/
package           : tis-lifesize
version           : 3.0.13-14
architecture      : x64
section           : base
priority          : optional
name              : Lifesize Desktop App
categories        : Media,Messaging
maintainer        : WAPT Team,Tranquil IT,Jimmy PELÉ
description       : Lifesize delivers cloud-based video conferencing. Connect, communicate, and collaborate
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows(>=5.1)
min_wapt_version  : 2.3
sources           : https://call.lifesizecloud.com/downloads
installed_size    : 448711133
impacted_process  : Lifesize,Lifesize App Service
description_fr    : Lifesize propose des visioconférences basées sur le cloud. Connectez-vous, communiquez et collaborez
description_pl    : Lifesize zapewnia wideokonferencje w chmurze. Łącz się, komunikuj i współpracuj
description_de    : Lifesize bietet cloudbasierte Videokonferenzen. Verbinden, kommunizieren und zusammenarbeiten
description_es    : Lifesize ofrece videoconferencias basadas en la nube. Conéctate, comunícate y colabora
description_pt    : O Lifesize oferece videoconferência baseada em nuvem. Conecte-se, comunique-se e colabore
description_it    : Lifesize offre videoconferenze basate sul cloud. Connettetevi, comunicate e collaborate
description_nl    : Lifesize levert videovergaderen in de cloud. Verbinden, communiceren en samenwerken
description_ru    : Lifesize обеспечивает облачные видеоконференции. Подключайтесь, общайтесь и сотрудничайте
audit_schedule    : 
editor            : Lifesize
keywords          : 
licence           : proprietary_free,wapt_public
homepage          : https://www.lifesize.com/
package_uuid      : 4b8d9fc6-0d15-440c-8ac4-84a84af02aac
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://community.lifesize.com/s/release-notes-web-desktop-app
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 25399e28a227ced30472ff6e613e59c1fbf7d650ef30fcb1a4ef5ddb581711e8
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : B/NZ/Gk8U7bQMAqJR0ihJqfhkZqQmcxIHez9jP91hJmSMWamcqqnM8F0ZPu3fraoRuY2NCDjdBtBnpuWi4OPjQu+e85nyPRwyLSx/jIJB2s+NR4Ddn2NuvVr7mY0M4uoJ8O9B9V0SXOKqnTBfayi74dYGJuYIlNYr1rJgloVd5Plj6NLP6MamdWnH8sBHRTnEmNkuCLxa80jvpP2TmFat8nuU4IpiWWQe1kPccOnaQS09qmbLfU+HdHb8ZQ/O6Kbm7aYOFQqI4poLCkIl6lQBzYGInYVIi5GE1b5t1JWSIdKm/AW+Ku7cGqoN5kzPLJ4p1UnTHBTIHpTmXmSLonLZg==
signature_date    : 2023-12-07T10:40:15.124544
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
# -*- coding: utf-8 -*-
from setuphelpers import *
import json

conf_json = """
{
    "proxy": {
        "ProxyMethod": 2,
        "Port": "8080",
        "autoConfigUrl": "http://server.domain.lan/proxy.pac"
    },
    "isAllowNTLMCredentialsForAllDomainsEnabled": false
}
"""


conf_json = """
{
    "proxy": {
        "UseSystem": true,
        "Host": "192.168.0.1",
        "UserName": "john_doe",
        "Password": "fido",
        "Port": "8080"
    },
    "miniCallerView": false,
    "isScreenSharingToolbarEnabled": false,
    "isSpellCheckEnabled": true,
    "initialOpenAtLogin": false
}
"""
conf_json = """{"initialOpenAtLogin": false}"""
if conf_json:
    if type(conf_json) == dict:
        conf_data = json.loads(conf_json)
    else:
        conf_data = conf_json
conf_dir = makepath(programfiles32, "Lifesize Installer")
conf_path = makepath(conf_dir, "settings.json")


def install():
    bin_name = glob.glob("Lifesize Setup *.msi")[0]

    # Uninstalling older major versions of the software
    for to_uninstall in installed_softwares(name="^Lifesize Installer$"):
        if Version(to_uninstall["version"], 1) < Version(control.get_software_version(), 1) or force:
            print("Removing: %s (%s)" % (to_uninstall["name"], to_uninstall["version"]))
            killalltasks(ensure_list(control.impacted_process))
            run(uninstall_cmd(to_uninstall["key"]))
            wait_uninstallkey_absent(to_uninstall["key"])

    # Installing the software
    install_msi_if_needed(
        bin_name,
        timeout=600,
        remove_old_version=True,
    )

    # Applying configuration dict
    if conf_json:
        print("Applying configuration in: %s" % conf_path)
        json_write_file(conf_path, conf_data)


def session_setup():
    user_conf_dir = makepath(application_data, "Lifesize", "electron-settings")
    user_conf_path = makepath(user_conf_dir, "settings.json")

    # Applying configuration dict
    if conf_json:
        print("Applying configuration in: %s" % conf_path)
        mkdirs(user_conf_dir)
        json_write_file(user_conf_path, conf_data)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import requests


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    app_name = control.name
    download_dict = {
        "windows": "https://download.lifesizecloud.com/download?platform=msi",
        # "windows": "https://download.lifesizecloud.com/download?platform=exe",  # exe
        # "windows": "https://download.lifesizecloud.com/download",
    }
    download_url = download_dict[ensure_list(control.target_os.split("(")[0])[0]]

    # Getting latest version information from download url
    requests_result = requests.head(
        download_url,
        proxies=proxies,
        allow_redirects=True,
        headers={
            "User-Agent": "%s" % "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36"
        },
    )
    download_url = requests_result.url
    latest_bin = requests_result.url.split("/")[-1].replace("%20", " ")
    version = requests_result.url.split("%20")[-1].rsplit(".", 1)[0]

    # Downloading latest binaries
    print("Latest %s version is: %s" % (app_name, version))
    print("Download URL is: %s" % download_url)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)

    # Deleting outdated binaries
    remove_outdated_binaries(latest_bin)

    # Checking version from file
    if get_os_name() == "Windows" and "windows" in control.target_os.lower():
        version_from_file = get_version_from_binary(latest_bin)
        if Version(version_from_file, 3) == Version(version, 3):
            print(f"INFO: Binary file version ({version_from_file}) corresponds to online version ({version})")
        else:
            error(f"ERROR: Binary file version ({version_from_file}) do NOT corresponds to online version ({version})")

    # Changing version of the package
    if Version(version, 4) > Version(control.get_software_version(), 4):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        package_updated = True
    else:
        print("Software version up-to-date (%s)" % Version(version))
    control.set_software_version(version)
    control.save_control_to_wapt()

    # Validating update-package-sources
    return package_updated

    # # Changing version of the package and validating update-package-sources
    # return complete_control_version(control, version)
0e361b8fa2940418f4de8ad85359d27d8d3bbed7b8439d85bb747e5158ac6fa3 : setup.py
 : __pycache__
487ac6fac61b49578da60fe6f2be4744fb66aa8b0f1d16457f77b80914555940 : Lifesize Setup 3.0.13.msi
d6518181ff441b436bf6e33f9cbb4418f3b4c54dba8320c4ff6bc4cc8e7980a6 : update_package.py
25399e28a227ced30472ff6e613e59c1fbf7d650ef30fcb1a4ef5ddb581711e8 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
525a86d646f05d7c6d82012b371febfed1dd34a7fbd20c2986cf912ee549854a : luti.json
a4514a78d5e8a5224489a581e4cafc8f6c66122b0c59103068a390f85493b5f8 : WAPT/control