-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathspup.py
executable file
·108 lines (91 loc) · 2.8 KB
/
spup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#!/usr/bin/env python3
#
# Copyright 2021 Sony Corporation
# SPDX-License-Identifier: MIT
#
"""
Upload files to a given Sharepoint site/subsite.
"""
import argparse
from config import FilesConfig, Logger, RuntimeConfig, SharepointConfig
from sputil import Sharepoint
class Uploader:
"""
Uploads files to Sharepoint.
"""
def __init__(self, params):
self._debug = params.debug
self._subsite = params.subsite
self._logger = Logger("spuppy", "logs", params.debug)
self._path = params.directory
self._files = params.files
self._out = params.out
def main(self):
"""
Orchestrate upload of a file using given configurations.
"""
spconf = SharepointConfig(self._subsite)
runtime = RuntimeConfig(self._debug)
fconf = FilesConfig(self._path, self._files, self._out)
verify = fconf.verify()
if self._debug:
self._logger.debug(spconf)
self._logger.debug(runtime)
self._logger.debug(fconf)
if verify:
for v in verify:
self._logger.error(v)
return
if self._debug:
self._logger.debug(fconf)
try:
sp = Sharepoint(fconf, spconf, runtime, self._logger)
sp.get_token()
if self._debug:
self._logger.debug(sp)
if not sp.verify_url():
return
if fconf.out_folder and not sp.add_folder():
return
sp.upload_files()
except Exception as e: # pylint: disable=broad-except
# This `except` is intentionally broad to capture it in
# the log for posterity. main exists anyway.
self._logger.exception(e)
if __name__ == "__main__":
ARGS = argparse.ArgumentParser(
description="Upload a file to a specified folder of a Sharepoint site."
)
ARGS.add_argument(
"-d",
"--debug",
help="print additional debug information",
action="store_true",
)
ARGS.add_argument(
"-s",
"--subsite",
help="subsite of a configured Sharepoint site",
required=False,
)
ARGS.add_argument(
"-i",
"--directory",
help="folder with files to upload (if no files specified, upload the whole directory)",
required=False,
)
ARGS.add_argument(
"-f",
"--files",
help="comma separated list of files to upload (if not specified, upload the -i directory)",
required=False,
)
ARGS.add_argument(
"-o",
"--out",
help="folder name to create at the target site (if not specified, "
"use the folder name of -i directory",
required=False,
)
PARAMS = ARGS.parse_args()
Uploader(PARAMS).main()