mirror of
https://github.com/CMiksche/gitea-auto-update
synced 2025-12-10 07:57:23 +01:00
Attempting to update Gitea using the binary mode results in an exception because `isTool` did not have a `self` parameter. This fixes the issue, allowing binary updates.
78 lines
2.6 KiB
Python
78 lines
2.6 KiB
Python
'''
|
|
Gitea Auto Updater
|
|
|
|
Copyright 2018, 2019 The Gitea-Auto-Update Authors
|
|
All rights reserved.
|
|
|
|
License: GNU General Public License
|
|
'''
|
|
import requests
|
|
import os
|
|
import logging
|
|
from shutil import which # from whichcraft import which
|
|
|
|
|
|
class Download:
|
|
|
|
def __init__(self, tmpDir, githubVersion, githubVersionTag, gtSystem, gtFile):
|
|
if not self.isTool("xz"):
|
|
logging.error('Download: missing dependency: xz')
|
|
quit()
|
|
|
|
self.tmpDir = tmpDir
|
|
self.githubVersion = githubVersion
|
|
self.githubVersionTag = githubVersionTag
|
|
self.gtSystem = gtSystem
|
|
self.gtFile = gtFile
|
|
|
|
self.downloadGiteaFiles()
|
|
self.checkAndExtract()
|
|
|
|
def isTool(self, name):
|
|
# Function to check if tool is available
|
|
##Check whether `name` is on PATH and marked as executable.
|
|
return which(name) is not None
|
|
|
|
def download(self, url, fileName):
|
|
# Function to download a file
|
|
# open in binary mode
|
|
with open(fileName, "wb") as file:
|
|
# get request
|
|
response = requests.get(url)
|
|
# write to file
|
|
file.write(response.content)
|
|
|
|
def downloadGiteaFiles(self):
|
|
# Set download url
|
|
gtDownload = 'https://github.com/go-gitea/gitea/releases/download/' + self.githubVersionTag + '/gitea-' + self.githubVersion + '-' + self.gtSystem + '.xz'
|
|
logging.info('Download: Gitea file: %s', gtDownload)
|
|
shaDownload = gtDownload + '.sha256'
|
|
logging.info('Download: SHA file: %s', shaDownload)
|
|
|
|
# Download file
|
|
logging.info('Download: downloading sha256 hashsum')
|
|
self.download(shaDownload, self.tmpDir + 'gitea.xz.sha256')
|
|
logging.info('Download: downloading %s', self.githubVersionTag + 'gitea.xz')
|
|
self.tmpXz = self.tmpDir +'gitea-' + self.githubVersion + '-' + self.gtSystem + '.xz'
|
|
self.download(gtDownload, self.tmpXz)
|
|
|
|
def shaCheck(self):
|
|
return os.system("sha256sum -c gitea.xz.sha256 > /dev/null") == 0
|
|
|
|
def extractFile(self):
|
|
logging.info('Download: sha ok, extracting file to location')
|
|
# extracting download file
|
|
cmd = "xz -d " + self.tmpXz
|
|
os.system(cmd)
|
|
# moving temp file to gtfile location
|
|
cmd = 'mv ' + self.tmpDir + 'gitea-' + self.githubVersion + '-' + self.gtSystem + ' ' + self.gtFile
|
|
os.system(cmd)
|
|
|
|
def checkAndExtract(self):
|
|
os.chdir(self.tmpDir)
|
|
if self.shaCheck():
|
|
self.extractFile()
|
|
else:
|
|
logging.error('Download: error: sha256sum failed')
|
|
quit()
|