tis-nextcloud icon

Nextcloud

Paquet d’installation silencieuse pour Nextcloud

4.0.2.20251124-10
Storage
Storage

  • package: tis-nextcloud
  • name: Nextcloud
  • version: 4.0.2.20251124-10
  • categories: Storage
  • maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ
  • editor: Nextcloud GmbH
  • licence: opensource_free,cpe:/a:gnu:gpl_v2,wapt_public
  • locale: all
  • target_os: windows
  • impacted_process: nextcloud,nextcloudcmd
  • architecture: x64
  • signature_date:
  • size: 166.68 Mo
  • installed_size: 238.19 Mo
  • homepage : https://nextcloud.com

package           : tis-nextcloud
version           : 4.0.2.20251124-10
architecture      : x64
section           : base
priority          : optional
name              : Nextcloud
categories        : Storage
maintainer        : WAPT Team,Tranquil IT,Jimmy PELÉ
description       : Nextcloud is a suite of client-server software for creating and using file hosting services
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : windows
min_wapt_version  : 2.1
sources           : https://nextcloud.com/install/#install-clients
installed_size    : 238194476
impacted_process  : nextcloud,nextcloudcmd
description_fr    : Nextcloud est une suite de logiciels client-serveur permettant de créer et d'utiliser des services d'hébergement de fichiers
description_pl    : Nextcloud to pakiet oprogramowania klient-serwer do tworzenia i korzystania z usług hostingu plików
description_de    : Nextcloud ist eine Suite von Client-Server-Software für die Erstellung und Nutzung von Filehosting-Diensten
description_es    : Nextcloud es un paquete de software cliente-servidor para crear y utilizar servicios de alojamiento de archivos
description_pt    : Nextcloud é um conjunto de software cliente-servidor para a criação e utilização de serviços de alojamento de ficheiros
description_it    : Nextcloud è una suite di software client-server per la creazione e l'utilizzo di servizi di file hosting
description_nl    : Nextcloud is een suite van client-server software voor het creëren en gebruiken van file hosting diensten
description_ru    : Nextcloud - это набор клиент-серверного программного обеспечения для создания и использования услуг хостинга файлов
audit_schedule    : 
editor            : Nextcloud GmbH
keywords          : cloud
licence           : opensource_free,cpe:/a:gnu:gpl_v2,wapt_public
homepage          : https://nextcloud.com
package_uuid      : c9d41a17-fef6-4775-9026-e8b951a3b4c0
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://github.com/nextcloud/desktop/releases
min_os_version    : 10.0
max_os_version    : 
icon_sha256sum    : 1151ba48674e21f0e26c7bebad851fcc669cd869201ae559fa6e253d64b9401d
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-12-01T11:14:27.000000
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
signature         : r+0q2ByYdJHHQQncBJqMlQSAwR7+8E1pvE79BAdcWKdT3weeWek7Ej9w7kGY5sRjqDH9No9maUYxVFu8BD+FLx2BGt3b9wyNGF5BF5jsmvbNO1dyj2GqCejVQIm+RNXCemO6Cwg8y0xdm8VCLql9CQeVjfMZ2JvIvHE7rUov6uUaeCqWHWl02Z3jRIMGxOVwmoIJHLX3OhJjvXNen2XLH+S6VZg5cHGoYmTm25H64qhINzuhyVNbWvxQqgsQoeKPv5GwGs16ND7jkeKyFFlXZBMdSMFGi1H97hQiX1wOohD67TEU8DjYobB1wGFpoMhQbrauZb7c3R2PmuC4YBRXow==

# -*- coding: utf-8 -*-
from setuphelpers import *


def install():
    bin_name = glob.glob("Nextcloud-*.msi")[0]
    install_msi_if_needed(
        bin_name,
        min_version=control.get_software_version(),
        name='Nextcloud'
    )

    registry_setstring(HKEY_LOCAL_MACHINE, r"SOFTWARE\Wow6432Node\Nextcloud\Nextcloud", "skipUpdateCheck", 1, type=REG_DWORD)

# -*- coding: utf-8 -*-
from setuphelpers import *
import json


##def update_package():
##    # Declaring local variables
##    package_updated = False
##    proxies = get_proxies()
##    if not proxies:
##        proxies = get_proxies_from_wapt_console()
##    api_url = "https://api.github.com/repos/nextcloud-releases/desktop/releases/latest"
##    download_dict = {
##        "windows": "x64.msi",
##        "linux": "x86_64.AppImage",
##        "darwin": ".pkg",
##    }
##
##    # Getting latest version information from official sources
##    print("API used is: %s" % api_url)
##    json_load = json.loads(wgets(api_url, proxies=proxies))
##    version = json_load["tag_name"].split("-")[-1].replace("v", "")
##    download_url = download_dict[control.target_os].replace("version", version)
##    latest_bin = download_url.split("/")[-1]
##
##    # Downloading latest binaries
##    print("Latest %s version is: %s" % (control.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)
##
##    # Checking version from file
##    version_from_file = get_version_from_binary(latest_bin)
##    print("version from file :" + version_from_file )
##    if Version(version_from_file, 4) != Version(version, 4) and version_from_file != "":
##        print("Changing version to the version number of the binary")
##        version = version_from_file
##    else:
##        print("Binary file version corresponds to online 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()
##
##    # Deleting outdated binaries
##    remove_outdated_binaries(version)
##
##    # Validating update-package-sources
##    return package_updated

def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()

    api_url = "https://api.github.com/repos/nextcloud-releases/desktop/releases/latest"
    download_dict = {
        "windows": "x64.msi",
        "linux": "x86_64.AppImage",
        "darwin": ".pkg",
    }
    releases_dict = wgets(api_url, proxies=proxies, as_json=True)

    for asset in releases_dict["assets"]:
        if asset["browser_download_url"].endswith(download_dict[control.target_os]):
            download_url = asset["browser_download_url"]
            latest_bin = download_url.rsplit('/')[-1]
            version = releases_dict["tag_name"][1:]
            break

    # Downloading latest binaries
    print("Latest %s version is: %s" % (control.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)

    # Checking version from file
    version_from_file = get_version_from_binary(latest_bin)
    print("version from file :" + version_from_file )
    if Version(version_from_file, 4) != Version(version, 4) and version_from_file != "":
        print("Changing version to the version number of the binary")
        version = version_from_file
    else:
        print("Binary file version corresponds to online 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()


    return package_updated

6df10e01f2d6ee49148d0f2793f40d8950e7ff3fe20a8a39198b2b81620be46d : Nextcloud-4.0.2-x64.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
6a9db49844c7cf8b14f67c25f45f671b0945a7843eabf44413bfba5cdc13a21a : WAPT/control
1151ba48674e21f0e26c7bebad851fcc669cd869201ae559fa6e253d64b9401d : WAPT/icon.png
019b450714defc7f3b33397bf29685c560d999ca5f10700afa3d25e1ba3525f8 : luti.json
8cc0de894b540add3af7750c135d66d32e87b42fe0f1aed995ec6c3e15e5b357 : setup.py
42b7551e53f286e12cd0a559b06c990cb53657844a259d2f3610299b88301a71 : update_package.py