summaryrefslogtreecommitdiff
path: root/plugin.video.watchbox/resources/lib/cmdargs.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugin.video.watchbox/resources/lib/cmdargs.py')
-rw-r--r--plugin.video.watchbox/resources/lib/cmdargs.py52
1 files changed, 52 insertions, 0 deletions
diff --git a/plugin.video.watchbox/resources/lib/cmdargs.py b/plugin.video.watchbox/resources/lib/cmdargs.py
new file mode 100644
index 0000000..d0e50bf
--- /dev/null
+++ b/plugin.video.watchbox/resources/lib/cmdargs.py
@@ -0,0 +1,52 @@
+# -*- coding: utf-8 -*-
+# Watchbox
+# Copyright (C) 2017 MrKrabat
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+import sys
+import urllib
+import urlparse
+
+
+def parse():
+ """Decode arguments
+ """
+ if (sys.argv[2]):
+ return Args(urlparse.parse_qs(sys.argv[2][1:]))
+ else:
+ return Args({})
+
+
+class Args(object):
+ """Arguments class
+ Hold all arguments passed to the script and also persistent user data and
+ reference to the addon. It is intended to hold all data necessary for the
+ script.
+ """
+ def __init__(self, kwargs):
+ """Initialize arguments object
+ Hold also references to the addon which can't be kept at module level.
+ """
+ self._addon = sys.modules["__main__"]._addon
+ self._addonname = sys.modules["__main__"]._plugin
+ self._addonid = sys.modules["__main__"]._plugId
+ self._cj = None
+ self._login = False
+
+ for key, value in kwargs.iteritems():
+ if value:
+ kwargs[key] = urllib.unquote_plus(value[0])
+
+ self.__dict__.update(kwargs)