diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
commit | ed5640d8b587fbcfed7dd7967f3de04b37a76f26 (patch) | |
tree | 7a5f7c6c9d02226d7471cb3cc8fbbf631b415303 /bin/upload_symbols.py | |
parent | Initial commit. (diff) | |
download | libreoffice-cb75148ebd0135178ff46f89a30139c44f8d2040.tar.xz libreoffice-cb75148ebd0135178ff46f89a30139c44f8d2040.zip |
Adding upstream version 4:7.4.7.upstream/4%7.4.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'bin/upload_symbols.py')
-rwxr-xr-x | bin/upload_symbols.py | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/bin/upload_symbols.py b/bin/upload_symbols.py new file mode 100755 index 000000000..537675102 --- /dev/null +++ b/bin/upload_symbols.py @@ -0,0 +1,57 @@ +#!/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 configparser +import platform +import argparse +import requests + + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument('symbols_dir') + parser.add_argument('config_dir') + parser.add_argument('version') + group = parser.add_mutually_exclusive_group() + group.add_argument('--system', action='store_true') + group.add_argument('--platform', choices=('Windows', 'Linux')) + args = parser.parse_args() + + base_url = "https://crashreport.libreoffice.org/" + upload_url = base_url + "upload/" + login_url = base_url + "accounts/login/" + + config = configparser.ConfigParser() + config.read(args.config_dir) + + user = config["CrashReport"]["User"] + password = config["CrashReport"]["Password"] + + files = {'symbols': open(args.symbols_dir, 'rb')} + data = {'version': args.version, + 'system': args.system, + 'platform': platform.system() if args.platform is None else args.platform} + + session = requests.session() + session.get(login_url) + csrftoken = session.cookies['csrftoken'] + + login_data = {'username': user, 'password': password, + 'csrfmiddlewaretoken': csrftoken} + headers = {"Referer": base_url} + session.post(login_url, headers=headers, data=login_data) + + data['csrfmiddlewaretoken'] = csrftoken + + session.post(upload_url, headers=headers, files=files, data=data) + + +if __name__ == "__main__": + main() + +# vim: set shiftwidth=4 softtabstop=4 expandtab: |