tis-powertoys icon

powertoys

Paquet d’installation silencieuse pour powertoys

0.53.1-1

  • package: tis-powertoys
  • name: powertoys
  • version: 0.53.1-1
  • categories: Utilities
  • maintainer: WAPT Team,Tranquil IT,Pierre Cosson
  • editor: Microsoft
  • locale: all
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 47.00 Mo
  • depends:

package           : tis-powertoys
version           : 0.53.1-1
architecture      : x64
section           : base
priority          : optional
name              : powertoys
categories        : Utilities
maintainer        : WAPT Team,Tranquil IT,Pierre Cosson
description       : Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows 10 experience for greater productivity
depends           : tis-dotnetfx
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.0
sources           : https://github.com/microsoft/PowerToys
installed_size    : 
impacted_process  : 
description_fr    : 
description_pl    : 
description_de    : 
description_es    : 
description_pt    : 
description_it    : 
description_nl    : 
description_ru    : 
audit_schedule    : 
editor            : Microsoft
keywords          : 
licence           : 
homepage          : 
package_uuid      : 9d332449-ad01-4bc4-91fd-2431c6218928
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : d7db92588664d24dae645642c8ebd5a077151e68f12dfe7b4509621184183aca
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature         : PQvARWUEf5HE7tP9gXIf3WlEOeZ7RenF0oEYoD8E9HEcceFbzq2OrrVxHvrc6Rq65zDYNAuka71fE7m+IMsrcD9qpEAKbUtdCD6DuwiDk4qQ8q15RUAxuKSG5PlNaIN+6SQlTRuHJBTLrs0GUz1f9gCUK+nhI5g6fxzeP0FSJmBzkdoaPDSTZUncjwQUOnohKVZk8erZYmB0961ZrYwGauzxen2bQoj+twa6/N+UpFfvld7HLO1POuL1vhIiZnQN1TIYFENztCWcUX0cTTzfDYQu9JLZdasT4zK4EoCMIX2ZnKyg2zA4xTtMAydFvYfYXvxcNRyYB5V5OpyULEFyVQ==
signature_date    : 2022-01-12T10:03:11.888460
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 platform
import json

# Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
bin_contains = "PowerToysSetup"
silent_args = "/quiet"
# app_uninstallkey = '{916D6700-2270-4DD8-B1F9-BC7F951B49F3}'


def install():
    # Declaring local variables
    package_version = control.get_software_version()
    bin_name = glob.glob("*%s*.exe" % bin_contains)[0]
    if get_os_version() >= "10.0.18362":
        # Installing the package
        print("Installing: %s" % bin_name)
        install_exe_if_needed(
            bin_name,
            silentflags=silent_args,
            name="PowerToys",
            min_version=package_version,
        )
    else:
        print("this application is not compatible with this windows version")


def audit():
    if get_os_version() < "10.0.200000":
        print("this application is not compatible with this windows version")
        return "WARNING"


def update_package():
    # Declaring local variables
    result = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    app_name = control.name
    git_repo = "microsoft/PowerToys"
    url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo
    bin_name_sub = "PowerToysSetup%s.exe"
    # Getting latest version information from official sources
    print("API used is: %s" % url_api)
    json_load = json.loads(wgets(url_api, proxies=proxies))

    for download in json_load["assets"]:
        if bin_contains in download["name"]:
            url_dl = download["browser_download_url"]
            version = json_load["tag_name"].replace("v", "")
            latest_bin = download["name"]
            break

    print("Latest %s version is: %s" % (app_name, version))
    print("Download URL is: %s" % url_dl)

    # Downloading latest binaries
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(url_dl, latest_bin, proxies=proxies)

    # Changing version of the package
    if Version(version) > control.get_software_version():
        print("Software version updated from: %s to: %s" % (control.get_software_version(), Version(version)))
        result = True
    control.version = "%s-%s" % (Version(version), control.version.split("-", 1)[-1])
    # control.set_software_version(Version(version))
    control.save_control_to_wapt()

    # Deleting outdated binaries
    remove_outdated_binaries(version)

    # Validating update-package-sources
    return result


def get_proxies():
    r"""Return system proxy with the urllib python library

    >>> get_proxies()
    {'http': 'http://srvproxy.ad.domain.lan:8080',
    'https': 'http://srvproxy.ad.domain.lan:8080'}

    """
    if platform.python_version_tuple()[0] == "3":
        from urllib.request import getproxies
    else:
        from urllib import getproxies
    return getproxies()


def get_proxies_from_wapt_console():
    r"""Return proxy information from the current user WAPT console

    >>> get_proxies_from_wapt_console()
    {'http': 'http://srvproxy.ad.domain.lan:8080',
    'https': 'http://srvproxy.ad.domain.lan:8080'}

    """
    proxies = {}
    if platform.system() == "Windows":
        waptconsole_ini_path = makepath(user_local_appdata(), "waptconsole", "waptconsole.ini")
    else:
        waptconsole_ini_path = makepath(user_home_directory(), ".config", "waptconsole", "waptconsole.ini")
    if isfile(waptconsole_ini_path):
        proxy_wapt = inifile_readstring(waptconsole_ini_path, "global", "http_proxy")
        if proxy_wapt:
            proxies = {"http": proxy_wapt, "https": proxy_wapt}
    return proxies


def get_version_from_binary(filename, property_name="ProductVersion"):
    r"""Get installer version from file informations, for now, only exe and msi files are compatibles

    Args:
        filename (str): path to the file
        property_name (str): selected property

    Returns:
        str: version number

    """
    if filename.endswith(".msi"):
        return get_msi_properties(filename)[property_name]
    else:
        return get_file_properties(filename)[property_name]


def remove_outdated_binaries(version, filename_contains=None, list_extensions=["exe", "msi", "deb", "rpm", "dmg", "pkg"]):
    r"""Remove files based on the version contained in his filename

    Args:
        version (str): version number of keeped files
        filename_contains (str or list of str): Part of the filename that must be contained (useful for distinguishing architecture and os)
        list_extensions (str or list of str): file extensions of verified files

    Returns:
        None

    .. versionadded:: 2.0

    """
    if type(list_extensions) != list:
        list_extensions = [list_extensions]
    if filename_contains:
        if type(filename_contains) != list:
            filename_contains = [filename_contains]
    list_extensions = ["." + ext for ext in list_extensions if ext[0] != "."]
    for file_ext in list_extensions:
        for bin_in_dir in glob.glob("*%s" % file_ext):
            if not version in bin_in_dir:
                remove_file(bin_in_dir)
            if filename_contains:
                for filename_contain in filename_contains:
                    if not filename_contain in bin_in_dir:
                        remove_file(bin_in_dir)

57fc69fa0fc6f406a76a44f9b2ca3ef5e98e2620e32b7f206db153d80b16e51e : setup.py
d7db92588664d24dae645642c8ebd5a077151e68f12dfe7b4509621184183aca : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
48601b75e989e827fbd9bd950db3d3e6e24b5833b51fdb78f85790e0971f1206 : luti.json
d7d37972e7c9c090779671b04aa9894affc29a8429f26987df493bfe5f1520d4 : PowerToysSetup-0.53.1-x64.exe
b17fcda69de3870042488c16f916f2a1a7d290258b5f45e789350078f5188f2f : WAPT/control