From a5c7de6b680c2041893ae35c0346657ce19eede9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Arnauts?= Date: Thu, 19 Mar 2020 16:45:31 +0100 Subject: [PATCH] First version of the addon --- .codecov.yml | 12 + .gitignore | 22 + .pylintrc | 15 + .travis.yml | 27 + CHANGELOG.md | 0 LICENSE | 674 ++++++++++++++++++ Makefile | 69 ++ addon.py | 16 + addon.xml | 27 + requirements.txt | 9 + resources/__init__.py | 0 .../resource.language.en_gb/strings.po | 135 ++++ .../resource.language.nl_nl/strings.po | 136 ++++ resources/lib/__init__.py | 0 resources/lib/addon.py | 106 +++ resources/lib/kodilogging.py | 44 ++ resources/lib/kodiutils.py | 544 ++++++++++++++ resources/lib/modules/__init__.py | 0 resources/lib/modules/catalog.py | 149 ++++ resources/lib/modules/channels.py | 102 +++ resources/lib/modules/menu.py | 119 ++++ resources/lib/modules/player.py | 52 ++ resources/lib/modules/search.py | 46 ++ resources/lib/modules/tvguide.py | 170 +++++ resources/lib/viervijfzes/__init__.py | 50 ++ resources/lib/viervijfzes/auth.py | 106 +++ resources/lib/viervijfzes/auth_awsidp.py | 352 +++++++++ resources/lib/viervijfzes/content.py | 329 +++++++++ resources/lib/viervijfzes/epg.py | 147 ++++ resources/lib/viervijfzes/search.py | 54 ++ resources/logos/vier-background.jpg | Bin 0 -> 45622 bytes resources/logos/vier.png | Bin 0 -> 3574 bytes resources/logos/vijf-background.jpg | Bin 0 -> 57998 bytes resources/logos/vijf.png | Bin 0 -> 5379 bytes resources/logos/zes-background.jpg | Bin 0 -> 60165 bytes resources/logos/zes.png | Bin 0 -> 5414 bytes resources/settings.xml | 8 + test/__init__.py | 6 + test/test_api.py | 58 ++ test/test_auth.py | 36 + test/test_epg.py | 69 ++ test/test_search.py | 39 + test/userdata/credentials.json.example | 4 + test/userdata/global_settings.json | 6 + test/xbmc.py | 244 +++++++ test/xbmcaddon.py | 51 ++ test/xbmcextra.py | 137 ++++ test/xbmcgui.py | 223 ++++++ test/xbmcplugin.py | 111 +++ test/xbmcvfs.py | 71 ++ tox.ini | 26 + 51 files changed, 4601 insertions(+) create mode 100644 .codecov.yml create mode 100644 .gitignore create mode 100644 .pylintrc create mode 100644 .travis.yml create mode 100644 CHANGELOG.md create mode 100644 LICENSE create mode 100644 Makefile create mode 100644 addon.py create mode 100644 addon.xml create mode 100644 requirements.txt create mode 100644 resources/__init__.py create mode 100644 resources/language/resource.language.en_gb/strings.po create mode 100644 resources/language/resource.language.nl_nl/strings.po create mode 100644 resources/lib/__init__.py create mode 100644 resources/lib/addon.py create mode 100644 resources/lib/kodilogging.py create mode 100644 resources/lib/kodiutils.py create mode 100644 resources/lib/modules/__init__.py create mode 100644 resources/lib/modules/catalog.py create mode 100644 resources/lib/modules/channels.py create mode 100644 resources/lib/modules/menu.py create mode 100644 resources/lib/modules/player.py create mode 100644 resources/lib/modules/search.py create mode 100644 resources/lib/modules/tvguide.py create mode 100644 resources/lib/viervijfzes/__init__.py create mode 100644 resources/lib/viervijfzes/auth.py create mode 100644 resources/lib/viervijfzes/auth_awsidp.py create mode 100644 resources/lib/viervijfzes/content.py create mode 100644 resources/lib/viervijfzes/epg.py create mode 100644 resources/lib/viervijfzes/search.py create mode 100644 resources/logos/vier-background.jpg create mode 100644 resources/logos/vier.png create mode 100644 resources/logos/vijf-background.jpg create mode 100644 resources/logos/vijf.png create mode 100644 resources/logos/zes-background.jpg create mode 100644 resources/logos/zes.png create mode 100644 resources/settings.xml create mode 100644 test/__init__.py create mode 100644 test/test_api.py create mode 100644 test/test_auth.py create mode 100644 test/test_epg.py create mode 100644 test/test_search.py create mode 100644 test/userdata/credentials.json.example create mode 100644 test/userdata/global_settings.json create mode 100644 test/xbmc.py create mode 100644 test/xbmcaddon.py create mode 100644 test/xbmcextra.py create mode 100644 test/xbmcgui.py create mode 100644 test/xbmcplugin.py create mode 100644 test/xbmcvfs.py create mode 100644 tox.ini diff --git a/.codecov.yml b/.codecov.yml new file mode 100644 index 0000000..584cc4c --- /dev/null +++ b/.codecov.yml @@ -0,0 +1,12 @@ +coverage: + range: 50..100 + round: nearest + status: + project: + default: + target: 75% + threshold: 6% + patch: false +comment: false +ignore: +- "test" diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f9638a3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ +*.pyc +*.pyo +.DS* +.pylint_rc +/.idea +/.project +/.pydevproject +/.settings +Thumbs.db +*~ +.cache + +.coverage +.tox/ +test/userdata/addon_settings.json +test/userdata/credentials.json +test/userdata/temp +test/userdata/token.json +test/userdata/cache +test/userdata/addon_data +test/userdata/tokens +test/cdm diff --git a/.pylintrc b/.pylintrc new file mode 100644 index 0000000..e29df18 --- /dev/null +++ b/.pylintrc @@ -0,0 +1,15 @@ +[MESSAGES CONTROL] +disable= + bad-option-value, + duplicate-code, + fixme, + import-outside-toplevel, + invalid-name, + line-too-long, + old-style-class, + too-few-public-methods, + too-many-arguments, + too-many-branches, + too-many-instance-attributes, + too-many-locals, + too-many-public-methods, diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..a1f9e9c --- /dev/null +++ b/.travis.yml @@ -0,0 +1,27 @@ +language: python + +python: + - '2.7' + - '3.5' + - '3.6' + - '3.7' + - '3.8' + +os: linux + +env: + PYTHONPATH: :test + PYTHONIOENCODING: utf-8 + +install: + - pip install -r requirements.txt + +script: + - make check-pylint + - make check-tox + - make check-translations + - if [ "$TRAVIS_PYTHON_VERSION" == "3.8" ]; then pip install kodi-addon-checker && make check-addon; fi + - make test + +after_success: + - codecov diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..e69de29 diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..9cecc1d --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + {one line to give the program's name and a brief idea of what it does.} + Copyright (C) {year} {name of author} + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + {project} Copyright (C) {year} {fullname} + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ac0f952 --- /dev/null +++ b/Makefile @@ -0,0 +1,69 @@ +ENVS = py27,py36,py37 +export PYTHONPATH := $(CURDIR):$(CURDIR)/test + +# Collect information to build as sensible package name +name = plugin.video.viervijfzes +version = $(shell xmllint --xpath 'string(/addon/@version)' addon.xml) +git_branch = $(shell git rev-parse --abbrev-ref HEAD) +git_hash = $(shell git rev-parse --short HEAD) +zip_name = $(name)-$(version)-$(git_branch)-$(git_hash).zip +include_files = addon.py addon.xml CHANGELOG.md LICENSE README.md resources/ +include_paths = $(patsubst %,$(name)/%,$(include_files)) +exclude_files = \*.new \*.orig \*.pyc \*.pyo + +all: check test build +zip: build + +check: check-pylint check-tox check-translations + +check-pylint: + @echo ">>> Running pylint checks" + @pylint *.py resources/ test/ + +check-tox: + @echo ">>> Running tox checks" + @tox -q + +check-translations: + @echo ">>> Running translation checks" + @msgcmp resources/language/resource.language.nl_nl/strings.po resources/language/resource.language.en_gb/strings.po + +check-addon: clean build + @echo ">>> Running addon checks" + $(eval TMPDIR := $(shell mktemp -d)) + @unzip ../${zip_name} -d ${TMPDIR} + cd ${TMPDIR} && kodi-addon-checker --branch=leia + @rm -rf ${TMPDIR} + +test: test-unit + +test-unit: + @echo ">>> Running unit tests" +ifdef TRAVIS_JOB_ID + @coverage run -m unittest discover +else + @python -m unittest discover -v -b -f +endif + +clean: + @find . -name '*.pyc' -type f -delete + @find . -name '*.pyo' -type f -delete + @find . -name '__pycache__' -type d -delete + @rm -rf .pytest_cache/ .tox/ test/cdm test/userdata/temp + @rm -f *.log .coverage + +build: clean + @echo ">>> Building package" + @rm -f ../$(zip_name) + cd ..; zip -r $(zip_name) $(include_paths) -x $(exclude_files) + @echo "Successfully wrote package as: ../$(zip_name)" + +release: build + rm -rf ../repo-plugins/plugin.video.viervijfzes/* + unzip ../$(zip_name) -d ../repo-plugins/ + +run: + @echo ">>> Run CLI" + python test/run.py / + +.PHONY: check test diff --git a/addon.py b/addon.py new file mode 100644 index 0000000..d63bec4 --- /dev/null +++ b/addon.py @@ -0,0 +1,16 @@ +# -*- coding: utf-8 -*- +"""Addon entry point""" + +from __future__ import absolute_import, division, unicode_literals + +import xbmcaddon + +from resources.lib import kodiutils + +kodiutils.ADDON = xbmcaddon.Addon() + +if __name__ == '__main__': + from sys import argv + from resources.lib.addon import run + + run(argv) diff --git a/addon.xml b/addon.xml new file mode 100644 index 0000000..44993bd --- /dev/null +++ b/addon.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + video + + + Watch content from VIER, VIJF and ZES. + all + GPL-3.0 + v0.1.0 +- First release + + https://github.com/add-ons/plugin.video.viervijfzes + + resources/icon.png + resources/fanart.png + + + + diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..a1466dd --- /dev/null +++ b/requirements.txt @@ -0,0 +1,9 @@ +codecov +git+git://github.com/emilsvennesson/script.module.inputstreamhelper.git@master#egg=inputstreamhelper +polib +pylint +python-dateutil +requests +git+git://github.com/dagwieers/kodi-plugin-routing.git@setup#egg=routing +tox-travis +six \ No newline at end of file diff --git a/resources/__init__.py b/resources/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/resources/language/resource.language.en_gb/strings.po b/resources/language/resource.language.en_gb/strings.po new file mode 100644 index 0000000..4eca69c --- /dev/null +++ b/resources/language/resource.language.en_gb/strings.po @@ -0,0 +1,135 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +### MENUS +msgctxt "#30001" +msgid "A-Z" +msgstr "" + +msgctxt "#30002" +msgid "Alphabetically sorted list of programs" +msgstr "" + +msgctxt "#30007" +msgid "Channels" +msgstr "" + +msgctxt "#30008" +msgid "Show channel based overview" +msgstr "" + +msgctxt "#30009" +msgid "Search" +msgstr "" + +msgctxt "#30010" +msgid "Search trough the catalogue" +msgstr "" + +msgctxt "#30013" +msgid "TV guide" +msgstr "" + +msgctxt "#30014" +msgid "Browse the TV Guide" +msgstr "" + + +### SUBMENUS +msgctxt "#30053" +msgid "TV Guide for [B]{channel}[/B]" +msgstr "" + +msgctxt "#30054" +msgid "Browse the TV Guide for [B]{channel}[/B]" +msgstr "" + +msgctxt "#30055" +msgid "Catalog for [B]{channel}[/B]" +msgstr "" + +msgctxt "#30056" +msgid "Browse the Catalog for [B]{channel}[/B]" +msgstr "" + + +### CONTEXT MENU +msgctxt "#30102" +msgid "Go to Program" +msgstr "" + + +### CODE +msgctxt "#30204" +msgid "All seasons" +msgstr "" + +msgctxt "#30205" +msgid "Season {season}" +msgstr "" + +msgctxt "#30206" +msgid "Watch [B]{label}[/B] on YouTube" +msgstr "" + + +### Dates +msgctxt "#30301" +msgid "Yesterday" +msgstr "" + +msgctxt "#30302" +msgid "Today" +msgstr "" + +msgctxt "#30303" +msgid "Tomorrow" +msgstr "" + + +### MESSAGES +msgctxt "#30709" +msgid "Geo-blocked video" +msgstr "" + +msgctxt "#30710" +msgid "This video is geo-blocked and can't be played from your location." +msgstr "" + +msgctxt "#30711" +msgid "Unavailable video" +msgstr "" + +msgctxt "#30712" +msgid "The video is unavailable and can't be played right now." +msgstr "" + +msgctxt "#30713" +msgid "The requested video was not found in the guide." +msgstr "" + +msgctxt "#30717" +msgid "This program is not available in the Vier/Vijf/Zes catalogue." +msgstr "" + + +### SETTINGS +msgctxt "#30800" +msgid "Credentials" +msgstr "" + +msgctxt "#30801" +msgid "Vier/Vijf/Zes credentials" +msgstr "" + +msgctxt "#30803" +msgid "Email address" +msgstr "" + +msgctxt "#30805" +msgid "Password" +msgstr "" diff --git a/resources/language/resource.language.nl_nl/strings.po b/resources/language/resource.language.nl_nl/strings.po new file mode 100644 index 0000000..585ae26 --- /dev/null +++ b/resources/language/resource.language.nl_nl/strings.po @@ -0,0 +1,136 @@ +msgid "" +msgstr "" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +### MENUS +msgctxt "#30001" +msgid "A-Z" +msgstr "A-Z" + +msgctxt "#30002" +msgid "Alphabetically sorted list of programs" +msgstr "Volledige lijst van programma's" + +msgctxt "#30007" +msgid "Channels" +msgstr "Kanalen" + +msgctxt "#30008" +msgid "Show channel based overview" +msgstr "Toon een overzicht per tv-kanaal" + +msgctxt "#30009" +msgid "Search" +msgstr "Zoeken" + +msgctxt "#30010" +msgid "Search trough the catalogue" +msgstr "Doorzoek de catalogus" + +msgctxt "#30013" +msgid "TV guide" +msgstr "Tv-gids" + +msgctxt "#30014" +msgid "Browse the TV Guide" +msgstr "Doorblader de tv-gids" + + +### SUBMENUS +msgctxt "#30053" +msgid "TV Guide for [B]{channel}[/B]" +msgstr "TV-gids voor [B]{channel}[/B]" + +msgctxt "#30054" +msgid "Browse the TV Guide for [B]{channel}[/B]" +msgstr "Doorblader de TV-gids voor [B]{channel}[/B]" + +msgctxt "#30055" +msgid "Catalog for [B]{channel}[/B]" +msgstr "Catalogus voor [B]{channel}[/B]" + +msgctxt "#30056" +msgid "Browse the Catalog for [B]{channel}[/B]" +msgstr "Doorblader de catalogus voor [B]{channel}[/B]" + + +### CONTEXT MENU +msgctxt "#30102" +msgid "Go to Program" +msgstr "Ga naar programma" + + +### CODE +msgctxt "#30204" +msgid "All seasons" +msgstr "Alle seizoenen" + +msgctxt "#30205" +msgid "Season {season}" +msgstr "Seizoen {season}" + +msgctxt "#30206" +msgid "Watch [B]{label}[/B] on YouTube" +msgstr "Bekijk [B]{label}[/B] op YouTube" + + +### Dates +msgctxt "#30301" +msgid "Yesterday" +msgstr "Gisteren" + +msgctxt "#30302" +msgid "Today" +msgstr "Vandaag" + +msgctxt "#30303" +msgid "Tomorrow" +msgstr "Morgen" + + +### MESSAGES +msgctxt "#30709" +msgid "Geo-blocked video" +msgstr "Video is geografisch geblokkeerd" + +msgctxt "#30710" +msgid "This video is geo-blocked and can't be played from your location." +msgstr "Deze video is geografisch geblokkeerd en kan niet worden afgespeeld vanaf je locatie." + +msgctxt "#30711" +msgid "Unavailable video" +msgstr "Onbeschikbare video" + +msgctxt "#30712" +msgid "The video is unavailable and can't be played right now." +msgstr "Deze video is niet beschikbaar en kan nu niet worden afgespeeld." + +msgctxt "#30713" +msgid "The requested video was not found in the guide." +msgstr "De gevraagde video werd niet gevonden in de tv-gids." + +msgctxt "#30717" +msgid "This program is not available in the Vier/Vijf/Zes catalogue." +msgstr "Dit programma is niet beschikbaar in de Vier/Vijf/Zes catalogus." + + +### SETTINGS +msgctxt "#30800" +msgid "Credentials" +msgstr "Inloggegevens" + +msgctxt "#30801" +msgid "Vier/Vijf/Zes credentials" +msgstr "Vier/Vijf/Zes inloggegevens" + +msgctxt "#30803" +msgid "Email address" +msgstr "E-mailadres" + +msgctxt "#30805" +msgid "Password" +msgstr "Wachtwoord" diff --git a/resources/lib/__init__.py b/resources/lib/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/resources/lib/addon.py b/resources/lib/addon.py new file mode 100644 index 0000000..a8fab98 --- /dev/null +++ b/resources/lib/addon.py @@ -0,0 +1,106 @@ +# -*- coding: utf-8 -*- +""" Addon code """ + +from __future__ import absolute_import, division, unicode_literals + +from routing import Plugin + +from resources.lib import kodilogging + +kodilogging.config() +routing = Plugin() + + +@routing.route('/') +def show_main_menu(): + """ Show the main menu """ + from resources.lib.modules.menu import Menu + Menu().show_mainmenu() + + +@routing.route('/channels') +def show_channels(): + """ Shows Live TV channels """ + from resources.lib.modules.channels import Channels + Channels().show_channels() + + +@routing.route('/channels/') +def show_channel_menu(channel): + """ Shows Live TV channels """ + from resources.lib.modules.channels import Channels + Channels().show_channel_menu(channel) + + +@routing.route('/tvguide/channel/') +def show_tvguide_channel(channel): + """ Shows the dates in the tv guide """ + from resources.lib.modules.tvguide import TvGuide + TvGuide().show_tvguide_channel(channel) + + +@routing.route('/tvguide/channel//') +def show_tvguide_detail(channel=None, date=None): + """ Shows the programs of a specific date in the tv guide """ + from resources.lib.modules.tvguide import TvGuide + TvGuide().show_tvguide_detail(channel, date) + + +@routing.route('/catalog') +def show_catalog(): + """ Show the catalog """ + from resources.lib.modules.catalog import Catalog + Catalog().show_catalog() + + +@routing.route('/catalog/by-channel/') +def show_catalog_channel(channel): + """ Show a category in the catalog """ + from resources.lib.modules.catalog import Catalog + Catalog().show_catalog_channel(channel) + + +@routing.route('/catalog/program//') +def show_catalog_program(channel, program): + """ Show a program from the catalog """ + from resources.lib.modules.catalog import Catalog + Catalog().show_program(channel, program) + + +@routing.route('/program/program///') +def show_catalog_program_season(channel, program, season): + """ Show a program from the catalog """ + from resources.lib.modules.catalog import Catalog + Catalog().show_program_season(channel, program, int(season)) + + +@routing.route('/search') +@routing.route('/search/') +def show_search(query=None): + """ Shows the search dialog """ + from resources.lib.modules.search import Search + Search().show_search(query) + + +@routing.route('/play/catalog//') +def play(channel, uuid): + """ Play the requested item """ + from resources.lib.modules.player import Player + Player().play(channel, uuid) + + +@routing.route('/play/page//') +def play_from_page(channel, page): + """ Play the requested item """ + try: # Python 3 + from urllib.parse import unquote + except ImportError: # Python 2 + from urllib import unquote + + from resources.lib.modules.player import Player + Player().play_from_page(channel, unquote(page)) + + +def run(params): + """ Run the routing plugin """ + routing.run(params) diff --git a/resources/lib/kodilogging.py b/resources/lib/kodilogging.py new file mode 100644 index 0000000..bc842e3 --- /dev/null +++ b/resources/lib/kodilogging.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +"""Log handler for Kodi""" + +from __future__ import unicode_literals + +import logging + +import xbmc +import xbmcaddon + + +class KodiLogHandler(logging.StreamHandler): + """ A log handler for Kodi """ + + def __init__(self): + logging.StreamHandler.__init__(self) + addon_id = xbmcaddon.Addon().getAddonInfo("id") + formatter = logging.Formatter("[{}] [%(name)s] %(message)s".format(addon_id)) + self.setFormatter(formatter) + + def emit(self, record): + """ Emit a log message """ + levels = { + logging.CRITICAL: xbmc.LOGFATAL, + logging.ERROR: xbmc.LOGERROR, + logging.WARNING: xbmc.LOGWARNING, + logging.INFO: xbmc.LOGINFO, + logging.DEBUG: xbmc.LOGDEBUG, + logging.NOTSET: xbmc.LOGNONE, + } + try: + xbmc.log(self.format(record), levels[record.levelno]) + except UnicodeEncodeError: + xbmc.log(self.format(record).encode('utf-8', 'ignore'), levels[record.levelno]) + + def flush(self): + """ Flush the messages """ + + +def config(): + """ Setup the logger with this handler """ + logger = logging.getLogger() + logger.addHandler(KodiLogHandler()) + logger.setLevel(logging.DEBUG) diff --git a/resources/lib/kodiutils.py b/resources/lib/kodiutils.py new file mode 100644 index 0000000..5e6ffed --- /dev/null +++ b/resources/lib/kodiutils.py @@ -0,0 +1,544 @@ +# -*- coding: utf-8 -*- +"""All functionality that requires Kodi imports""" + +from __future__ import absolute_import, division, unicode_literals + +import logging +from contextlib import contextmanager + +import xbmc +import xbmcaddon +import xbmcgui +import xbmcplugin + +ADDON = xbmcaddon.Addon() + +SORT_METHODS = dict( + unsorted=xbmcplugin.SORT_METHOD_UNSORTED, + label=xbmcplugin.SORT_METHOD_LABEL_IGNORE_FOLDERS, + episode=xbmcplugin.SORT_METHOD_EPISODE, + duration=xbmcplugin.SORT_METHOD_DURATION, + year=xbmcplugin.SORT_METHOD_VIDEO_YEAR, + date=xbmcplugin.SORT_METHOD_DATE, +) +DEFAULT_SORT_METHODS = [ + 'unsorted', 'label' +] + +_LOGGER = logging.getLogger('kodiutils') + + +class TitleItem: + """ This helper object holds all information to be used with Kodi xbmc's ListItem object """ + + def __init__(self, title, path=None, art_dict=None, info_dict=None, prop_dict=None, stream_dict=None, context_menu=None, subtitles_path=None, + is_playable=False): + """ The constructor for the TitleItem class + :type title: str + :type path: str + :type art_dict: dict + :type info_dict: dict + :type prop_dict: dict + :type stream_dict: dict + :type context_menu: list[tuple[str, str]] + :type subtitles_path: list[str] + :type is_playable: bool + """ + self.title = title + self.path = path + self.art_dict = art_dict + self.info_dict = info_dict + self.stream_dict = stream_dict + self.prop_dict = prop_dict + self.context_menu = context_menu + self.subtitles_path = subtitles_path + self.is_playable = is_playable + + def __repr__(self): + return "%r" % self.__dict__ + + +class SafeDict(dict): + """A safe dictionary implementation that does not break down on missing keys""" + + def __missing__(self, key): + """Replace missing keys with the original placeholder""" + return '{' + key + '}' + + +def to_unicode(text, encoding='utf-8', errors='strict'): + """Force text to unicode""" + if isinstance(text, bytes): + return text.decode(encoding, errors=errors) + return text + + +def from_unicode(text, encoding='utf-8', errors='strict'): + """Force unicode to text""" + import sys + if sys.version_info.major == 2 and isinstance(text, unicode): # noqa: F821; pylint: disable=undefined-variable + return text.encode(encoding, errors) + return text + + +def addon_icon(): + """Cache and return add-on icon""" + return get_addon_info('icon') + + +def addon_id(): + """Cache and return add-on ID""" + return get_addon_info('id') + + +def addon_fanart(): + """Cache and return add-on fanart""" + return get_addon_info('fanart') + + +def addon_name(): + """Cache and return add-on name""" + return get_addon_info('name') + + +def addon_path(): + """Cache and return add-on path""" + return get_addon_info('path') + + +def addon_profile(): + """Cache and return add-on profile""" + return to_unicode(xbmc.translatePath(ADDON.getAddonInfo('profile'))) + + +def url_for(name, *args, **kwargs): + """Wrapper for routing.url_for() to lookup by name""" + from resources.lib import addon + return addon.routing.url_for(getattr(addon, name), *args, **kwargs) + + +def show_listing(title_items, category=None, sort=None, content=None, cache=True): + """ Show a virtual directory in Kodi """ + from resources.lib import addon + + if content: + # content is one of: files, songs, artists, albums, movies, tvshows, episodes, musicvideos, videos, images, games + xbmcplugin.setContent(addon.routing.handle, content=content) + + # Jump through hoops to get a stable breadcrumbs implementation + category_label = '' + if category: + if not content: + category_label = addon_name() + ' / ' + if isinstance(category, int): + category_label += localize(category) + else: + category_label += category + elif not content: + category_label = addon_name() + + xbmcplugin.setPluginCategory(handle=addon.routing.handle, category=category_label) + + # Add all sort methods to GUI (start with preferred) + if sort is None: + sort = DEFAULT_SORT_METHODS + elif not isinstance(sort, list): + sort = [sort] + DEFAULT_SORT_METHODS + + for key in sort: + xbmcplugin.addSortMethod(handle=addon.routing.handle, sortMethod=SORT_METHODS[key]) + + # Add the listings + listing = [] + for title_item in title_items: + # Three options: + # - item is a virtual directory/folder (not playable, path) + # - item is a playable file (playable, path) + # - item is non-actionable item (not playable, no path) + is_folder = bool(not title_item.is_playable and title_item.path) + is_playable = bool(title_item.is_playable and title_item.path) + + list_item = xbmcgui.ListItem(label=title_item.title, path=title_item.path) + + if title_item.prop_dict: + list_item.setProperties(title_item.prop_dict) + list_item.setProperty(key='IsPlayable', value='true' if is_playable else 'false') + + list_item.setIsFolder(is_folder) + + if title_item.art_dict: + list_item.setArt(title_item.art_dict) + + if title_item.info_dict: + # type is one of: video, music, pictures, game + list_item.setInfo(type='video', infoLabels=title_item.info_dict) + + if title_item.stream_dict: + # type is one of: video, audio, subtitle + list_item.addStreamInfo('video', title_item.stream_dict) + + if title_item.context_menu: + list_item.addContextMenuItems(title_item.context_menu) + + is_folder = bool(not title_item.is_playable and title_item.path) + url = title_item.path if title_item.path else None + listing.append((url, list_item, is_folder)) + + succeeded = xbmcplugin.addDirectoryItems(addon.routing.handle, listing, len(listing)) + xbmcplugin.endOfDirectory(addon.routing.handle, succeeded, cacheToDisc=cache) + + +def play(stream, title=None, art_dict=None, info_dict=None, prop_dict=None): + """Play the given stream""" + from resources.lib.addon import routing + + play_item = xbmcgui.ListItem(label=title, path=stream) + if art_dict: + play_item.setArt(art_dict) + if info_dict: + play_item.setInfo(type='video', infoLabels=info_dict) + if prop_dict: + play_item.setProperties(prop_dict) + + xbmcplugin.setResolvedUrl(routing.handle, True, listitem=play_item) + + +def get_search_string(heading='', message=''): + """ Ask the user for a search string """ + search_string = None + keyboard = xbmc.Keyboard(message, heading) + keyboard.doModal() + if keyboard.isConfirmed(): + search_string = to_unicode(keyboard.getText()) + return search_string + + +def ok_dialog(heading='', message=''): + """Show Kodi's OK dialog""" + from xbmcgui import Dialog + if not heading: + heading = addon_name() + return Dialog().ok(heading=heading, line1=message) + + +def notification(heading='', message='', icon='info', time=4000): + """Show a Kodi notification""" + from xbmcgui import Dialog + if not heading: + heading = addon_name() + if not icon: + icon = addon_icon() + Dialog().notification(heading=heading, message=message, icon=icon, time=time) + + +def multiselect(heading='', options=None, autoclose=0, preselect=None, use_details=False): + """Show a Kodi multi-select dialog""" + from xbmcgui import Dialog + if not heading: + heading = addon_name() + return Dialog().multiselect(heading=heading, options=options, autoclose=autoclose, preselect=preselect, useDetails=use_details) + + +def progress(heading='', message=''): + """ Show a Kodi progress dialog """ + from xbmcgui import DialogProgress + if not heading: + heading = ADDON.getAddonInfo('name') + dialog_progress = DialogProgress() + dialog_progress.create(heading=heading, line1=message) + return dialog_progress + + +def set_locale(): + """Load the proper locale for date strings, only once""" + if hasattr(set_locale, 'cached'): + return getattr(set_locale, 'cached') + from locale import Error, LC_ALL, setlocale + locale_lang = get_global_setting('locale.language').split('.')[-1] + locale_lang = locale_lang[:-2] + locale_lang[-2:].upper() + # NOTE: setlocale() only works if the platform supports the Kodi configured locale + try: + setlocale(LC_ALL, locale_lang) + except (Error, ValueError) as exc: + if locale_lang != 'en_GB': + _LOGGER.debug("Your system does not support locale '{locale}': {error}", locale=locale_lang, error=exc) + set_locale.cached = False + return False + set_locale.cached = True + return True + + +def localize(string_id, **kwargs): + """Return the translated string from the .po language files, optionally translating variables""" + if kwargs: + from string import Formatter + return Formatter().vformat(ADDON.getLocalizedString(string_id), (), SafeDict(**kwargs)) + return ADDON.getLocalizedString(string_id) + + +def get_setting(key, default=None): + """Get an add-on setting as string""" + try: + value = to_unicode(ADDON.getSetting(key)) + except RuntimeError: # Occurs when the add-on is disabled + return default + if value == '' and default is not None: + return default + return value + + +def get_setting_bool(key, default=None): + """Get an add-on setting as boolean""" + try: + return ADDON.getSettingBool(key) + except (AttributeError, TypeError): # On Krypton or older, or when not a boolean + value = get_setting(key, default) + if value not in ('false', 'true'): + return default + return bool(value == 'true') + except RuntimeError: # Occurs when the add-on is disabled + return default + + +def get_setting_int(key, default=None): + """Get an add-on setting as integer""" + try: + return ADDON.getSettingInt(key) + except (AttributeError, TypeError): # On Krypton or older, or when not an integer + value = get_setting(key, default) + try: + return int(value) + except ValueError: + return default + except RuntimeError: # Occurs when the add-on is disabled + return default + + +def get_setting_float(key, default=None): + """Get an add-on setting""" + try: + return ADDON.getSettingNumber(key) + except (AttributeError, TypeError): # On Krypton or older, or when not a float + value = get_setting(key, default) + try: + return float(value) + except ValueError: + return default + except RuntimeError: # Occurs when the add-on is disabled + return default + + +def set_setting(key, value): + """Set an add-on setting""" + return ADDON.setSetting(key, from_unicode(str(value))) + + +def set_setting_bool(key, value): + """Set an add-on setting as boolean""" + try: + return ADDON.setSettingBool(key, value) + except (AttributeError, TypeError): # On Krypton or older, or when not a boolean + if value in ['false', 'true']: + return set_setting(key, value) + if value: + return set_setting(key, 'true') + return set_setting(key, 'false') + + +def set_setting_int(key, value): + """Set an add-on setting as integer""" + try: + return ADDON.setSettingInt(key, value) + except (AttributeError, TypeError): # On Krypton or older, or when not an integer + return set_setting(key, value) + + +def set_setting_float(key, value): + """Set an add-on setting""" + try: + return ADDON.setSettingNumber(key, value) + except (AttributeError, TypeError): # On Krypton or older, or when not a float + return set_setting(key, value) + + +def open_settings(): + """Open the add-in settings window, shows Credentials""" + ADDON.openSettings() + + +def get_global_setting(key): + """Get a Kodi setting""" + result = jsonrpc(method='Settings.GetSettingValue', params=dict(setting=key)) + return result.get('result', {}).get('value') + + +def get_cond_visibility(condition): + """Test a condition in XBMC""" + return xbmc.getCondVisibility(condition) + + +def has_addon(name): + """Checks if add-on is installed""" + return xbmc.getCondVisibility('System.HasAddon(%s)' % name) == 1 + + +def kodi_version(): + """Returns major Kodi version""" + return int(xbmc.getInfoLabel('System.BuildVersion').split('.')[0]) + + +def get_tokens_path(): + """Cache and return the userdata tokens path""" + if not hasattr(get_tokens_path, 'cached'): + get_tokens_path.cached = addon_profile() + 'tokens/' + return getattr(get_tokens_path, 'cached') + + +def get_cache_path(): + """Cache and return the userdata cache path""" + if not hasattr(get_cache_path, 'cached'): + get_cache_path.cached = addon_profile() + 'cache/' + return getattr(get_cache_path, 'cached') + + +def get_addon_info(key): + """Return addon information""" + return to_unicode(ADDON.getAddonInfo(key)) + + +def listdir(path): + """Return all files in a directory (using xbmcvfs)""" + from xbmcvfs import listdir as vfslistdir + return vfslistdir(path) + + +def mkdir(path): + """Create a directory (using xbmcvfs)""" + from xbmcvfs import mkdir as vfsmkdir + _LOGGER.debug("Create directory '{path}'.", path=path) + return vfsmkdir(path) + + +def mkdirs(path): + """Create directory including parents (using xbmcvfs)""" + from xbmcvfs import mkdirs as vfsmkdirs + _LOGGER.debug("Recursively create directory '{path}'.", path=path) + return vfsmkdirs(path) + + +def exists(path): + """Whether the path exists (using xbmcvfs)""" + from xbmcvfs import exists as vfsexists + return vfsexists(path) + + +@contextmanager +def open_file(path, flags='r'): + """Open a file (using xbmcvfs)""" + from xbmcvfs import File + fdesc = File(path, flags) + yield fdesc + fdesc.close() + + +def stat_file(path): + """Return information about a file (using xbmcvfs)""" + from xbmcvfs import Stat + return Stat(path) + + +def delete(path): + """Remove a file (using xbmcvfs)""" + from xbmcvfs import delete as vfsdelete + _LOGGER.debug("Delete file '{path}'.", path=path) + return vfsdelete(path) + + +def container_refresh(url=None): + """Refresh the current container or (re)load a container by URL""" + if url: + _LOGGER.debug('Execute: Container.Refresh({url})', url=url) + xbmc.executebuiltin('Container.Refresh({url})'.format(url=url)) + else: + _LOGGER.debug('Execute: Container.Refresh') + xbmc.executebuiltin('Container.Refresh') + + +def container_update(url): + """Update the current container while respecting the path history.""" + if url: + _LOGGER.debug('Execute: Container.Update({url})', url=url) + xbmc.executebuiltin('Container.Update({url})'.format(url=url)) + else: + # URL is a mandatory argument for Container.Update, use Container.Refresh instead + container_refresh() + + +def end_of_directory(): + """Close a virtual directory, required to avoid a waiting Kodi""" + from resources.lib.addon import routing + xbmcplugin.endOfDirectory(handle=routing.handle, succeeded=False, updateListing=False, cacheToDisc=False) + + +def jsonrpc(*args, **kwargs): + """Perform JSONRPC calls""" + from json import dumps, loads + + # We do not accept both args and kwargs + if args and kwargs: + _LOGGER.error('Wrong use of jsonrpc()') + return None + + # Process a list of actions + if args: + for (idx, cmd) in enumerate(args): + if cmd.get('id') is None: + cmd.update(id=idx) + if cmd.get('jsonrpc') is None: + cmd.update(jsonrpc='2.0') + return loads(xbmc.executeJSONRPC(dumps(args))) + + # Process a single action + if kwargs.get('id') is None: + kwargs.update(id=0) + if kwargs.get('jsonrpc') is None: + kwargs.update(jsonrpc='2.0') + return loads(xbmc.executeJSONRPC(dumps(kwargs))) + + +def get_cache(key, ttl=None): + """ Get an item from the cache """ + import time + path = get_cache_path() + file = '.'.join(key) + fullpath = path + file + + if not exists(fullpath): + return None + + if ttl and time.mktime(time.localtime()) - stat_file(fullpath).st_mtime() > ttl: + return None + + with open_file(fullpath, 'r') as fdesc: + try: + _LOGGER.info('Fetching {file} from cache', file=file) + import json + value = json.load(fdesc) + return value + except (ValueError, TypeError): + return None + + +def set_cache(key, data): + """ Store an item in the cache """ + path = get_cache_path() + file = '.'.join(key) + fullpath = path + file + + if not exists(path): + mkdirs(path) + + with open_file(fullpath, 'w') as fdesc: + _LOGGER.info('Storing to cache as {file}', file=file) + import json + json.dump(data, fdesc) diff --git a/resources/lib/modules/__init__.py b/resources/lib/modules/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/resources/lib/modules/catalog.py b/resources/lib/modules/catalog.py new file mode 100644 index 0000000..9647ab8 --- /dev/null +++ b/resources/lib/modules/catalog.py @@ -0,0 +1,149 @@ +# -*- coding: utf-8 -*- +""" Catalog module """ + +from __future__ import absolute_import, division, unicode_literals + +import logging + +from resources.lib import kodiutils +from resources.lib.kodiutils import TitleItem +from resources.lib.modules.menu import Menu +from resources.lib.viervijfzes import CHANNELS +from resources.lib.viervijfzes.auth import AuthApi +from resources.lib.viervijfzes.content import ContentApi, UnavailableException + +_LOGGER = logging.getLogger('catalog') + + +class Catalog: + """ Menu code related to the catalog """ + + def __init__(self): + """ Initialise object """ + self._auth = AuthApi(kodiutils.get_setting('username'), kodiutils.get_setting('password'), kodiutils.get_tokens_path()) + self._api = ContentApi(self._auth.get_token()) + self._menu = Menu() + + def show_catalog(self): + """ Show all the programs of all channels """ + try: + items = [] + for channel in list(CHANNELS): + items.extend(self._api.get_programs(channel)) + except Exception as ex: + kodiutils.notification(message=str(ex)) + raise + + listing = [self._menu.generate_titleitem(item) for item in items] + + # Sort items by label, but don't put folders at the top. + # Used for A-Z listing or when movies and episodes are mixed. + kodiutils.show_listing(listing, 30003, content='tvshows', sort='label') + + def show_catalog_channel(self, channel): + """ Show the programs of a specific channel + :type channel: str + """ + try: + items = self._api.get_programs(channel) + except Exception as ex: + kodiutils.notification(message=str(ex)) + raise + + listing = [] + for item in items: + listing.append(self._menu.generate_titleitem(item)) + + # Sort items by label, but don't put folders at the top. + # Used for A-Z listing or when movies and episodes are mixed. + kodiutils.show_listing(listing, 30003, content='tvshows', sort='label') + + def show_program(self, channel, program_id): + """ Show a program from the catalog + :type channel: str + :type program_id: str + """ + try: + program = self._api.get_program(channel, program_id) + except UnavailableException: + kodiutils.ok_dialog(message=kodiutils.localize(30717)) # This program is not available in the Vier/Vijf/Zes catalogue. + kodiutils.end_of_directory() + return + + if len(program.episodes) == 0: + kodiutils.ok_dialog(message=kodiutils.localize(30717)) # This program is not available in the Vier/Vijf/Zes catalogue. + kodiutils.end_of_directory() + return + + # Go directly to the season when we have only one season + if len(program.seasons) == 1: + self.show_program_season(channel, program_id, program.seasons.values()[0].number) + return + + studio = CHANNELS.get(program.channel, {}).get('studio_icon') + + listing = [] + + # Add an '* All seasons' entry when configured in Kodi + if kodiutils.get_global_setting('videolibrary.showallitems') is True: + listing.append( + TitleItem(title='* %s' % kodiutils.localize(30204), # * All seasons + path=kodiutils.url_for('show_catalog_program_season', channel=channel, program=program_id, season=-1), + art_dict={ + 'thumb': program.cover, + 'fanart': program.background, + }, + info_dict={ + 'tvshowtitle': program.title, + 'title': kodiutils.localize(30204), # All seasons + 'plot': program.description, + 'set': program.title, + 'studio': studio, + }) + ) + + # Add the seasons + for s in list(program.seasons.values()): + listing.append( + TitleItem(title=s.title, # kodiutils.localize(30205, season=s.number), # Season {season} + path=kodiutils.url_for('show_catalog_program_season', channel=channel, program=program_id, season=s.number), + art_dict={ + 'thumb': s.cover, + 'fanart': program.background, + }, + info_dict={ + 'tvshowtitle': program.title, + 'title': kodiutils.localize(30205, season=s.number), # Season {season} + 'plot': s.description, + 'set': program.title, + 'studio': studio, + }) + ) + + # Sort by label. Some programs return seasons unordered. + kodiutils.show_listing(listing, 30003, content='tvshows', sort=['label']) + + def show_program_season(self, channel, program_id, season): + """ Show the episodes of a program from the catalog + :type channel: str + :type program_id: str + :type season: int + """ + try: + program = self._api.get_program(channel, program_id) + except UnavailableException: + kodiutils.ok_dialog(message=kodiutils.localize(30717)) # This program is not available in the Vier/Vijf/Zes catalogue. + kodiutils.end_of_directory() + return + + if season == -1: + # Show all episodes + episodes = program.episodes + else: + # Show the episodes of the season that was selected + episodes = [e for e in program.episodes if e.season == season] + + listing = [self._menu.generate_titleitem(episode) for episode in episodes] + + # Sort by episode number by default. Takes seasons into account. + kodiutils.show_listing(listing, 30003, content='episodes', sort=['episode', 'duration']) diff --git a/resources/lib/modules/channels.py b/resources/lib/modules/channels.py new file mode 100644 index 0000000..f0fa2bf --- /dev/null +++ b/resources/lib/modules/channels.py @@ -0,0 +1,102 @@ +# -*- coding: utf-8 -*- +""" Channels module """ + +from __future__ import absolute_import, division, unicode_literals + +import logging + +from resources.lib import kodiutils +from resources.lib.kodiutils import TitleItem +from resources.lib.viervijfzes import CHANNELS, STREAM_DICT + +_LOGGER = logging.getLogger('channels') + + +class Channels: + """ Menu code related to channels """ + + def __init__(self): + """ Initialise object """ + + @staticmethod + def show_channels(): + """ Shows TV channels """ + listing = [] + for i, key in enumerate(CHANNELS): # pylint: disable=unused-variable + channel = CHANNELS[key] + + # Lookup the high resolution logo based on the channel name + icon = '{path}/resources/logos/{logo}'.format(path=kodiutils.addon_path(), logo=channel.get('logo')) + fanart = '{path}/resources/logos/{logo}'.format(path=kodiutils.addon_path(), logo=channel.get('background')) + + context_menu = [ + ( + kodiutils.localize(30053, channel=channel.get('name')), # TV Guide for {channel} + 'Container.Update(%s)' % + kodiutils.url_for('show_tvguide_channel', channel=channel.get('epg')) + ) + ] + + listing.append( + TitleItem(title=channel.get('name'), + path=kodiutils.url_for('show_channel_menu', channel=key), + art_dict={ + 'icon': icon, + 'thumb': icon, + 'fanart': fanart, + }, + info_dict={ + 'plot': None, + 'playcount': 0, + 'mediatype': 'video', + 'studio': channel.get('studio_icon'), + }, + stream_dict=STREAM_DICT, + context_menu=context_menu), + ) + + kodiutils.show_listing(listing, 30007) + + @staticmethod + def show_channel_menu(key): + """ Shows a TV channel + :type key: str + """ + channel = CHANNELS[key] + + # Lookup the high resolution logo based on the channel name + fanart = '{path}/resources/logos/{logo}'.format(path=kodiutils.addon_path(), logo=channel.get('background')) + + listing = [ + TitleItem(title=kodiutils.localize(30053, channel=channel.get('name')), # TV Guide for {channel} + path=kodiutils.url_for('show_tvguide_channel', channel=key), + art_dict={ + 'icon': 'DefaultAddonTvInfo.png', + 'fanart': fanart, + }, + info_dict={ + 'plot': kodiutils.localize(30054, channel=channel.get('name')), # Browse the TV Guide for {channel} + }), + TitleItem(title=kodiutils.localize(30055, channel=channel.get('name')), # Catalog for {channel} + path=kodiutils.url_for('show_catalog_channel', channel=key), + art_dict={ + 'icon': 'DefaultMovieTitle.png', + 'fanart': fanart, + }, + info_dict={ + 'plot': kodiutils.localize(30056, channel=channel.get('name')), # Browse the Catalog for {channel} + }) + ] + + # Add YouTube channels + if kodiutils.get_cond_visibility('System.HasAddon(plugin.video.youtube)') != 0: + for youtube in channel.get('youtube', []): + listing.append( + TitleItem(title=kodiutils.localize(30206, label=youtube.get('label')), # Watch {label} on YouTube + path=youtube.get('path'), + info_dict={ + 'plot': kodiutils.localize(30206, label=youtube.get('label')), # Watch {label} on YouTube + }) + ) + + kodiutils.show_listing(listing, 30007, sort=['unsorted']) diff --git a/resources/lib/modules/menu.py b/resources/lib/modules/menu.py new file mode 100644 index 0000000..1707faf --- /dev/null +++ b/resources/lib/modules/menu.py @@ -0,0 +1,119 @@ +# -*- coding: utf-8 -*- +""" Menu module """ + +from __future__ import absolute_import, division, unicode_literals + +from resources.lib import kodiutils +from resources.lib.kodiutils import TitleItem +from resources.lib.viervijfzes import CHANNELS +from resources.lib.viervijfzes.content import Program, Episode + + +class Menu: + """ Menu code """ + + def __init__(self): + """ Initialise object """ + + @staticmethod + def show_mainmenu(): + """ Show the main menu """ + listing = [ + TitleItem(title=kodiutils.localize(30001), # A-Z + path=kodiutils.url_for('show_catalog'), + art_dict=dict( + icon='DefaultMovieTitle.png', + fanart=kodiutils.get_addon_info('fanart'), + ), + info_dict=dict( + plot=kodiutils.localize(30002), + )), + TitleItem(title=kodiutils.localize(30007), # TV Channels + path=kodiutils.url_for('show_channels'), + art_dict=dict( + icon='DefaultAddonPVRClient.png', + fanart=kodiutils.get_addon_info('fanart'), + ), + info_dict=dict( + plot=kodiutils.localize(30008), + )), + TitleItem(title=kodiutils.localize(30009), # Search + path=kodiutils.url_for('show_search'), + art_dict=dict( + icon='DefaultAddonsSearch.png', + fanart=kodiutils.get_addon_info('fanart'), + ), + info_dict=dict( + plot=kodiutils.localize(30010), + )) + ] + + kodiutils.show_listing(listing, sort=['unsorted']) + + @staticmethod + def generate_titleitem(item): + """ Generate a TitleItem based on a Program or Episode. + :type item: Union[Program, Episode] + :rtype TitleItem + """ + art_dict = { + 'thumb': item.cover, + 'cover': item.cover, + } + info_dict = { + 'title': item.title, + 'plot': item.description, + 'studio': CHANNELS.get(item.channel, {}).get('studio_icon'), + 'aired': item.aired.strftime('%Y-%m-%d') if item.aired else None, + } + prop_dict = {} + + # + # Program + # + if isinstance(item, Program): + art_dict.update({ + 'fanart': item.background, + }) + info_dict.update({ + 'mediatype': None, + 'season': len(item.seasons) if item.seasons else None, + }) + + return TitleItem(title=item.title, + path=kodiutils.url_for('show_catalog_program', channel=item.channel, program=item.path), + art_dict=art_dict, + info_dict=info_dict) + + # + # Episode + # + if isinstance(item, Episode): + art_dict.update({ + 'fanart': item.cover, + }) + info_dict.update({ + 'mediatype': 'episode', + 'tvshowtitle': item.program_title, + 'duration': item.duration, + 'season': item.season, + 'episode': item.number, + 'aired': item.aired.strftime('%Y-%m-%d'), + }) + + stream_dict = { + 'codec': 'h264', + 'duration': item.duration, + 'height': 576, + 'width': 720, + } + + return TitleItem(title=info_dict['title'], + path=kodiutils.url_for('play', channel=item.channel, uuid=item.uuid), + art_dict=art_dict, + info_dict=info_dict, + stream_dict=stream_dict, + prop_dict=prop_dict, + is_playable=True) + + raise Exception('Unknown video_type') diff --git a/resources/lib/modules/player.py b/resources/lib/modules/player.py new file mode 100644 index 0000000..c7dd59e --- /dev/null +++ b/resources/lib/modules/player.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- +""" Player module """ + +from __future__ import absolute_import, division, unicode_literals + +import logging + +from resources.lib import kodiutils +from resources.lib.viervijfzes.auth import AuthApi +from resources.lib.viervijfzes.content import ContentApi, UnavailableException, GeoblockedException + +_LOGGER = logging.getLogger('player') + + +class Player: + """ Code responsible for playing media """ + + def __init__(self): + """ Initialise object """ + self._auth = AuthApi(kodiutils.get_setting('username'), kodiutils.get_setting('password'), kodiutils.get_tokens_path()) + self._api = ContentApi(self._auth.get_token()) + + def play_from_page(self, channel, path): + """ Play the requested item. + :type channel: string + :type path: string + """ + # Get episode information + episode = self._api.get_episode(channel, path) + + # Play this now we have the uuid + self.play(channel, episode.uuid) + + def play(self, channel, item): + """ Play the requested item. + :type channel: string + :type item: string + """ + try: + # Get stream information + resolved_stream = self._api.get_stream(channel, item) + + except GeoblockedException: + kodiutils.ok_dialog(heading=kodiutils.localize(30709), message=kodiutils.localize(30710)) # This video is geo-blocked... + return + + except UnavailableException: + kodiutils.ok_dialog(heading=kodiutils.localize(30711), message=kodiutils.localize(30712)) # The video is unavailable... + return + + # Play this item + kodiutils.play(resolved_stream) diff --git a/resources/lib/modules/search.py b/resources/lib/modules/search.py new file mode 100644 index 0000000..b212d94 --- /dev/null +++ b/resources/lib/modules/search.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +""" Search module """ + +from __future__ import absolute_import, division, unicode_literals + +import logging + +from resources.lib import kodiutils +from resources.lib.modules.menu import Menu +from resources.lib.viervijfzes.search import SearchApi + +_LOGGER = logging.getLogger('search') + + +class Search: + """ Menu code related to search """ + + def __init__(self): + """ Initialise object """ + self._search = SearchApi() + self._menu = Menu() + + def show_search(self, query=None): + """ Shows the search dialog + :type query: str + """ + if not query: + # Ask for query + query = kodiutils.get_search_string(heading=kodiutils.localize(30009)) # Search Vier/Vijf/Zes + if not query: + kodiutils.end_of_directory() + return + + # Do search + try: + items = self._search.search(query) + except Exception as ex: # pylint: disable=broad-except + kodiutils.notification(message=str(ex)) + kodiutils.end_of_directory() + return + + # Display results + listing = [self._menu.generate_titleitem(item) for item in items] + + # Sort like we get our results back. + kodiutils.show_listing(listing, 30009, content='tvshows') diff --git a/resources/lib/modules/tvguide.py b/resources/lib/modules/tvguide.py new file mode 100644 index 0000000..50452af --- /dev/null +++ b/resources/lib/modules/tvguide.py @@ -0,0 +1,170 @@ +# -*- coding: utf-8 -*- +""" Menu code related to channels """ + +from __future__ import absolute_import, division, unicode_literals + +import logging +from datetime import datetime, timedelta + +from resources.lib import kodiutils +from resources.lib.kodiutils import TitleItem +from resources.lib.viervijfzes import STREAM_DICT +from resources.lib.viervijfzes.content import UnavailableException +from resources.lib.viervijfzes.epg import EpgApi + +try: # Python 3 + from urllib.parse import quote +except ImportError: # Python 2 + from urllib import quote + +_LOGGER = logging.getLogger('tvguide') + + +class TvGuide: + """ Menu code related to the TV Guide """ + + def __init__(self): + """ Initialise object """ + self._epg = EpgApi() + + @staticmethod + def get_dates(date_format): + """ Return a dict of dates. + :rtype: list[dict] + """ + dates = [] + today = datetime.today() + + # The API provides 7 days in the past and 13 days in the future + for i in range(-7, 13): + day = today + timedelta(days=i) + + if i == -1: + dates.append({ + 'title': '%s, %s' % (kodiutils.localize(30301), day.strftime(date_format)), # Yesterday + 'key': 'yesterday', + 'date': day.strftime('%d.%m.%Y'), + 'highlight': False, + }) + elif i == 0: + dates.append({ + 'title': '%s, %s' % (kodiutils.localize(30302), day.strftime(date_format)), # Today + 'key': 'today', + 'date': day.strftime('%d.%m.%Y'), + 'highlight': True, + }) + elif i == 1: + dates.append({ + 'title': '%s, %s' % (kodiutils.localize(30303), day.strftime(date_format)), # Tomorrow + 'key': 'tomorrow', + 'date': day.strftime('%d.%m.%Y'), + 'highlight': False, + }) + else: + dates.append({ + 'title': day.strftime(date_format), + 'key': day.strftime('%Y-%m-%d'), + 'date': day.strftime('%d.%m.%Y'), + 'highlight': False, + }) + + return dates + + def show_tvguide_channel(self, channel): + """ Shows the dates in the tv guide + :type channel: str + """ + listing = [] + for day in self.get_dates('%A %d %B %Y'): + if day.get('highlight'): + title = '[B]{title}[/B]'.format(title=day.get('title')) + else: + title = day.get('title') + + listing.append( + TitleItem(title=title, + path=kodiutils.url_for('show_tvguide_detail', channel=channel, date=day.get('key')), + art_dict={ + 'icon': 'DefaultYear.png', + 'thumb': 'DefaultYear.png', + }, + info_dict={ + 'plot': None, + 'date': day.get('date'), + }) + ) + + kodiutils.show_listing(listing, 30013, content='files', sort=['date']) + + def show_tvguide_detail(self, channel=None, date=None): + """ Shows the programs of a specific date in the tv guide + :type channel: str + :type date: str + """ + try: + programs = self._epg.get_epg(channel=channel, date=date) + except UnavailableException as ex: + kodiutils.notification(message=str(ex)) + kodiutils.end_of_directory() + return + + listing = [] + for program in programs: + if program.program_url: + context_menu = [( + kodiutils.localize(30102), # Go to Program + 'Container.Update(%s)' % + kodiutils.url_for('show_catalog_program', channel=channel, program=program.program_url) + )] + else: + context_menu = None + + title = '{time} - {title}'.format( + time=program.start.strftime('%H:%M'), + title=program.program_title + ) + + if program.airing: + title = '[B]{title}[/B]'.format(title=title) + + if program.video_url: + path = kodiutils.url_for('play_from_page', channel=channel, page=quote(program.video_url, safe='')) + else: + path = None + title = '[COLOR gray]' + title + '[/COLOR]' + + listing.append( + TitleItem(title=title, + path=path, + art_dict={ + 'icon': program.cover, + 'thumb': program.cover, + }, + info_dict={ + 'title': title, + 'plot': program.description, + 'duration': program.duration, + 'mediatype': 'video', + }, + stream_dict=STREAM_DICT + { + 'duration': program.duration, + }, + context_menu=context_menu, + is_playable=True) + ) + + kodiutils.show_listing(listing, 30013, content='episodes', sort=['unsorted']) + + def play_epg_datetime(self, channel, timestamp): + """ Play a program based on the channel and the timestamp when it was aired + :type channel: str + :type timestamp: str + """ + broadcast = self._epg.get_broadcast(channel, timestamp) + if not broadcast: + kodiutils.ok_dialog(heading=kodiutils.localize(30711), message=kodiutils.localize(30713)) # The requested video was not found in the guide. + kodiutils.end_of_directory() + return + + kodiutils.container_update( + kodiutils.url_for('play', channel=channel, uuid=broadcast.video_url)) diff --git a/resources/lib/viervijfzes/__init__.py b/resources/lib/viervijfzes/__init__.py new file mode 100644 index 0000000..0260b05 --- /dev/null +++ b/resources/lib/viervijfzes/__init__.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +""" SBS API """ +from __future__ import absolute_import, division, unicode_literals + +from collections import OrderedDict + +CHANNELS = OrderedDict([ + ('vier', dict( + name='VIER', + url='https://www.vier.be', + logo='vier.png', + background='vier-background.jpg', + studio_icon='vier', + youtube=[ + dict( + label='VIER / VIJF', + logo='vier.png', + path='plugin://plugin.video.youtube/user/viertv/', + ), + ], + )), + ('vijf', dict( + name='VIJF', + url='https://www.vijf.be', + logo='vijf.png', + background='vijf-background.jpg', + studio_icon='vijf', + youtube=[ + dict( + label='VIER / VIJF', + logo='vijf.png', + path='plugin://plugin.video.youtube/user/viertv/', + ), + ], + )), + ('zes', dict( + name='ZES', + url='https://www.zestv.be', + logo='zes.png', + background='zes-background.jpg', + studio_icon='zes', + youtube=[], + )) +]) + +STREAM_DICT = { + 'codec': 'h264', + 'height': 960, + 'width': 544, +} diff --git a/resources/lib/viervijfzes/auth.py b/resources/lib/viervijfzes/auth.py new file mode 100644 index 0000000..134f30a --- /dev/null +++ b/resources/lib/viervijfzes/auth.py @@ -0,0 +1,106 @@ +# -*- coding: utf-8 -*- +""" AUTH API """ + +from __future__ import absolute_import, division, unicode_literals + +import json +import logging +import os +import time + +from resources.lib.viervijfzes.auth_awsidp import AwsIdp + +_LOGGER = logging.getLogger('auth-api') + + +class AuthApi: + """ Vier/Vijf/Zes Authentication API """ + COGNITO_REGION = 'eu-west-1' + COGNITO_POOL_ID = 'eu-west-1_dViSsKM5Y' + COGNITO_CLIENT_ID = '6s1h851s8uplco5h6mqh1jac8m' + + TOKEN_FILE = 'auth-tokens.json' + + def __init__(self, username, password, cache_dir=None): + """ Initialise object """ + self._username = username + self._password = password + self._cache = cache_dir + self._id_token = None + self._expiry = 0 + self._refresh_token = None + + if self._cache: + # Load tokens from cache + try: + with open(self._cache + self.TOKEN_FILE, 'rb') as f: + data_json = json.loads(f.read()) + self._id_token = data_json.get('id_token') + self._refresh_token = data_json.get('refresh_token') + self._expiry = int(data_json.get('expiry', 0)) + except (IOError, TypeError, ValueError): + _LOGGER.info('We could not use the cache since it is invalid or non-existant.') + + def get_token(self): + """ Get a valid token """ + now = int(time.time()) + + if self._id_token and self._expiry > now: + # We have a valid id token in memory, use it + _LOGGER.debug('Got an id token from memory: %s', self._id_token) + return self._id_token + + if self._refresh_token: + # We have a valid refresh token, use that to refresh our id token + # The refresh token is valid for 30 days. If this refresh fails, we just continue by logging in again. + self._id_token = self._refresh(self._refresh_token) + if self._id_token: + self._expiry = now + 3600 + _LOGGER.debug('Got an id token by refreshing: %s', self._id_token) + + if not self._id_token: + # We have no tokens, or they are all invalid, do a login + id_token, refresh_token = self._authenticate(self._username, self._password) + self._id_token = id_token + self._refresh_token = refresh_token + self._expiry = now + 3600 + _LOGGER.debug('Got an id token by logging in: %s', self._id_token) + + if self._cache: + if not os.path.isdir(self._cache): + os.mkdir(self._cache) + + # Store new tokens in cache + with open(self._cache + self.TOKEN_FILE, 'wb') as f: + f.write(json.dumps(dict( + id_token=self._id_token, + refresh_token=self._refresh_token, + expiry=self._expiry, + ))) + + return self._id_token + + def clear_cache(self): + """ Remove the cached tokens. """ + if not self._cache: + return + + # Remove cache + os.remove(self._cache + self.TOKEN_FILE) + + # Clear tokens in memory + self._id_token = None + self._refresh_token = None + self._expiry = 0 + + @staticmethod + def _authenticate(username, password): + """ Authenticate with Amazon Cognito and fetch a refresh token and id token. """ + client = AwsIdp(AuthApi.COGNITO_POOL_ID, AuthApi.COGNITO_CLIENT_ID) + return client.authenticate(username, password) + + @staticmethod + def _refresh(refresh_token): + """ Use the refresh token to fetch a new id token. """ + client = AwsIdp(AuthApi.COGNITO_POOL_ID, AuthApi.COGNITO_CLIENT_ID) + return client.renew_token(refresh_token) diff --git a/resources/lib/viervijfzes/auth_awsidp.py b/resources/lib/viervijfzes/auth_awsidp.py new file mode 100644 index 0000000..73b1fe0 --- /dev/null +++ b/resources/lib/viervijfzes/auth_awsidp.py @@ -0,0 +1,352 @@ +# -*- coding: utf-8 -*- +""" Amazon Cognito implementation without external dependencies """ +# Based on https://github.com/retrospect-addon/plugin.video.retrospect/blob/master/channels/channel.be/vier/awsidp.py + +from __future__ import absolute_import, division, unicode_literals + +import base64 +import binascii +import datetime +import hashlib +import hmac +import json +import logging +import os +import sys + +import requests +import six + +_LOGGER = logging.getLogger('auth-awsidp') + + +class AwsIdp: + """ AWS Identity Provider """ + + def __init__(self, pool_id, client_id): + """ + :param str pool_id: The AWS user pool to connect to (format: _). + E.g.: eu-west-1_aLkOfYN3T + :param str client_id: The client application ID (the ID of the application connecting) + """ + + self.pool_id = pool_id + if "_" not in self.pool_id: + raise ValueError("Invalid pool_id format. Shoud be _.") + + self.client_id = client_id + self.region = self.pool_id.split("_")[0] + self.url = "https://cognito-idp.%s.amazonaws.com/" % (self.region,) + self._session = requests.session() + + # Initialize the values + # https://github.com/aws/amazon-cognito-identity-js/blob/master/src/AuthenticationHelper.js#L22 + self.n_hex = 'FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD1' + \ + '29024E088A67CC74020BBEA63B139B22514A08798E3404DD' + \ + 'EF9519B3CD3A431B302B0A6DF25F14374FE1356D6D51C245' + \ + 'E485B576625E7EC6F44C42E9A637ED6B0BFF5CB6F406B7ED' + \ + 'EE386BFB5A899FA5AE9F24117C4B1FE649286651ECE45B3D' + \ + 'C2007CB8A163BF0598DA48361C55D39A69163FA8FD24CF5F' + \ + '83655D23DCA3AD961C62F356208552BB9ED529077096966D' + \ + '670C354E4ABC9804F1746C08CA18217C32905E462E36CE3B' + \ + 'E39E772C180E86039B2783A2EC07A28FB5C55DF06F4C52C9' + \ + 'DE2BCBF6955817183995497CEA956AE515D2261898FA0510' + \ + '15728E5A8AAAC42DAD33170D04507A33A85521ABDF1CBA64' + \ + 'ECFB850458DBEF0A8AEA71575D060C7DB3970F85A6E1E4C7' + \ + 'ABF5AE8CDB0933D71E8C94E04A25619DCEE3D2261AD2EE6B' + \ + 'F12FFA06D98A0864D87602733EC86A64521F2B18177B200C' + \ + 'BBE117577A615D6C770988C0BAD946E208E24FA074E5AB31' + \ + '43DB5BFCE0FD108E4B82D120A93AD2CAFFFFFFFFFFFFFFFF' + + # https://github.com/aws/amazon-cognito-identity-js/blob/master/src/AuthenticationHelper.js#L49 + self.g_hex = '2' + self.info_bits = bytearray('Caldera Derived Key', 'utf-8') + + self.big_n = self.__hex_to_long(self.n_hex) + self.g = self.__hex_to_long(self.g_hex) + self.k = self.__hex_to_long(self.__hex_hash('00' + self.n_hex + '0' + self.g_hex)) + self.small_a_value = self.__generate_random_small_a() + self.large_a_value = self.__calculate_a() + _LOGGER.debug("Created %s", self) + + def authenticate(self, username, password): + """ Authenticate with a username and password. """ + # Step 1: First initiate an authentication request + auth_request = self.__get_authentication_request(username) + auth_data = json.dumps(auth_request) + auth_headers = { + "X-Amz-Target": "AWSCognitoIdentityProviderService.InitiateAuth", + "Accept-Encoding": "identity", + "Content-Type": "application/x-amz-json-1.1" + } + auth_response = self._session.post(self.url, auth_data, headers=auth_headers) + auth_response_json = json.loads(auth_response.content) + challenge_parameters = auth_response_json.get("ChallengeParameters") + _LOGGER.debug(challenge_parameters) + + challenge_name = auth_response_json.get("ChallengeName") + if not challenge_name == "PASSWORD_VERIFIER": + message = auth_response_json.get("message") + _LOGGER.error("Cannot start authentication challenge: %s", message or None) + return None + + # Step 2: Respond to the Challenge with a valid ChallengeResponse + challenge_request = self.__get_challenge_response_request(challenge_parameters, password) + challenge_data = json.dumps(challenge_request) + challenge_headers = { + "X-Amz-Target": "AWSCognitoIdentityProviderService.RespondToAuthChallenge", + "Content-Type": "application/x-amz-json-1.1" + } + auth_response = self._session.post(self.url, challenge_data, headers=challenge_headers) + auth_response_json = json.loads(auth_response.content) + _LOGGER.debug("Got response: %s", auth_response_json) + + if "message" in auth_response_json: + _LOGGER.error("Error logging in: %s", auth_response_json.get("message")) + return None, None + + id_token = auth_response_json.get("AuthenticationResult", {}).get("IdToken") + refresh_token = auth_response_json.get("AuthenticationResult", {}).get("RefreshToken") + return id_token, refresh_token + + def renew_token(self, refresh_token): + """ + Sets a new access token on the User using the refresh token. The basic expire time of the + refresh token is 30 days: + + http://docs.aws.amazon.com/cognito/latest/developerguide/amazon-cognito-user-pools-using-tokens-with-identity-providers.html + + :param str refresh_token: Token to use for refreshing the authorization token. + """ + refresh_request = { + "AuthParameters": { + "REFRESH_TOKEN": refresh_token + }, + "ClientId": self.client_id, + "AuthFlow": "REFRESH_TOKEN" + } + refresh_headers = { + "X-Amz-Target": "AWSCognitoIdentityProviderService.InitiateAuth", + "Content-Type": "application/x-amz-json-1.1" + } + refresh_request_data = json.dumps(refresh_request) + refresh_response = self._session.post(self.url, refresh_request_data, headers=refresh_headers) + refresh_json = json.loads(refresh_response.content) + + if "message" in refresh_json: + _LOGGER.error("Error refreshing: %s", refresh_json.get("message")) + return None + + id_token = refresh_json.get("AuthenticationResult", {}).get("IdToken") + return id_token + + def __get_authentication_request(self, username): + """ + + :param str username: The username to use + + :return: A full Authorization request. + :rtype: dict + """ + auth_request = { + "AuthParameters": { + "USERNAME": username, + "SRP_A": self.__long_to_hex(self.large_a_value) + }, + "AuthFlow": "USER_SRP_AUTH", + "ClientId": self.client_id + } + return auth_request + + def __get_challenge_response_request(self, challenge_parameters, password): + """ Create a Challenge Response Request object. + + :param dict[str,str|imt] challenge_parameters: The parameters for the challenge. + :param str password: The password. + + :return: A valid and full request data object to use as a response for a challenge. + :rtype: dict + """ + user_id = challenge_parameters["USERNAME"] + user_id_for_srp = challenge_parameters["USER_ID_FOR_SRP"] + srp_b = challenge_parameters["SRP_B"] + salt = challenge_parameters["SALT"] + secret_block = challenge_parameters["SECRET_BLOCK"] + + timestamp = self.__get_current_timestamp() + + # Get a HKDF key for the password, SrpB and the Salt + hkdf = self.__get_hkdf_key_for_password( + user_id_for_srp, + password, + self.__hex_to_long(srp_b), + salt + ) + secret_block_bytes = base64.standard_b64decode(secret_block) + + # the message is a combo of the pool_id, provided SRP userId, the Secret and Timestamp + msg = bytearray(self.pool_id.split('_')[1], 'utf-8') + \ + bytearray(user_id_for_srp, 'utf-8') + \ + bytearray(secret_block_bytes) + \ + bytearray(timestamp, 'utf-8') + hmac_obj = hmac.new(hkdf, msg, digestmod=hashlib.sha256) + signature_string = base64.standard_b64encode(hmac_obj.digest()).decode('utf-8') + challenge_request = { + "ChallengeResponses": { + "USERNAME": user_id, + "TIMESTAMP": timestamp, + "PASSWORD_CLAIM_SECRET_BLOCK": secret_block, + "PASSWORD_CLAIM_SIGNATURE": signature_string + }, + "ChallengeName": "PASSWORD_VERIFIER", + "ClientId": self.client_id + } + return challenge_request + + def __get_hkdf_key_for_password(self, username, password, server_b_value, salt): + """ Calculates the final hkdf based on computed S value, and computed U value and the key. + + :param str username: Username. + :param str password: Password. + :param int server_b_value: Server B value. + :param int salt: Generated salt. + + :return Computed HKDF value. + :rtype: object + """ + + u_value = self.__calculate_u(self.large_a_value, server_b_value) + if u_value == 0: + raise ValueError('U cannot be zero.') + username_password = '%s%s:%s' % (self.pool_id.split('_')[1], username, password) + username_password_hash = self.__hash_sha256(username_password.encode('utf-8')) + + x_value = self.__hex_to_long(self.__hex_hash(self.__pad_hex(salt) + username_password_hash)) + g_mod_pow_xn = pow(self.g, x_value, self.big_n) + int_value2 = server_b_value - self.k * g_mod_pow_xn + s_value = pow(int_value2, self.small_a_value + u_value * x_value, self.big_n) + hkdf = self.__compute_hkdf( + bytearray.fromhex(self.__pad_hex(s_value)), + bytearray.fromhex(self.__pad_hex(self.__long_to_hex(u_value))) + ) + return hkdf + + def __compute_hkdf(self, ikm, salt): + """ Standard hkdf algorithm + + :param {Buffer} ikm Input key material. + :param {Buffer} salt Salt value. + :return {Buffer} Strong key material. + """ + + prk = hmac.new(salt, ikm, hashlib.sha256).digest() + info_bits_update = self.info_bits + bytearray(chr(1), 'utf-8') + hmac_hash = hmac.new(prk, info_bits_update, hashlib.sha256).digest() + return hmac_hash[:16] + + def __calculate_u(self, big_a, big_b): + """ Calculate the client's value U which is the hash of A and B + + :param int big_a: Large A value. + :param int big_b: Server B value. + + :return Computed U value. + :rtype: int + """ + + u_hex_hash = self.__hex_hash(self.__pad_hex(big_a) + self.__pad_hex(big_b)) + return self.__hex_to_long(u_hex_hash) + + def __generate_random_small_a(self): + """ Helper function to generate a random big integer + + :return a random value. + :rtype: int + """ + random_long_int = self.__get_random(128) + return random_long_int % self.big_n + + def __calculate_a(self): + """ Calculate the client's public value A = g^a%N with the generated random number a + + :return Computed large A. + :rtype: int + """ + + big_a = pow(self.g, self.small_a_value, self.big_n) + # safety check + if (big_a % self.big_n) == 0: + raise ValueError('Safety check for A failed') + return big_a + + @staticmethod + def __long_to_hex(long_num): + return '%x' % long_num + + @staticmethod + def __hex_to_long(hex_string): + return int(hex_string, 16) + + @staticmethod + def __hex_hash(hex_string): + return AwsIdp.__hash_sha256(bytearray.fromhex(hex_string)) + + @staticmethod + def __hash_sha256(buf): + """AuthenticationHelper.hash""" + a = hashlib.sha256(buf).hexdigest() + return (64 - len(a)) * '0' + a + + @staticmethod + def __pad_hex(long_int): + """ Converts a Long integer (or hex string) to hex format padded with zeroes for hashing + + :param int|str long_int: Number or string to pad. + + :return Padded hex string. + :rtype: str + """ + + # noinspection PyTypeChecker + if not isinstance(long_int, six.string_types): + hash_str = AwsIdp.__long_to_hex(long_int) + else: + hash_str = long_int + if len(hash_str) % 2 == 1: + hash_str = '0%s' % hash_str + elif hash_str[0] in '89ABCDEFabcdef': + hash_str = '00%s' % hash_str + return hash_str + + @staticmethod + def __get_random(nbytes): + random_hex = binascii.hexlify(os.urandom(nbytes)) + return AwsIdp.__hex_to_long(random_hex) + + @staticmethod + def __get_current_timestamp(): + """ Creates a timestamp with the correct English format. + + :return: timestamp in format 'Sun Jan 27 19:00:04 UTC 2019' + :rtype: str + """ + + # We need US only data, so we cannot just do a strftime: + # Sun Jan 27 19:00:04 UTC 2019 + months = [None, 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] + days = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] + + time_now = datetime.datetime.utcnow() + if sys.platform.startswith('win'): + format_string = "{} {} %#d %H:%M:%S UTC %Y".format(days[time_now.weekday()], months[time_now.month]) + else: + format_string = "{} {} %-d %H:%M:%S UTC %Y".format(days[time_now.weekday()], months[time_now.month]) + + time_string = datetime.datetime.utcnow().strftime(format_string) + _LOGGER.debug("AWS Auth Timestamp: %s", time_string) + return time_string + + def __str__(self): + return "AWS IDP Client for:\nRegion: %s\nPoolId: %s\nAppId: %s" % ( + self.region, self.pool_id.split("_")[1], self.client_id + ) diff --git a/resources/lib/viervijfzes/content.py b/resources/lib/viervijfzes/content.py new file mode 100644 index 0000000..1eae505 --- /dev/null +++ b/resources/lib/viervijfzes/content.py @@ -0,0 +1,329 @@ +# -*- coding: utf-8 -*- +""" AUTH API """ + +from __future__ import absolute_import, division, unicode_literals + +import json +import logging +import re +from datetime import datetime + +import requests +from six.moves.html_parser import HTMLParser + +from resources.lib.viervijfzes import CHANNELS + +_LOGGER = logging.getLogger('content-api') + + +class UnavailableException(Exception): + """ Is thrown when an item is unavailable. """ + + +class NoContentException(Exception): + """ Is thrown when no items are unavailable. """ + + +class GeoblockedException(Exception): + """ Is thrown when a geoblocked item is played. """ + + +class Program: + """ Defines a Program. """ + + def __init__(self, uuid=None, path=None, channel=None, title=None, description=None, aired=None, cover=None, background=None, seasons=None, episodes=None): + """ + :type uuid: str + :type path: str + :type channel: str + :type title: str + :type description: str + :type aired: datetime + :type cover: str + :type background: str + :type seasons: list[Season] + :type episodes: list[Episode] + """ + self.uuid = uuid + self.path = path + self.channel = channel + self.title = title + self.description = description + self.aired = aired + self.cover = cover + self.background = background + self.seasons = seasons + self.episodes = episodes + + def __repr__(self): + return "%r" % self.__dict__ + + +class Season: + """ Defines a Season. """ + + def __init__(self, uuid=None, path=None, channel=None, title=None, description=None, cover=None, number=None): + """ + :type uuid: str + :type path: str + :type channel: str + :type title: str + :type description: str + :type cover: str + :type number: int + + """ + self.uuid = uuid + self.path = path + self.channel = channel + self.title = title + self.description = description + self.cover = cover + self.number = number + + def __repr__(self): + return "%r" % self.__dict__ + + +class Episode: + """ Defines an Episode. """ + + def __init__(self, uuid=None, nodeid=None, path=None, channel=None, program_title=None, title=None, description=None, cover=None, duration=None, + season=None, number=None, + rating=None, aired=None, expiry=None): + """ + :type uuid: str + :type nodeid: str + :type path: str + :type channel: str + :type program_title: str + :type title: str + :type description: str + :type cover: str + :type duration: int + :type season: int + :type number: int + :type rating: str + :type aired: datetime + :type expiry: datetime + """ + self.uuid = uuid + self.nodeid = nodeid + self.path = path + self.channel = channel + self.program_title = program_title + self.title = title + self.description = description + self.cover = cover + self.duration = duration + self.season = season + self.number = number + self.rating = rating + self.aired = aired + self.expiry = expiry + + def __repr__(self): + return "%r" % self.__dict__ + + +class ContentApi: + """ Vier/Vijf/Zes Content API""" + API_ENDPOINT = 'https://api.viervijfzes.be' + + def __init__(self, token): + """ Initialise object """ + self._token = token + + self._session = requests.session() + self._session.headers['authorization'] = token + + def get_notifications(self): + """ Get a list of notifications for your account. + :rtype list[dict] + """ + response = self._get_url(self.API_ENDPOINT + '/notifications') + data = json.loads(response) + return data + + def get_stream(self, _channel, uuid): + """ Get the stream URL to use for this video. + :type _channel: str + :type uuid: str + :rtype str + """ + response = self._get_url(self.API_ENDPOINT + '/content/%s' % uuid) + data = json.loads(response) + return data['video']['S'] + + def get_programs(self, channel): + """ Get a list of all programs of the specified channel. + :type channel: str + :rtype list[Program] + NOTE: This function doesn't use an API. + """ + if channel not in CHANNELS: + raise Exception('Unknown channel %s' % channel) + + # Load webpage + data = self._get_url(CHANNELS[channel]['url']) + + # Parse programs + h = HTMLParser() + regex_programs = re.compile(r'\s+' + r'\s+(?P[^<]+)</span>.*?' + r'</a>', re.DOTALL) + + programs = [ + Program(channel=channel, + path=program.group('path').lstrip('/'), + title=h.unescape(program.group('title').strip())) + for program in regex_programs.finditer(data) + ] + + return programs + + def get_program(self, channel, path): + """ Get a Program object from the specified page. + :type channel: str + :type path: str + :rtype Program + NOTE: This function doesn't use an API. + """ + if channel not in CHANNELS: + raise Exception('Unknown channel %s' % channel) + + # Load webpage + page = self._get_url(CHANNELS[channel]['url'] + '/' + path) + + # Extract JSON + regex_program = re.compile(r'data-hero="([^"]+)', re.DOTALL) + json_data = HTMLParser().unescape(regex_program.search(page).group(1)) + data = json.loads(json_data)['data'] + program = self._parse_program_data(data) + + return program + + def get_episode(self, channel, path): + """ Get a Episode object from the specified page. + :type channel: str + :type path: str + :rtype Episode + NOTE: This function doesn't use an API. + """ + if channel not in CHANNELS: + raise Exception('Unknown channel %s' % channel) + + # Load webpage + page = self._get_url(CHANNELS[channel]['url'] + '/' + path) + + # Extract program JSON + h = HTMLParser() + regex_program = re.compile(r'data-hero="([^"]+)', re.DOTALL) + json_data = h.unescape(regex_program.search(page).group(1)) + data = json.loads(json_data)['data'] + program = self._parse_program_data(data) + + # Extract episode JSON + regex_episode = re.compile(r'<script type="application/json" data-drupal-selector="drupal-settings-json">(.*?)</script>', re.DOTALL) + json_data = h.unescape(regex_episode.search(page).group(1)) + data = json.loads(json_data) + + # Lookup the episode in the program JSON based on the nodeId + # The episode we just found doesn't contain all information + for episode in program.episodes: + if episode.nodeid == data['pageInfo']['nodeId']: + return episode + + return None + + @staticmethod + def _parse_program_data(data): + """ Parse the Program JSON. + :type data: dict + :rtype Program + """ + # Create Program info + program = Program( + uuid=data['id'], + path=data['link'].lstrip('/'), + channel=data['pageInfo']['site'], + title=data['title'], + description=data['description'], + aired=datetime.fromtimestamp(data.get('pageInfo', {}).get('publishDate')), + cover=data['images']['poster'], + background=data['images']['hero'], + ) + + # Create Season info + program.seasons = { + playlist['episodes'][0]['seasonNumber']: Season( + uuid=playlist['id'], + path=playlist['link'].lstrip('/'), + channel=playlist['pageInfo']['site'], + title=playlist['title'], + description=playlist['pageInfo']['description'], + number=playlist['episodes'][0]['seasonNumber'], # You did not see this + ) + for playlist in data['playlists'] + } + + # Create Episodes info + program.episodes = [ + ContentApi._parse_episode_data(episode) + for playlist in data['playlists'] + for episode in playlist['episodes'] + ] + + return program + + @staticmethod + def _parse_episode_data(data): + """ Parse the Episode JSON. + :type data: dict + :rtype Episode + """ + + if data.get('episodeNumber'): + episode_number = data.get('episodeNumber') + else: + # The episodeNumber can be absent + match = re.compile(r'\d+$').search(data.get('title')) + if match: + episode_number = match.group(0) + else: + episode_number = None + + if data.get('episodeTitle'): + episode_title = data.get('episodeTitle') + else: + episode_title = data.get('title') + + episode = Episode( + uuid=data.get('videoUuid'), + nodeid=data.get('pageInfo', {}).get('nodeId'), + path=data.get('link').lstrip('/'), + channel=data.get('pageInfo', {}).get('site'), + program_title=data.get('program', {}).get('title'), + title=episode_title, + description=data.get('pageInfo', {}).get('description'), + cover=data.get('image'), + duration=data.get('duration'), + season=data.get('seasonNumber'), + number=episode_number, + aired=datetime.fromtimestamp(data.get('createdDate')), + expiry=datetime.fromtimestamp(data.get('unpublishDate')) if data.get('unpublishDate') else None, + rating=data.get('parentalRating') + ) + return episode + + def _get_url(self, url, params=None): + """ Makes a GET request for the specified URL. + :type url: str + :rtype str + """ + response = self._session.get(url, params=params) + + if response.status_code != 200: + raise Exception('Could not fetch data') + + return response.text diff --git a/resources/lib/viervijfzes/epg.py b/resources/lib/viervijfzes/epg.py new file mode 100644 index 0000000..6cf5b79 --- /dev/null +++ b/resources/lib/viervijfzes/epg.py @@ -0,0 +1,147 @@ +# -*- coding: utf-8 -*- +""" EPG API """ + +from __future__ import absolute_import, division, unicode_literals + +import json +import logging +from datetime import datetime, timedelta + +import dateutil +import requests + +_LOGGER = logging.getLogger('epg-api') + + +class EpgProgram: + """ Defines a Program in the EPG. """ + + def __init__(self, channel, program_title, episode_title, episode_title_original, nr, season, genre, start, won_id, won_program_id, program_description, + description, duration, program_url, video_url, cover, airing): + self.channel = channel + self.program_title = program_title + self.episode_title = episode_title + self.episode_title_original = episode_title_original + self.nr = nr + self.season = season + self.genre = genre + self.start = start + self.won_id = won_id + self.won_program_id = won_program_id + self.program_description = program_description + self.description = description + self.duration = duration + self.program_url = program_url + self.video_url = video_url + self.cover = cover + self.airing = airing + + def __repr__(self): + return "%r" % self.__dict__ + + +class EpgApi: + """ Vier/Vijf/Zes EPG API """ + + EPG_ENDPOINTS = { + 'vier': 'https://www.vier.be/api/epg/{date}', + 'vijf': 'https://www.vijf.be/api/epg/{date}', + 'zes': 'https://www.zestv.be/api/epg/{date}', + } + + def __init__(self): + """ Initialise object """ + self._session = requests.session() + + def get_epg(self, channel, date): + """ Returns the EPG for the specified channel and date. + :type channel: str + :type date: str + :rtype list[EpgProgram] + """ + if channel not in self.EPG_ENDPOINTS: + raise Exception('Unknown channel %s' % channel) + + if date is None: + # Fetch today when no date is specified + date = datetime.today().strftime('%Y-%m-%d') + elif date == 'yesterday': + date = (datetime.today() + timedelta(days=-1)).strftime('%Y-%m-%d') + elif date == 'today': + date = datetime.today().strftime('%Y-%m-%d') + elif date == 'tomorrow': + date = (datetime.today() + timedelta(days=1)).strftime('%Y-%m-%d') + + # Request the epg data + response = self._get_url(self.EPG_ENDPOINTS.get(channel).format(date=date)) + data = json.loads(response) + + # Parse the results + return [self._parse_program(channel, x) for x in data] + + @staticmethod + def _parse_program(channel, data): + """ Parse the EPG JSON data to a EpgProgram object. + :type channel: str + :type data: dict + :rtype EpgProgram + """ + duration = int(data.get('duration')) if data.get('duration') else None + + # Check if this broadcast is currently airing + timestamp = datetime.now() + start = datetime.fromtimestamp(data.get('timestamp')) + if duration: + airing = bool(start <= timestamp < (start + timedelta(seconds=duration))) + else: + airing = False + + return EpgProgram( + channel=channel, + program_title=data.get('program_title'), + episode_title=data.get('episode_title'), + episode_title_original=data.get('original_title'), + nr=int(data.get('episode_nr')) if data.get('episode_nr') else None, + season=int(data.get('season')) if data.get('season') else None, + genre=data.get('genre'), + start=start, + won_id=int(data.get('won_id')) if data.get('won_id') else None, + won_program_id=int(data.get('won_program_id')) if data.get('won_program_id') else None, + program_description=data.get('program_concept'), + description=data.get('content_episode'), + duration=duration, + program_url=(data.get('program_node', {}).get('url') or '').lstrip('/'), + video_url=(data.get('video_node', {}).get('url') or '').lstrip('/'), + cover=data.get('video_node', {}).get('image'), + airing=airing, + ) + + def get_broadcast(self, channel, timestamp): + """ Load EPG information for the specified channel and date. + :type channel: str + :type timestamp: str + :rtype: EpgProgram + """ + # Parse to a real datetime + timestamp = dateutil.parser.parse(timestamp) + + # Load guide info for this date + programs = self.get_epg(channel=channel, date=timestamp.strftime('%Y-%m-%d')) + + # Find a matching broadcast + for broadcast in programs: + if timestamp <= broadcast.start < (broadcast.start + timedelta(seconds=broadcast.duration)): + return broadcast + + return None + + def _get_url(self, url): + """ Makes a GET request for the specified URL. + :type url: str + :rtype str + """ + response = self._session.get(url) + + # TODO check error code + + return response.text diff --git a/resources/lib/viervijfzes/search.py b/resources/lib/viervijfzes/search.py new file mode 100644 index 0000000..e8066fa --- /dev/null +++ b/resources/lib/viervijfzes/search.py @@ -0,0 +1,54 @@ +# -*- coding: utf-8 -*- +""" AUTH API """ + +from __future__ import absolute_import, division, unicode_literals + +import json +import logging + +import requests + +from resources.lib.viervijfzes.content import Program + +_LOGGER = logging.getLogger('search-api') + + +class SearchApi: + """ Vier/Vijf/Zes Search API """ + API_ENDPOINT = 'https://api.viervijfzes.be/search' + + def __init__(self): + """ Initialise object """ + self._session = requests.session() + + def search(self, query): + """ Get the stream URL to use for this video. + :type query: str + :rtype list[Program] + """ + response = self._session.post( + self.API_ENDPOINT, + json={ + "query": query, + "sites": ["vier", "vijf", "zes"], + "page": 0, + "mode": "byDate" + } + ) + data = json.loads(response.content) + + if data['timed_out']: + raise TimeoutError() + + results = [] + for hit in data['hits']['hits']: + if hit['_source']['bundle'] == 'program': + results.append(Program( + channel=hit['_source']['site'], + path=hit['_source']['url'].strip('/'), + title=hit['_source']['title'], + description=hit['_source']['intro'], + cover=hit['_source']['img'], + )) + + return results diff --git a/resources/logos/vier-background.jpg b/resources/logos/vier-background.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c27edc41e6b8cfd40ec6539bbbf2a811e9b47230 GIT binary patch literal 45622 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 BpR)h} literal 0 HcmV?d00001 diff --git a/resources/logos/vier.png b/resources/logos/vier.png new file mode 100644 index 0000000000000000000000000000000000000000..d0f79a3558523ccef367157cb7fb6255e0ef2a23 GIT binary patch literal 3574 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 a(*!m2g`&^P36;!$c7QdqGORm{OZ+!$eNQp~ literal 0 HcmV?d00001 diff --git a/resources/logos/vijf-background.jpg b/resources/logos/vijf-background.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a89b5eabbe923e76e20c578214ca518ac756e48a GIT binary patch literal 57998 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 literal 0 HcmV?d00001 diff --git a/resources/logos/vijf.png b/resources/logos/vijf.png new file mode 100644 index 0000000000000000000000000000000000000000..115451a2f654da25f6a4f42d088d10ffc207ff3f GIT binary patch literal 5379 zcmeHLXHe7Km;NQ8By>WR8bVP)iV#4gg`UvlrAbkmfHV;)QUnZ0@1aR(QcVy<X$k_0 zU;vTcvC$L|kQ$Vp<v%;Sv%4Sn+s^ErbLX7r-sjwM&iQcXCYqTVFf;Hm006*@#ps#? z0O-sF0Z_=9@~*M5JX18cwM?`Cpe~*9*qQcUvjOG?+Cc4~z^^j^^TXH%001M$zd8uW zFXROPFv`r>QqS1)9u;W$@ABq9;J+LH3I7M}|Kb0|2>dUy*-Qn_<m|F%zW;KMILgdB zE2`E&b5jeT{gf8;7RJ;AJpmun93394?n8DMm^Xwd^mG#!Yk!EbHIDUh@F-6yT{4pR z&|&jwWb^WF*Y?tifp651>2Cq{Vg<(1?|;xWdz@RJE59zo%3pH9XXj!HkZWqJf`83q z?SlF8tog(I4KJi5Bn1xW=ENyZFIYVAQ}x8TNHxrpiC}$}W)*G(?~R*pWVD=KwLQbD zd)#*@bgYW(_R30hORF<3qB9o>!rqN-z2%dw8BVZDcZYE@(SrZRGsXh|J07d6Wf}5$ z{pR26oS)!v-}F8b^cG~W?05tMi;l){vT;H%Y&0LxY{S)MHA!XBFge63*O*ny(q9%L zwdJqzxAyfInLoXh{+YvphOz0r0pnn+sq3>>R8;z%SpxF91eWCD|BE?u$H<#pGmWm@ zv13%Ybz#r3`COH-m&z{H&$*`hB{_{eU+p#Yrt{KI*&RpDZ%-e#%=GX8DwzH@gG>9* z4s@XItw~$cqS#5z-wq2OAL=BMSjD}!ts)fB)YswfZ$0`WeKatWdLGEXK@JaTV{vrV zfKg^2$N-|@pPzUGY3@n;a)E4)96>xQntZJ(^tX>hYC$$zT=zwO2+RQf>QSe}JXl9n z!d>8V?9Ji5xOt<@*Wi<(!p>X#NcLI4=2>h6?{h@Kv`h)LQX!-!vZE*fctwOBvK6Bj zXn0DfZyt!zy%9>dLO&Oto56a(xF4-3I83|M7p4}{CG<fR2-N^9P(mMxB6QL;hpEp{ z$32XhY=40i=)lXDywu2xjC>&GEa(boK?sMt90l{0U^iP(@}Qw4>Y~5BJ%$V;=H_DW z)$8VJ@!-7RpuK&OQxN85k?Wxj9Hgi%S~7hS;-@QV4gy}ZJsui7sS=`o=7v&c8?)5x zTk(8AUIXD<fIr>Kd-N#qp}whYT1zzukSz#Slh8(`((9pF$IeJ3o6};UX|dw&PX_4g z+jHCP7%rf3$^P2F>o172LECVt)7F7=7(pOV#{Q=;4Yp!ip8IQb4>u1o2gvYNZ%6@G zp&TT@tDW-=KVx1P0yg!glYe~>>}FztAd*6+LM{X&4%|qsOTzhLh})S<hxuZ8^B8HM zf_9937)ZqV;zUb4)s%cWtLSj9hZ+V-y%pPV>$eF#ae~3uSpmp+jd^+|N&~_NIyr%} zYVbr`LU5-lglxxGK76viuh+Kc6nHYi0Gn&pQq(cJ8I;2~3GyL`2cHD+evMwH5OmS% z^tjXI<@q{qql|o@Iqh+Eg(#C}Tf#x(BDD9`q=6NncA{P`$p2B|kH8ziOnkg8yg~x# zEPH6;;mvQ$^F&(|@hm2vEzOd)<3rVx-EAL=i{au=LlV~r<|g2?Z?z+p>|(U&W=L{w zznTN`TU(BKEuM*rR6v2t3`xm9F>V0mG|yyGd=ll*QHF&DeU7oDL$BlrvzxJ`;V#`> zPr%i-Ae%sb6{|<CSG}-&PpCvu#9QFXuKLfQVyA11caSBva8S?zi4~{kEn`o<5C|$U zBuSUV$8!K1B9=2S>>}BSl(mhC0LI@M6yI(~cplfoSI?=vI#n_k0R~iuzeyawc%(B7 zUE!WFeY-ji?FjsZRlqI^Lr#J<O<CBU<cKPQ<s8Re*PE=LPfW=+)6CD11YtA`kR|tp zOBgL-drea2=K*d;R4UPs6r<~2qc2I@0W0jzg0I3@nHCdXuYz#CF3@%a`*5{W#eJaj zl+M@XLOCHj_nGyaX4nrh2ar5$;v*}9R|%46>3IGo;XIXCT3~Y+;T4Gc!q<E+i26cH z`SRaeVdt3%bu5Rc8@|Jt)LfYriCn%?acYrWNkN`t`qSgPsqy;gZ*<ZJ5BC@XLDM`H z;#8eYEzyz+ut_^GYZ!HEAto<9ZR$b88FJI&bTd6x9}US*!pS@u+wc8tx1%}7aRq$! zSrv~{2qOyIH<?YHLlq<Op6|bQv^zcV{`jSQ>OqxYs_qI42H)Es``SR1QB&<>!~<Vv zwYs;~IW|7v9pD1omNPUYP$P;kKNu_OIJ(+yN!M{n4vZ9&7r96~bevaTyB;K&1Xpt+ zB2bCOmWK1gX}ue%kFCIHO9m)T9u8tQRD`d-@)=aWWeEY;OXB>Jbnn}|!uxrTChi`; zV+_qOMCc)_Px`eBKh@ZKEC}FaFf_Ut*SOaysWFx36yjSnV1f`}xQ;Fzf`W%Vef4fh z8SMd(v|BRlVcufnR;iX-3~2CCQ3b}8d01b2Q^^4oLN0{eHR*noOSfJ!65t-tf7f3o z5!aC#qcirkI986a{F^u`%uiHAuY7r6!G=d6Ntf=fm>4ST5x$|9lv8&x1&OC^2eNuk zjaVED9~>kxynPAl63FinUH1|zY<?8TLkwYH@Sh1^Ij>f1GN-StjSN_$vR`{5v()`i z_SMNTOX-Ng2ec9Cu3X~!YwqgJWYIRjY^agW8V|iND8#2e=`tZ+x$TeW*G{VNpvcan z!nBd)O*Yp~x_Y!T`d`w8!Lc?(dow<DJ!HeA%kviD4hWFSq>+M;DX!%Ip0E4Ii~`ij z$3wK-PJGR1K8!QV>LVLe&`h4JRsy)aowhk+IOx46g)`9@o!mspT7YtX<fdh1|0nQD z>RJ9_UUj+m+bwx<N;8Tlu(P<J!jg0)%E)~FcJnz~d4;UXSQ;AQh=rl6i(QR957#&5 zt{-K5hH!4vaw5ic!LBAU)DSEu(#2FE=6rVaGv7+GU8UHRmrf-`MF<}gJGSB}F8}fH zi0s`5@^d__H80yAyPwhfqtT{1N2&xn6?+kD<0qSUr0S2mKqRl41m3p(a#*3H#KBHh z{;Y${nsOPqo)YkTV#k3p@l?zia#pQX6)}Bf<ovR)@=jkZB?Op8Ghfa*$k`>PV3V74 z-ser<IgA>XFu`^{EsD<U^)Ioj5h+R%O0L}7uzf37h-4oQlS?fgop+Khed=HV2c1to zuxOsJ<}yYiuB1lliH|$PW`T9yhhI|p{YOY-j1V=t63m<lO=yqF*Q^XrB{AQHS$fFR zrs7C&NlbE3Hbet|Ph_Vjm(57bdEg?Ndi{p>-f|hW<IbTTw|vA0sxRLo8Jv`CsYdN` zxp`*pmuTfWoXQFh*ZPIhu+yI(ih``cCqyHXlk{Zd#<6Vl=*n-YQq!HKhbIrV)Wzr% z)XfwRkGVI5a9F(H@N9N{>$~k)0)bE%l{Rw6cE4s{-AcPjCpm|oF;AwkCAC<mT$Gwu zzGZ#e#w)?YGw{!ttuW$qCAkm(EBUQM3E27OK>5*<T+~{$UF%J4(hINEbk8{5rF(%g z$Bz{@wp+3mj)iVHDjl%blKZ3+*Qu<byI-<5?;h0F2Gtns|M95v_uON>X)FvUNbwGw zr7@&QLg9$>_o&N6bdZh_i8FB>6I{4@!ip<KSlHDx3I2RMPNmW9$OWF*8Y7P!wC{{} zsIq~)$g*{(g+B$Qd;OWfX?R(gqr%FI|1hp0RCA(7T~20VSJi81flC1!bI_Gw*j|yu ztIlRsA8|{=<fh*|i9RS}4(JV+Ojlm6{X)0n7ztpwA?DHiGL|OBi1gkwAL#JB5h+;F zXfu@|W4U?#GcZ@_Bb&Ji+tIrFhH)=d-#ps1B^y^ZVxMDnqzFbw_2cC$$@v~ZINo2C z%)q6f8q}ei_;`=E;tsT5VRU70v!+}kb^Vd4sp_X056aZz9JBaZPa2>hF;V}nh4#Rc zaVP*+ui{L7+YzUmt5M4iBq{KEP{3mK847%$IZYWRR9F<;>sPil;KvQZ9hST{gH7Dl z5(Q}7dPi4ijY!`^`9LKXt<&^p5z`Gztyoc@=8LFKxg%Vr)XSZjZN0ms$!3%Bv6*56 zBlP|)Ghqt1RH>H)%RYh=#4c?;0)I9eno1LWUfh#HF1sqgvp;9Zi}X(?{62t0yoy+& z(6?Vp$n14#Mi`qmZlXQ<)0F7C=s)Ur(%utHV`53V)y;o#Hkjn3njn?<ssK?*4s+0s zU&Jp2UXF02yin*{&Cvw6D5Z@EQ*u{rep^jPq<@TPCb2g!yi|Mdo?hN)vzK{QV7KpZ zHau6OXS%I(vC53UOzt^ZvZ`zT1<5OTyuq@1OD{Ow&7kq42s|}r^s0a&Lu7OJo%z9? zuHz1VsRNxXB^r=nvXy?ksFLBuzYw}=+N)}D)*1Q6(-eXme%a16zWjrZ2=%Y#bM{&% zUz&FY;%Dm!HOO<7kM%V>;sXq8RAsoP=Y%Jm$K16&>-z8pqneWbAqs7_Wva~#Vuz@I z7A}rpE>w51*P?AdtT_=HuWC;^u7m#R<SNn?b=GUVG0^Ngv54*(c~D<@jGoLf(-e@M z!0=8=O~pR5w-j5$D@?g}$5OB*uA-%FECvIT!gRbZh;pcI!gOX?(t%$T{|)^=L3Dy? zD^@3fH}7CrMT^g+^vd}y<?E%ff&40#P6vfQ-&GU#8aHm0`Tq*5`=0Y&KqNdqWpT5! z-Hi`so84<%%}Z~8TiwU!^!--Nm){n&)(GBchrcNIgg_f1WbpVX8C@=HuQ>3Hbhj#{ z9^fpX5)pQx69cEpAJzGjl9IZ4d;@<Qy_p*t#Y}gipX}X~7D+VwQWKvzaII+bh|b#D z`sop-9OGGMS|2{R^J8Kn^niXXuk}s1JM6J^kMR4HQ5QE0<eE8Z4Zn7~e-M0l&9g2p z(k*oUPi;5PSFw5_Iweh#;OV7AT=C_L_=uC;(Xdh5bk2f@s+44g74{LAlitSp@#D~3 zzX%wHUHk_(HjnRjhPjg^a*evHE#HNZ{hH3P8p(ggCWwJuERhP&!6xAhKjPR59@3gK zaO;cL6RQ!mzy3hybW+#~o=j*Qzi4lG=qbstxbN9ocTn#p5#aeta37x88h80q1=Bc6 z@o7eky^KzS`C~VvTVj=wZk8e0vA*|Gew3xzLq|<s)ggzrzoF2L<f6@VdFR`M4~m!7 zW_J&E7@%0>TE^ZqcxuZdd~T@+G*SW>g0RR>&!?7u1aq~<v|Zpzprhs=&z|F7iNFw5 z8;Er`vhQpxrCZ!X0F^j#JlE=dxBDDZG=MTSLXzbJvj=4wz4^~K8!u-|G}v!9OQ8~x z%w>cOSj}5>NDR4lTNy4(ylptK)uW;`eB^Rt=+R5k(krHK$3~U{7(q>~VuQ@ydSakp ze5~TTF)!ap>86@pX?p&Z_6gGFKYlsggJ)D%0jN`*3#9!$A<LAHiPSE<vUDCY;=<Ji z*4}7tKWy!~X(4HXk1G(q36ho(ZH)_q07tu$C+D{6@d}kds>Yi7&a~?^TgA)Z*$w?q z1261AAik3^jUR*pt+<TO5#8ehUzyPKWkEX(9yKg8{`~i`ew7AY1J~%wKz!{f#{Lnv z<^<nk;u@Tx<g<MZUu>B}Y(WQZi<3iQ;_V+H4odQD%%dy#OV;n|KJZp)?r{KS#|0Bq zGmwaF&1J$lDJ)hf2(7GnE`iR2a)rD4`Ir3%Aak0?q1|9O*GHdhJ5bRZvJ`?-t2-hz zih!1KQa(Ose7w)0Xz?sV)cLQuV$=AaJH-U;rbOSKp?064DuVfj$oHWQ7s--<cg8x5 zJ8!2SxF|zp`BkhMlC$P}<g%s|0wns1m>r>F4`x=X@=YBEdlT57wNBjVKutLrWEN1* zDOz#l^@b-PHouq3DG(f*zRz))c|<p#D)}OfOeXppk5qd4<1^fC!!z_uCmJJu3@M10 z%*e6MIzQ!Bx7t-adwE8htWg>ci@$wcBNDxy5_-plxU(4he;|ooV2+th(B5Ni)WlL= z#L0WNg~Rl(rrMp)1W(9=JeSA3tvyRroJ$go@5JOUUsvmg+kGt!r`hzAsDImaqTzl{ z+V^VR^EurM+xC(Y^&OLs<r=d4ay-Y4&qLr!5sPb~`|7=yh;vyJJ^2CZQ1Wb#uJzoD z$LW`iB$r3^y{p13XnZK=OkAazg(ubeJ0&$*9OUuIRXF*)Ua(tvz;$u=Ag)h+Xq{G* za<HKy{-<*A!-!uEr>oRlx}P}(Ula{2q+Fq7dWrh=KOEwk3*U#<ojfP6a}n0_TfPqp zrvR{4W$ghChr<$A*Q)x?K^Bs~+V}0=jq<0z&Ji2drC;D~h$_|%j<h}!X&E7(La_Ja oyXK>&o<^r36Jh_O{d%gY(-PAE<Z7JH*&h>t)ic$t)pm;hH=;Br!~g&Q literal 0 HcmV?d00001 diff --git a/resources/logos/zes-background.jpg b/resources/logos/zes-background.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3a60b9ac5b6a703262888978f1aa7d80b8bc475c GIT binary patch literal 60165 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 aX7fIa^=2t2yU>`&?Vn1TcC>5`#{UPiszBoa literal 0 HcmV?d00001 diff --git a/resources/logos/zes.png b/resources/logos/zes.png new file mode 100644 index 0000000000000000000000000000000000000000..abc27d185c7f0b89dd76c7232feba9e72008d796 GIT binary patch literal 5414 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 literal 0 HcmV?d00001 diff --git a/resources/settings.xml b/resources/settings.xml new file mode 100644 index 0000000..167f539 --- /dev/null +++ b/resources/settings.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<settings> + <category label="30800"> <!-- Credentials --> + <setting label="30801" type="lsep"/> <!-- Vier/Vijf/Zes login --> + <setting label="30803" type="text" id="username"/> + <setting label="30805" type="text" id="password" option="hidden"/> + </category> +</settings> diff --git a/test/__init__.py b/test/__init__.py new file mode 100644 index 0000000..0fb3477 --- /dev/null +++ b/test/__init__.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- +""" Tests """ + +import logging + +logging.basicConfig(level=logging.DEBUG) diff --git a/test/test_api.py b/test/test_api.py new file mode 100644 index 0000000..2a83390 --- /dev/null +++ b/test/test_api.py @@ -0,0 +1,58 @@ +# -*- coding: utf-8 -*- +""" Tests for Content API """ + +# pylint: disable=missing-docstring,no-self-use + +from __future__ import absolute_import, division, print_function, unicode_literals + +import logging +import unittest + +from resources.lib import kodiutils +from resources.lib.viervijfzes.auth import AuthApi +from resources.lib.viervijfzes.content import ContentApi, Program, Episode + +_LOGGER = logging.getLogger('test-api') + + +class TestApi(unittest.TestCase): + def __init__(self, *args, **kwargs): + super(TestApi, self).__init__(*args, **kwargs) + self._auth = AuthApi(kodiutils.get_setting('username'), kodiutils.get_setting('password'), kodiutils.get_tokens_path()) + + def test_notifications(self): + api = ContentApi(self._auth.get_token()) + notifications = api.get_notifications() + self.assertIsInstance(notifications, list) + + def test_programs(self): + api = ContentApi(self._auth.get_token()) + + for channel in ['vier', 'vijf', 'zes']: + channels = api.get_programs(channel) + self.assertIsInstance(channels, list) + + def test_episodes(self): + api = ContentApi(self._auth.get_token()) + + for channel, program in [('vier', 'auwch'), ('vijf', 'zo-man-zo-vrouw')]: + program = api.get_program(channel, program) + self.assertIsInstance(program, Program) + self.assertIsInstance(program.seasons, dict) + # self.assertIsInstance(program.seasons[0], Season) + self.assertIsInstance(program.episodes, list) + self.assertIsInstance(program.episodes[0], Episode) + _LOGGER.info('Got program: %s', program) + + def test_get_stream(self): + api = ContentApi(self._auth.get_token()) + program = api.get_program('vier', 'auwch') + episode = program.episodes[0] + video = api.get_stream(episode.channel, episode.uuid) + self.assertTrue(video) + + _LOGGER.info('Got video URL: %s', video) + + +if __name__ == '__main__': + unittest.main() diff --git a/test/test_auth.py b/test/test_auth.py new file mode 100644 index 0000000..f84d973 --- /dev/null +++ b/test/test_auth.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +""" Tests for AUTH API """ + +# pylint: disable=missing-docstring,no-self-use + +from __future__ import absolute_import, division, print_function, unicode_literals + +import logging +import unittest + +from resources.lib import kodiutils +from resources.lib.viervijfzes.auth import AuthApi + +_LOGGER = logging.getLogger('test-auth') + + +class TestAuth(unittest.TestCase): + def __init__(self, *args, **kwargs): + super(TestAuth, self).__init__(*args, **kwargs) + self._auth = AuthApi(kodiutils.get_setting('username'), kodiutils.get_setting('password'), kodiutils.get_tokens_path()) + + def test_login(self): + # Clear any cache we have + self._auth.clear_cache() + + # We should get a token by logging in + token = self._auth.get_token() + self.assertTrue(token) + + # Test it a second time, it should go from memory now + token = self._auth.get_token() + self.assertTrue(token) + + +if __name__ == '__main__': + unittest.main() diff --git a/test/test_epg.py b/test/test_epg.py new file mode 100644 index 0000000..1a17f3e --- /dev/null +++ b/test/test_epg.py @@ -0,0 +1,69 @@ +# -*- coding: utf-8 -*- +""" Tests for EPG API """ + +# pylint: disable=missing-docstring,no-self-use + +from __future__ import absolute_import, division, print_function, unicode_literals + +import logging +import unittest +from datetime import date + +from resources.lib import kodiutils +from resources.lib.viervijfzes.auth import AuthApi +from resources.lib.viervijfzes.content import ContentApi, Episode +from resources.lib.viervijfzes.epg import EpgApi, EpgProgram + +_LOGGER = logging.getLogger('test-epg') + + +class TestEpg(unittest.TestCase): + def __init__(self, *args, **kwargs): + super(TestEpg, self).__init__(*args, **kwargs) + self._auth = AuthApi(kodiutils.get_setting('username'), kodiutils.get_setting('password'), kodiutils.get_tokens_path()) + + def test_vier_today(self): + epg = EpgApi() + programs = epg.get_epg('vier', date.today().strftime('%Y-%m-%d')) + self.assertIsInstance(programs, list) + self.assertIsInstance(programs[0], EpgProgram) + + def test_vijf_today(self): + epg = EpgApi() + programs = epg.get_epg('vijf', date.today().strftime('%Y-%m-%d')) + self.assertIsInstance(programs, list) + self.assertIsInstance(programs[0], EpgProgram) + + def test_zes_today(self): + epg = EpgApi() + programs = epg.get_epg('zes', date.today().strftime('%Y-%m-%d')) + self.assertIsInstance(programs, list) + self.assertIsInstance(programs[0], EpgProgram) + + def test_unknown_today(self): + epg = EpgApi() + with self.assertRaises(Exception): + epg.get_epg('vtm', date.today().strftime('%Y-%m-%d')) + + def test_vier_out_of_range(self): + epg = EpgApi() + programs = epg.get_epg('vier', '2020-01-01') + self.assertEqual(programs, []) + + def test_play_video_from_epg(self): + epg = EpgApi() + epg_programs = epg.get_epg('vier', date.today().strftime('%Y-%m-%d')) + epg_program = [program for program in epg_programs if program.video_url][0] + + # Lookup the Episode data since we don't have an UUID + api = ContentApi(self._auth.get_token()) + episode = api.get_episode(epg_program.channel, epg_program.video_url) + self.assertIsInstance(episode, Episode) + + # Get stream based on the Episode's UUID + video = api.get_stream(episode.channel, episode.uuid) + self.assertTrue(video) + + +if __name__ == '__main__': + unittest.main() diff --git a/test/test_search.py b/test/test_search.py new file mode 100644 index 0000000..dab23f3 --- /dev/null +++ b/test/test_search.py @@ -0,0 +1,39 @@ +# -*- coding: utf-8 -*- +""" Tests for EPG API """ + +# pylint: disable=missing-docstring,no-self-use + +from __future__ import absolute_import, division, print_function, unicode_literals + +import logging +import unittest + +from resources.lib.viervijfzes.content import Program +from resources.lib.viervijfzes.search import SearchApi + +_LOGGER = logging.getLogger('test-search') + + +class TestSearch(unittest.TestCase): + def __init__(self, *args, **kwargs): + super(TestSearch, self).__init__(*args, **kwargs) + + def test_search(self): + search = SearchApi() + programs = search.search('de mol') + self.assertIsInstance(programs, list) + self.assertIsInstance(programs[0], Program) + + def test_search_empty(self): + search = SearchApi() + programs = search.search('') + self.assertIsInstance(programs, list) + + def test_search_space(self): + search = SearchApi() + programs = search.search(' ') + self.assertIsInstance(programs, list) + + +if __name__ == '__main__': + unittest.main() diff --git a/test/userdata/credentials.json.example b/test/userdata/credentials.json.example new file mode 100644 index 0000000..a11ffea --- /dev/null +++ b/test/userdata/credentials.json.example @@ -0,0 +1,4 @@ +{ + "username": "username", + "password": "password" +} diff --git a/test/userdata/global_settings.json b/test/userdata/global_settings.json new file mode 100644 index 0000000..74d1c53 --- /dev/null +++ b/test/userdata/global_settings.json @@ -0,0 +1,6 @@ +{ + "locale.language": "resource.language.nl_nl", + "network.bandwidth": 0, + "network.usehttpproxy": false, + "videolibrary.showallitems": true +} diff --git a/test/xbmc.py b/test/xbmc.py new file mode 100644 index 0000000..8dd1c46 --- /dev/null +++ b/test/xbmc.py @@ -0,0 +1,244 @@ +# -*- coding: utf-8 -*- +# Copyright: (c) 2019, Dag Wieers (@dagwieers) <dag@wieers.com> +# GNU General Public License v3.0 (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) +''' This file implements the Kodi xbmc module, either using stubs or alternative functionality ''' + +# pylint: disable=invalid-name,no-self-use,unused-argument + +from __future__ import absolute_import, division, print_function, unicode_literals + +import json +import os +import time + +from xbmcextra import global_settings, import_language + +LOGDEBUG = 0 +LOGERROR = 4 +LOGFATAL = 6 +LOGINFO = 1 +LOGNONE = 7 +LOGNOTICE = 2 +LOGSEVERE = 5 +LOGWARNING = 3 + +LOG_MAPPING = { + LOGDEBUG: 'Debug', + LOGERROR: 'Error', + LOGFATAL: 'Fatal', + LOGINFO: 'Info', + LOGNONE: 'None', + LOGNOTICE: 'Notice', + LOGSEVERE: 'Severe', + LOGWARNING: 'Warning', +} + +INFO_LABELS = { + 'System.BuildVersion': '18.2', +} + +REGIONS = { + 'datelong': '%A, %e %B %Y', + 'dateshort': '%Y-%m-%d', +} + +GLOBAL_SETTINGS = global_settings() +PO = import_language(language=GLOBAL_SETTINGS.get('locale.language')) + + +def to_unicode(text, encoding='utf-8'): + """ Force text to unicode """ + return text.decode(encoding) if isinstance(text, bytes) else text + + +def from_unicode(text, encoding='utf-8'): + """ Force unicode to text """ + import sys + if sys.version_info.major == 2 and isinstance(text, unicode): # noqa: F821; pylint: disable=undefined-variable + return text.encode(encoding) + return text + + +class Keyboard: + ''' A stub implementation of the xbmc Keyboard class ''' + + def __init__(self, line='', heading=''): + ''' A stub constructor for the xbmc Keyboard class ''' + + def doModal(self, autoclose=0): + ''' A stub implementation for the xbmc Keyboard class doModal() method ''' + + def isConfirmed(self): + ''' A stub implementation for the xbmc Keyboard class isConfirmed() method ''' + return True + + def getText(self): + ''' A stub implementation for the xbmc Keyboard class getText() method ''' + return 'test' + + +class Monitor: + ''' A stub implementation of the xbmc Monitor class ''' + + def __init__(self, line='', heading=''): + ''' A stub constructor for the xbmc Monitor class ''' + + def abortRequested(self): + ''' A stub implementation for the xbmc Keyboard class abortRequested() method ''' + return False + + def waitForAbort(self, timeout=None): + ''' A stub implementation for the xbmc Keyboard class waitForAbort() method ''' + return False + + +class Player: + ''' A stub implementation of the xbmc Player class ''' + + def __init__(self): + self._count = 0 + + def play(self, item='', listitem=None, windowed=False, startpos=-1): + ''' A stub implementation for the xbmc Player class play() method ''' + return + + def isPlaying(self): + ''' A stub implementation for the xbmc Player class isPlaying() method ''' + # Return True four times out of five + self._count += 1 + return bool(self._count % 5 != 0) + + def setSubtitles(self, subtitleFile): + ''' A stub implementation for the xbmc Player class setSubtitles() method ''' + return + + def showSubtitles(self, visible): + ''' A stub implementation for the xbmc Player class showSubtitles() method ''' + return + + def getTotalTime(self): + ''' A stub implementation for the xbmc Player class getTotalTime() method ''' + return 0 + + def getTime(self): + ''' A stub implementation for the xbmc Player class getTime() method ''' + return 0 + + def getVideoInfoTag(self): + ''' A stub implementation for the xbmc Player class getVideoInfoTag() method ''' + return VideoInfoTag() + + def getPlayingFile(self): + ''' A stub implementation for the xbmc Player class getPlayingFile() method ''' + return '' + +class VideoInfoTag: + ''' A stub implementation of the xbmc VideoInfoTag class ''' + + def __init__(self): + ''' A stub constructor for the xbmc VideoInfoTag class ''' + + def getSeason(self): + ''' A stub implementation for the xbmc VideoInfoTag class getSeason() method ''' + return 0 + + def getEpisode(self): + ''' A stub implementation for the xbmc VideoInfoTag class getEpisode() method ''' + return 0 + + def getTVShowTitle(self): + ''' A stub implementation for the xbmc VideoInfoTag class getTVShowTitle() method ''' + return '' + + def getPlayCount(self): + ''' A stub implementation for the xbmc VideoInfoTag class getPlayCount() method ''' + return 0 + + def getRating(self): + ''' A stub implementation for the xbmc VideoInfoTag class getRating() method ''' + return 0 + + +def executebuiltin(string, wait=False): # pylint: disable=unused-argument + ''' A stub implementation of the xbmc executebuiltin() function ''' + return + + +def executeJSONRPC(jsonrpccommand): + ''' A reimplementation of the xbmc executeJSONRPC() function ''' + command = json.loads(jsonrpccommand) + if command.get('method') == 'Settings.GetSettingValue': + key = command.get('params').get('setting') + return json.dumps(dict(id=1, jsonrpc='2.0', result=dict(value=GLOBAL_SETTINGS.get(key)))) + if command.get('method') == 'Addons.GetAddonDetails': + if command.get('params', {}).get('addonid') == 'script.module.inputstreamhelper': + return json.dumps(dict(id=1, jsonrpc='2.0', result=dict(addon=dict(enabled='true', version='0.3.5')))) + return json.dumps(dict(id=1, jsonrpc='2.0', result=dict(addon=dict(enabled='true', version='1.2.3')))) + if command.get('method') == 'Textures.GetTextures': + return json.dumps(dict(id=1, jsonrpc='2.0', result=dict(textures=[dict(cachedurl="", imagehash="", lasthashcheck="", textureid=4837, url="")]))) + if command.get('method') == 'Textures.RemoveTexture': + return json.dumps(dict(id=1, jsonrpc='2.0', result="OK")) + log("executeJSONRPC does not implement method '{method}'".format(**command), 'Error') + return json.dumps(dict(error=dict(code=-1, message='Not implemented'), id=1, jsonrpc='2.0')) + + +def getCondVisibility(string): + ''' A reimplementation of the xbmc getCondVisibility() function ''' + if string == 'system.platform.android': + return False + return True + + +def getInfoLabel(key): + ''' A reimplementation of the xbmc getInfoLabel() function ''' + return INFO_LABELS.get(key) + + +def getLocalizedString(msgctxt): + ''' A reimplementation of the xbmc getLocalizedString() function ''' + for entry in PO: + if entry.msgctxt == '#%s' % msgctxt: + return entry.msgstr or entry.msgid + if int(msgctxt) >= 30000: + log('Unable to translate #{msgctxt}'.format(msgctxt=msgctxt), LOGERROR) + return '<Untranslated>' + + +def getRegion(key): + ''' A reimplementation of the xbmc getRegion() function ''' + return REGIONS.get(key) + + +def log(msg, level=LOGINFO): + ''' A reimplementation of the xbmc log() function ''' + if level in (LOGERROR, LOGFATAL): + print('\033[31;1m%s: \033[32;0m%s\033[0;39m' % (LOG_MAPPING.get(level), to_unicode(msg))) + if level == LOGFATAL: + raise Exception(msg) + elif level in (LOGWARNING, LOGNOTICE): + print('\033[33;1m%s: \033[32;0m%s\033[0;39m' % (LOG_MAPPING.get(level), to_unicode(msg))) + else: + print('\033[32;1m%s: \033[32;0m%s\033[0;39m' % (LOG_MAPPING.get(level), to_unicode(msg))) + + +def setContent(self, content): + ''' A stub implementation of the xbmc setContent() function ''' + return + + +def sleep(seconds): + ''' A reimplementation of the xbmc sleep() function ''' + time.sleep(seconds) + + +def translatePath(path): + ''' A stub implementation of the xbmc translatePath() function ''' + if path.startswith('special://home'): + return path.replace('special://home', os.path.join(os.getcwd(), 'test/')) + if path.startswith('special://masterprofile'): + return path.replace('special://masterprofile', os.path.join(os.getcwd(), 'test/userdata/')) + if path.startswith('special://profile'): + return path.replace('special://profile', os.path.join(os.getcwd(), 'test/userdata/')) + if path.startswith('special://userdata'): + return path.replace('special://userdata', os.path.join(os.getcwd(), 'test/userdata/')) + return path diff --git a/test/xbmcaddon.py b/test/xbmcaddon.py new file mode 100644 index 0000000..edc4b3b --- /dev/null +++ b/test/xbmcaddon.py @@ -0,0 +1,51 @@ +# -*- coding: utf-8 -*- +# Copyright: (c) 2019, Dag Wieers (@dagwieers) <dag@wieers.com> +# GNU General Public License v3.0 (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) +''' This file implements the Kodi xbmcaddon module, either using stubs or alternative functionality ''' + +# pylint: disable=invalid-name + +from __future__ import absolute_import, division, print_function, unicode_literals +from xbmc import getLocalizedString +from xbmcextra import ADDON_INFO, ADDON_ID, addon_settings, global_settings, import_language + +GLOBAL_SETTINGS = global_settings() +ADDON_SETTINGS = addon_settings() +PO = import_language(language=GLOBAL_SETTINGS.get('locale.language')) + + +class Addon: + ''' A reimplementation of the xbmcaddon Addon class ''' + + def __init__(self, id=ADDON_ID): # pylint: disable=redefined-builtin + ''' A stub constructor for the xbmcaddon Addon class ''' + self.id = id + + def getAddonInfo(self, key): + ''' A working implementation for the xbmcaddon Addon class getAddonInfo() method ''' + stub_info = dict(id=self.id, name=self.id, version='2.3.4', type='kodi.inputstream', profile='special://userdata', path='special://userdata') + # Add stub_info values to ADDON_INFO when missing (e.g. path and profile) + addon_info = dict(stub_info, **ADDON_INFO) + return addon_info.get(self.id, stub_info).get(key) + + @staticmethod + def getLocalizedString(msgctxt): + ''' A working implementation for the xbmcaddon Addon class getLocalizedString() method ''' + return getLocalizedString(msgctxt) + + def getSetting(self, key): + ''' A working implementation for the xbmcaddon Addon class getSetting() method ''' + return ADDON_SETTINGS.get(self.id, {}).get(key, '') + + @staticmethod + def openSettings(): + ''' A stub implementation for the xbmcaddon Addon class openSettings() method ''' + + def setSetting(self, key, value): + ''' A stub implementation for the xbmcaddon Addon class setSetting() method ''' + if not ADDON_SETTINGS.get(self.id): + ADDON_SETTINGS[self.id] = dict() + ADDON_SETTINGS[self.id][key] = value + # NOTE: Disable actual writing as it is no longer needed for testing + # with open('test/userdata/addon_settings.json', 'w') as fd: + # json.dump(filtered_settings, fd, sort_keys=True, indent=4) diff --git a/test/xbmcextra.py b/test/xbmcextra.py new file mode 100644 index 0000000..317c5dc --- /dev/null +++ b/test/xbmcextra.py @@ -0,0 +1,137 @@ +# -*- coding: utf-8 -*- +# Copyright: (c) 2019, Dag Wieers (@dagwieers) <dag@wieers.com> +# GNU General Public License v3.0 (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) +''' Extra functions for testing ''' + +# pylint: disable=invalid-name + +from __future__ import absolute_import, division, print_function, unicode_literals + +import os +import xml.etree.ElementTree as ET + +import polib + + +def kodi_to_ansi(string): + ''' Convert Kodi format tags to ANSI codes ''' + if string is None: + return None + string = string.replace('[B]', '\033[1m') + string = string.replace('[/B]', '\033[21m') + string = string.replace('[I]', '\033[3m') + string = string.replace('[/I]', '\033[23m') + string = string.replace('[COLOR gray]', '\033[30;1m') + string = string.replace('[COLOR red]', '\033[31m') + string = string.replace('[COLOR green]', '\033[32m') + string = string.replace('[COLOR yellow]', '\033[33m') + string = string.replace('[COLOR blue]', '\033[34m') + string = string.replace('[COLOR purple]', '\033[35m') + string = string.replace('[COLOR cyan]', '\033[36m') + string = string.replace('[COLOR white]', '\033[37m') + string = string.replace('[/COLOR]', '\033[39;0m') + return string + + +def uri_to_path(uri): + ''' Shorten a plugin URI to just the path ''' + if uri is None: + return None + return ' \033[33m→ \033[34m%s\033[39;0m' % uri.replace('plugin://' + ADDON_ID, '') + + +def read_addon_xml(path): + ''' Parse the addon.xml and return an info dictionary ''' + info = dict( + path='./', # '/storage/.kodi/addons/plugin.video.viervijfzes + profile='special://userdata', # 'special://profile/addon_data/plugin.video.viervijfzes/', + type='xbmc.python.pluginsource', + ) + + tree = ET.parse(path) + root = tree.getroot() + + info.update(root.attrib) # Add 'id', 'name' and 'version' + info['author'] = info.pop('provider-name') + + for child in root: + if child.attrib.get('point') != 'xbmc.addon.metadata': + continue + for grandchild in child: + # Handle assets differently + if grandchild.tag == 'assets': + for asset in grandchild: + info[asset.tag] = asset.text + continue + # Not in English ? Drop it + if grandchild.attrib.get('lang', 'en_GB') != 'en_GB': + continue + # Add metadata + info[grandchild.tag] = grandchild.text + + return {info['name']: info} + + +def global_settings(): + ''' Use the global_settings file ''' + import json + try: + with open('test/userdata/global_settings.json') as f: + settings = json.load(f) + except OSError as e: + print("Error: Cannot use 'test/userdata/global_settings.json' : %s" % e) + settings = { + 'locale.language': 'resource.language.en_gb', + 'network.bandwidth': 0, + } + + if 'PROXY_SERVER' in os.environ: + settings['network.usehttpproxy'] = True + settings['network.httpproxytype'] = 0 + print('Using proxy server from environment variable PROXY_SERVER') + settings['network.httpproxyserver'] = os.environ.get('PROXY_SERVER') + if 'PROXY_PORT' in os.environ: + print('Using proxy server from environment variable PROXY_PORT') + settings['network.httpproxyport'] = os.environ.get('PROXY_PORT') + if 'PROXY_USERNAME' in os.environ: + print('Using proxy server from environment variable PROXY_USERNAME') + settings['network.httpproxyusername'] = os.environ.get('PROXY_USERNAME') + if 'PROXY_PASSWORD' in os.environ: + print('Using proxy server from environment variable PROXY_PASSWORD') + settings['network.httpproxypassword'] = os.environ.get('PROXY_PASSWORD') + return settings + + +def addon_settings(): + ''' Use the addon_settings file ''' + import json + try: + with open('test/userdata/addon_settings.json') as f: + settings = json.load(f) + except OSError as e: + print("Error: Cannot use 'test/userdata/addon_settings.json' : %s" % e) + settings = {} + + # Read credentials from environment or credentials.json + if 'ADDON_USERNAME' in os.environ and 'ADDON_PASSWORD' in os.environ: + print('Using credentials from the environment variables ADDON_USERNAME and ADDON_PASSWORD') + settings[ADDON_ID]['username'] = os.environ.get('ADDON_USERNAME') + settings[ADDON_ID]['password'] = os.environ.get('ADDON_PASSWORD') + settings[ADDON_ID]['profile'] = os.environ.get('ADDON_PROFILE') + elif os.path.exists('test/userdata/credentials.json'): + print('Using credentials from test/userdata/credentials.json') + with open('test/userdata/credentials.json') as f: + credentials = json.load(f) + settings[ADDON_ID].update(credentials) + else: + print("Error: Cannot use 'test/userdata/credentials.json'") + return settings + + +def import_language(language): + ''' Process the language.po file ''' + return polib.pofile('resources/language/{language}/strings.po'.format(language=language)) + + +ADDON_INFO = read_addon_xml('addon.xml') +ADDON_ID = next(iter(list(ADDON_INFO.values()))).get('id') diff --git a/test/xbmcgui.py b/test/xbmcgui.py new file mode 100644 index 0000000..343679e --- /dev/null +++ b/test/xbmcgui.py @@ -0,0 +1,223 @@ +# -*- coding: utf-8 -*- +# Copyright: (c) 2019, Dag Wieers (@dagwieers) <dag@wieers.com> +# GNU General Public License v3.0 (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) +''' This file implements the Kodi xbmcgui module, either using stubs or alternative functionality ''' + +# pylint: disable=invalid-name,too-many-arguments,unused-argument + +from __future__ import absolute_import, division, print_function, unicode_literals + +from xbmcextra import kodi_to_ansi + + +class Dialog: + ''' A reimplementation of the xbmcgui Dialog class ''' + + def __init__(self): + ''' A stub constructor for the xbmcgui Dialog class ''' + + @staticmethod + def notification(heading, message, icon=None, time=None, sound=None): + ''' A working implementation for the xbmcgui Dialog class notification() method ''' + heading = kodi_to_ansi(heading) + message = kodi_to_ansi(message) + print('\033[37;44;1mNOTIFICATION:\033[35;49;1m [%s] \033[37;1m%s\033[39;0m' % (heading, message)) + + @staticmethod + def ok(heading, line1, line2=None, line3=None): + ''' A stub implementation for the xbmcgui Dialog class ok() method ''' + heading = kodi_to_ansi(heading) + line1 = kodi_to_ansi(line1) + print('\033[37;44;1mOK:\033[35;49;1m [%s] \033[37;1m%s\033[39;0m' % (heading, line1)) + + @staticmethod + def info(listitem): + ''' A stub implementation for the xbmcgui Dialog class info() method ''' + + @staticmethod + def multiselect(heading, options, autoclose=0, preselect=None, useDetails=False): # pylint: disable=useless-return + ''' A stub implementation for the xbmcgui Dialog class multiselect() method ''' + if preselect is None: + preselect = [] + heading = kodi_to_ansi(heading) + print('\033[37;44;1mMULTISELECT:\033[35;49;1m [%s] \033[37;1m%s\033[39;0m' % (heading, ', '.join(options))) + return None + + @staticmethod + def contextmenu(items): + ''' A stub implementation for the xbmcgui Dialog class contextmenu() method ''' + print('\033[37;44;1mCONTEXTMENU:\033[35;49;1m \033[37;1m%s\033[39;0m' % (', '.join(items))) + return -1 + + @staticmethod + def yesno(heading, line1, line2=None, line3=None, nolabel=None, yeslabel=None, autoclose=0): + ''' A stub implementation for the xbmcgui Dialog class yesno() method ''' + heading = kodi_to_ansi(heading) + line1 = kodi_to_ansi(line1) + print('\033[37;44;1mYESNO:\033[35;49;1m [%s] \033[37;1m%s\033[39;0m' % (heading, line1)) + return True + + @staticmethod + def textviewer(heading, text=None, usemono=None): + ''' A stub implementation for the xbmcgui Dialog class textviewer() method ''' + heading = kodi_to_ansi(heading) + text = kodi_to_ansi(text) + print('\033[37;44;1mTEXTVIEWER:\033[35;49;1m [%s]\n\033[37;1m%s\033[39;0m' % (heading, text)) + + @staticmethod + def browseSingle(type, heading, shares, mask=None, useThumbs=None, treatAsFolder=None, default=None): # pylint: disable=redefined-builtin + ''' A stub implementation for the xbmcgui Dialog class browseSingle() method ''' + print('\033[37;44;1mBROWSESINGLE:\033[35;49;1m [%s] \033[37;1m%s\033[39;0m' % (type, heading)) + return 'special://masterprofile/addon_data/script.module.inputstreamhelper/' + + +class DialogProgress: + ''' A reimplementation of the xbmcgui DialogProgress ''' + + def __init__(self): + ''' A stub constructor for the xbmcgui DialogProgress class ''' + self.percentage = 0 + + @staticmethod + def close(): + ''' A stub implementation for the xbmcgui DialogProgress class close() method ''' + print() + + @staticmethod + def create(heading, line1, line2=None, line3=None): + ''' A stub implementation for the xbmcgui DialogProgress class create() method ''' + heading = kodi_to_ansi(heading) + line1 = kodi_to_ansi(line1) + print('\033[37;44;1mPROGRESS:\033[35;49;1m [%s] \033[37;1m%s\033[39;0m' % (heading, line1)) + + @staticmethod + def iscanceled(): + ''' A stub implementation for the xbmcgui DialogProgress class iscanceled() method ''' + return True + + def update(self, percentage, line1=None, line2=None, line3=None): + ''' A stub implementation for the xbmcgui DialogProgress class update() method ''' + if (percentage - 5) < self.percentage: + return + self.percentage = percentage + line1 = kodi_to_ansi(line1) + line2 = kodi_to_ansi(line2) + line3 = kodi_to_ansi(line3) + if line1 or line2 or line3: + print('\033[37;44;1mPROGRESS:\033[35;49;1m [%d%%] \033[37;1m%s\033[39;0m' % (percentage, line1 or line2 or line3)) + else: + print('\033[1G\033[37;44;1mPROGRESS:\033[35;49;1m [%d%%]\033[39;0m' % (percentage), end='') + + +class DialogProgressBG: + ''' A reimplementation of the xbmcgui DialogProgressBG ''' + + def __init__(self): + ''' A stub constructor for the xbmcgui DialogProgressBG class ''' + self.percentage = 0 + + @staticmethod + def close(): + ''' A stub implementation for the xbmcgui DialogProgressBG class close() method ''' + print() + + @staticmethod + def create(heading, message): + ''' A stub implementation for the xbmcgui DialogProgressBG class create() method ''' + heading = kodi_to_ansi(heading) + message = kodi_to_ansi(message) + print('\033[37;44;1mPROGRESS:\033[35;49;1m [%s] \033[37;1m%s\033[39;0m' % (heading, message)) + + @staticmethod + def isfinished(): + ''' A stub implementation for the xbmcgui DialogProgressBG class isfinished() method ''' + + def update(self, percentage, heading=None, message=None): + ''' A stub implementation for the xbmcgui DialogProgressBG class update() method ''' + if (percentage - 5) < self.percentage: + return + self.percentage = percentage + message = kodi_to_ansi(message) + if message: + print('\033[37;44;1mPROGRESS:\033[35;49;1m [%d%%] \033[37;1m%s\033[39;0m' % (percentage, message)) + else: + print('\033[1G\033[37;44;1mPROGRESS:\033[35;49;1m [%d%%]\033[39;0m' % (percentage), end='') + + +class DialogBusy: + ''' A reimplementation of the xbmcgui DialogBusy ''' + + def __init__(self): + ''' A stub constructor for the xbmcgui DialogBusy class ''' + + @staticmethod + def close(): + ''' A stub implementation for the xbmcgui DialogBusy class close() method ''' + + @staticmethod + def create(): + ''' A stub implementation for the xbmcgui DialogBusy class create() method ''' + + +class ListItem: + ''' A reimplementation of the xbmcgui ListItem class ''' + + def __init__(self, label='', label2='', iconImage='', thumbnailImage='', path='', offscreen=False): + ''' A stub constructor for the xbmcgui ListItem class ''' + self.label = kodi_to_ansi(label) + self.label2 = kodi_to_ansi(label2) + self.path = path + + @staticmethod + def addContextMenuItems(items, replaceItems=False): + ''' A stub implementation for the xbmcgui ListItem class addContextMenuItems() method ''' + return + + @staticmethod + def addStreamInfo(stream_type, stream_values): + ''' A stub implementation for the xbmcgui LitItem class addStreamInfo() method ''' + return + + @staticmethod + def setArt(key): + ''' A stub implementation for the xbmcgui ListItem class setArt() method ''' + return + + @staticmethod + def setContentLookup(enable): + ''' A stub implementation for the xbmcgui ListItem class setContentLookup() method ''' + return + + @staticmethod + def setInfo(type, infoLabels): # pylint: disable=redefined-builtin + ''' A stub implementation for the xbmcgui ListItem class setInfo() method ''' + return + + @staticmethod + def setIsFolder(isFolder): + ''' A stub implementation for the xbmcgui ListItem class setIsFolder() method ''' + return + + @staticmethod + def setMimeType(mimetype): + ''' A stub implementation for the xbmcgui ListItem class setMimeType() method ''' + return + + def setPath(self, path): + ''' A stub implementation for the xbmcgui ListItem class setPath() method ''' + self.path = path + + @staticmethod + def setProperty(key, value): + ''' A stub implementation for the xbmcgui ListItem class setProperty() method ''' + return + + @staticmethod + def setProperties(dictionary): + ''' A stub implementation for the xbmcgui ListItem class setProperties() method ''' + return + + @staticmethod + def setSubtitles(subtitleFiles): + ''' A stub implementation for the xbmcgui ListItem class setSubtitles() method ''' + return diff --git a/test/xbmcplugin.py b/test/xbmcplugin.py new file mode 100644 index 0000000..b5da85a --- /dev/null +++ b/test/xbmcplugin.py @@ -0,0 +1,111 @@ +# -*- coding: utf-8 -*- +# Copyright: (c) 2019, Dag Wieers (@dagwieers) <dag@wieers.com> +# GNU General Public License v3.0 (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) +''' This file implements the Kodi xbmcplugin module, either using stubs or alternative functionality ''' + +# pylint: disable=invalid-name,unused-argument +from __future__ import absolute_import, division, print_function, unicode_literals + +from xbmc import log, LOGERROR +from xbmcextra import kodi_to_ansi, uri_to_path + +try: # Python 3 + from urllib.error import HTTPError + from urllib.request import Request, urlopen +except ImportError: # Python 2 + from urllib2 import HTTPError, Request, urlopen + +SORT_METHOD_NONE = 0 +SORT_METHOD_LABEL = 1 +SORT_METHOD_LABEL_IGNORE_THE = 2 +SORT_METHOD_DATE = 3 +SORT_METHOD_SIZE = 4 +SORT_METHOD_FILE = 5 +SORT_METHOD_DRIVE_TYPE = 6 +SORT_METHOD_TRACKNUM = 7 +SORT_METHOD_DURATION = 8 +SORT_METHOD_TITLE = 9 +SORT_METHOD_TITLE_IGNORE_THE = 10 +SORT_METHOD_ARTIST = 11 +SORT_METHOD_ARTIST_AND_YEAR = 12 +SORT_METHOD_ARTIST_IGNORE_THE = 13 +SORT_METHOD_ALBUM = 14 +SORT_METHOD_ALBUM_IGNORE_THE = 15 +SORT_METHOD_GENRE = 16 +SORT_METHOD_COUNTRY = 17 +SORT_METHOD_VIDEO_YEAR = 18 # This is SORT_METHOD_YEAR in Kodi +SORT_METHOD_VIDEO_RATING = 19 +SORT_METHOD_VIDEO_USER_RATING = 20 +SORT_METHOD_DATEADDED = 21 +SORT_METHOD_PROGRAM_COUNT = 22 +SORT_METHOD_PLAYLIST_ORDER = 23 +SORT_METHOD_EPISODE = 24 +SORT_METHOD_VIDEO_TITLE = 25 +SORT_METHOD_VIDEO_SORT_TITLE = 26 +SORT_METHOD_VIDEO_SORT_TITLE_IGNORE_THE = 27 +SORT_METHOD_PRODUCTIONCODE = 28 +SORT_METHOD_SONG_RATING = 29 +SORT_METHOD_SONG_USER_RATING = 30 +SORT_METHOD_MPAA_RATING = 31 +SORT_METHOD_VIDEO_RUNTIME = 32 +SORT_METHOD_STUDIO = 33 +SORT_METHOD_STUDIO_IGNORE_THE = 34 +SORT_METHOD_FULLPATH = 35 +SORT_METHOD_LABEL_IGNORE_FOLDERS = 36 +SORT_METHOD_LASTPLAYED = 37 +SORT_METHOD_PLAYCOUNT = 38 +SORT_METHOD_LISTENERS = 39 +SORT_METHOD_UNSORTED = 40 +SORT_METHOD_CHANNEL = 41 +SORT_METHOD_CHANNEL_NUMBER = 42 +SORT_METHOD_BITRATE = 43 +SORT_METHOD_DATE_TAKEN = 44 + + +def addDirectoryItem(handle, path, listitem, isFolder=False): + ''' A reimplementation of the xbmcplugin addDirectoryItems() function ''' + label = kodi_to_ansi(listitem.label) + path = uri_to_path(path) if path else '' + bullet = '»' if isFolder else '·' + print('{bullet} {label}{path}'.format(bullet=bullet, label=label, path=path)) + return True + + +def addDirectoryItems(handle, listing, length): + ''' A reimplementation of the xbmcplugin addDirectoryItems() function ''' + for item in listing: + addDirectoryItem(handle, item[0], item[1], item[2]) + return True + + +def addSortMethod(handle, sortMethod): + ''' A stub implementation of the xbmcplugin addSortMethod() function ''' + + +def endOfDirectory(handle, succeeded=True, updateListing=True, cacheToDisc=True): + ''' A stub implementation of the xbmcplugin endOfDirectory() function ''' + print(kodi_to_ansi('[B]-=( [COLOR cyan]--------[/COLOR] )=-[/B]')) + + +def setContent(handle, content): + ''' A stub implementation of the xbmcplugin setContent() function ''' + + +def setPluginFanart(handle, image, color1=None, color2=None, color3=None): + ''' A stub implementation of the xbmcplugin setPluginFanart() function ''' + + +def setPluginCategory(handle, category): + ''' A reimplementation of the xbmcplugin setPluginCategory() function ''' + print(kodi_to_ansi('[B]-=( [COLOR cyan]%s[/COLOR] )=-[/B]' % category)) + + +def setResolvedUrl(handle, succeeded, listitem): + ''' A stub implementation of the xbmcplugin setResolvedUrl() function ''' + request = Request(listitem.path) + request.get_method = lambda: 'HEAD' + try: + response = urlopen(request) + log('Stream playing successfully: %s' % response.code) + except HTTPError as exc: + log('Playing stream returned: %s' % exc, LOGERROR) diff --git a/test/xbmcvfs.py b/test/xbmcvfs.py new file mode 100644 index 0000000..0daf157 --- /dev/null +++ b/test/xbmcvfs.py @@ -0,0 +1,71 @@ +# -*- coding: utf-8 -*- +# Copyright: (c) 2019, Dag Wieers (@dagwieers) <dag@wieers.com> +# GNU General Public License v3.0 (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) +''' This file implements the Kodi xbmcvfs module, either using stubs or alternative functionality ''' + +# pylint: disable=invalid-name + +from __future__ import absolute_import, division, print_function, unicode_literals +import os + + +def File(path, flags='r'): + ''' A reimplementation of the xbmcvfs File() function ''' + return open(path, flags) + + +def Stat(path): + ''' A reimplementation of the xbmcvfs Stat() function ''' + + class stat: + ''' A reimplementation of the xbmcvfs stat class ''' + + def __init__(self, path): + ''' The constructor xbmcvfs stat class ''' + self._stat = os.stat(path) + + def st_mtime(self): + ''' The xbmcvfs stat class st_mtime method ''' + return self._stat.st_mtime + + return stat(path) + + +def delete(path): + ''' A reimplementation of the xbmcvfs delete() function ''' + try: + os.remove(path) + except OSError: + pass + + +def exists(path): + ''' A reimplementation of the xbmcvfs exists() function ''' + return os.path.exists(path) + + +def listdir(path): + ''' A reimplementation of the xbmcvfs listdir() function ''' + files = [] + dirs = [] + for filename in os.listdir(path): + if os.path.isfile(filename): + files.append(filename) + if os.path.isdir(filename): + dirs.append(filename) + return dirs, files + + +def mkdir(path): + ''' A reimplementation of the xbmcvfs mkdir() function ''' + return os.mkdir(path) + + +def mkdirs(path): + ''' A reimplementation of the xbmcvfs mkdirs() function ''' + return os.makedirs(path) + + +def rmdir(path): + ''' A reimplementation of the xbmcvfs rmdir() function ''' + return os.rmdir(path) diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..ff4f2da --- /dev/null +++ b/tox.ini @@ -0,0 +1,26 @@ +[tox] +envlist = py27,py36,py37,flake8 +skipsdist = True +skip_missing_interpreters = True + +[testenv:flake8] +commands = + - {envbindir}/flake8 +deps = + flake8 + flake8-coding + flake8-future-import + +[flake8] +builtins = func +max-line-length = 160 +ignore = FI13,FI50,FI51,FI53,FI54,W503 +require-code = True +min-version = 2.7 + +[pytest] +filterwarnings = default + +[pycodestyle] +max-line-length = 160 +