office-gobmx/bin/upload_symbols.py
Guilhem Moulin eb2369be4b Fix bin/upload_symbols.py against current crashreport service
Regression since the Feb 13 2020 refactoring/upgrade of
https://crashreport.libreoffice.org by The Document Foundation's
infrastructure team.

Fix: Upgrade URLs to HTTPS and pass a Referer header along to avoid CSRF
verification errors from Django 1.11.

Change-Id: I19e7c1f11f49e736d32618f9aedea019344c5a78
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91991
Tested-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
2020-04-09 19:07:12 +02:00

55 lines
1.6 KiB
Python
Executable file

#!/usr/bin/env python3
# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
import requests, sys
import platform, configparser
def detect_platform():
return platform.system()
def main():
if len(sys.argv) < 4:
print(sys.argv)
print("Invalid number of parameters")
print("Usage: upload-symbols.py symbols.zip config.ini \"long explanation\" [--system]")
sys.exit(1)
base_url = "https://crashreport.libreoffice.org/"
upload_url = base_url + "upload/"
login_url = base_url + "accounts/login/"
config = configparser.ConfigParser()
config.read(sys.argv[2])
user = config["CrashReport"]["User"]
password = config["CrashReport"]["Password"]
platform = detect_platform()
files = {'symbols': open(sys.argv[1], 'rb')}
data = {'version': sys.argv[3], 'platform': platform}
if len(sys.argv) > 4 and sys.argv[4] == "--system":
data['system'] = True
session = requests.session()
session.get(login_url)
csrftoken = session.cookies['csrftoken']
login_data = { 'username': user,'password': password,
'csrfmiddlewaretoken': csrftoken }
headers = { "Referer": base_url }
r1 = session.post(login_url, headers=headers, data=login_data)
data['csrfmiddlewaretoken'] = csrftoken
r = session.post(upload_url, headers=headers, files=files, data=data)
if __name__ == "__main__":
main()
# vim: set shiftwidth=4 softtabstop=4 expandtab: