openSUSE-release-tools/factory-package-news/factory-package-news-web.py
Dominik Heidler c374e81477 Move factory-package-news-web.py script to gunicorn
This script is used eg. for the /snapshot-changes/opensuse/Tumbleweed
route and was using the WSGIScriptAlias apache command.
With the switch to nginx we need this more modern approach.
2023-06-05 12:53:34 +02:00

93 lines
2.6 KiB
Python
Executable File

#!/usr/bin/python3
from flask import Flask
from flask import request
from flask import make_response
import re
import os
digits_re = re.compile('^[0-9.]+$')
BASE_DIR = '/var/lib'
app = Flask(__name__)
def get_dir(path):
data_path = os.path.join(BASE_DIR, path.lstrip('/'))
assert os.path.realpath(data_path).startswith(os.path.join(BASE_DIR, 'snapshot-changes'))
return data_path
@app.route('/<path:dirpath>/')
def list(dirpath):
_dir = get_dir(dirpath)
fn = os.path.join(_dir, 'current')
current = None
if os.path.exists(fn):
current = os.readlink(fn)
ret = ''
for i in sorted(os.listdir(_dir), reverse=True):
if not digits_re.match(i):
continue
ret = ret + '<a href="diff/%s">%s</a>' % (i, i)
if i == current:
ret = ret + " &lt;--"
ret = ret + '<br/>'
return ret
@app.route('/<path:dirpath>/current', methods=['GET', 'POST'])
def current(dirpath):
_dir = get_dir(dirpath)
fn = os.path.join(_dir, 'current')
if request.method == 'POST':
if 'version' not in request.form:
return "missing version", 400
version = request.form['version']
if not digits_re.match(version):
return "malformed version", 400
if not os.path.exists(os.path.join(_dir, version)):
return "invalid version", 400
tmpfn = os.path.join(_dir, '.' + version)
app.logger.debug(tmpfn)
if os.path.exists(tmpfn):
os.unlink(tmpfn)
os.symlink(version, tmpfn)
os.rename(tmpfn, fn)
return "ok"
else:
if not os.path.exists(fn):
return "", 404
return os.readlink(fn)
@app.route('/<path:dirpath>/diff/<version>')
def diff(dirpath, version):
_dir = get_dir(dirpath)
fn = os.path.join(_dir, 'current')
if not os.path.exists(fn):
return "current version doesn't exist", 404
if not os.path.exists(os.path.join(_dir, version)):
return "invalid version", 400
import subprocess
cmd = [os.path.dirname(os.path.abspath(__file__)) + '/factory-package-news.py',
'diff', '--dir', _dir, "current", version]
app.logger.debug(cmd)
response = make_response(subprocess.check_output(cmd))
response.content_type = "text/plain"
return response
if __name__ == '__main__':
from optparse import OptionParser
parser = OptionParser()
parser.add_option("--debug", action="store_true", help="debug output")
parser.add_option("--host", metavar="IP", help="ip to listen to")
(options, args) = parser.parse_args()
app.run(debug=options.debug, host=options.host)
application = app