├── .gitignore
├── resources
├── __init__.py
├── lib
│ ├── __init__.py
│ ├── model.py
│ ├── view.py
│ ├── api.py
│ ├── crunchyroll.py
│ └── controller.py
├── media
│ ├── screenshot-01.jpg
│ ├── screenshot-02.jpg
│ └── screenshot-03.jpg
├── settings.xml
└── language
│ ├── resource.language.en_gb
│ └── strings.po
│ ├── resource.language.pt_br
│ └── strings.po
│ ├── resource.language.fr_fr
│ └── strings.po
│ └── resource.language.de_de
│ └── strings.po
├── icon.png
├── fanart.jpg
├── changelog.txt
├── default.py
├── README.md
├── addon.xml
└── LICENSE.txt
/.gitignore:
--------------------------------------------------------------------------------
1 | Thumbs.db
2 | *.pyo
3 | __pycache__
4 |
--------------------------------------------------------------------------------
/resources/__init__.py:
--------------------------------------------------------------------------------
1 | # Dummy file to make this directory a package.
2 |
--------------------------------------------------------------------------------
/resources/lib/__init__.py:
--------------------------------------------------------------------------------
1 | # Dummy file to make this directory a package.
2 |
--------------------------------------------------------------------------------
/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MrKrabat/plugin.video.crunchyroll/HEAD/icon.png
--------------------------------------------------------------------------------
/fanart.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MrKrabat/plugin.video.crunchyroll/HEAD/fanart.jpg
--------------------------------------------------------------------------------
/resources/media/screenshot-01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MrKrabat/plugin.video.crunchyroll/HEAD/resources/media/screenshot-01.jpg
--------------------------------------------------------------------------------
/resources/media/screenshot-02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MrKrabat/plugin.video.crunchyroll/HEAD/resources/media/screenshot-02.jpg
--------------------------------------------------------------------------------
/resources/media/screenshot-03.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MrKrabat/plugin.video.crunchyroll/HEAD/resources/media/screenshot-03.jpg
--------------------------------------------------------------------------------
/changelog.txt:
--------------------------------------------------------------------------------
1 | v3.3.0 (2023.03.08)
2 | - Update for Kodi 20 Nexus
3 |
4 | v3.2.0 (2020.09.01)
5 | - Update for Kodi 19 Matrix
6 |
7 | v3.1.1 (2018.09.29)
8 | - Remove video quality selection
9 |
10 | v3.1.0 (2018.06.16)
11 | - Added context menu
12 | - Improvements
13 | - Fix playback
14 | - Small fixes
15 | - Compatibility with latest Kodi 18
16 |
17 | v3.0.0 (2018.02.xx)
18 | - Addon rewriten from scratch
19 |
--------------------------------------------------------------------------------
/resources/settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/default.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | # Crunchyroll
3 | # Copyright (C) 2018 MrKrabat
4 | #
5 | # This program is free software: you can redistribute it and/or modify
6 | # it under the terms of the GNU Affero General Public License as
7 | # published by the Free Software Foundation, either version 3 of the
8 | # License, or (at your option) any later version.
9 | #
10 | # This program is distributed in the hope that it will be useful,
11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 | # GNU Affero General Public License for more details.
14 | #
15 | # You should have received a copy of the GNU Affero General Public License
16 | # along with this program. If not, see .
17 |
18 | import sys
19 | import xbmc
20 | import xbmcaddon
21 |
22 |
23 | # plugin constants
24 | _addon = xbmcaddon.Addon(id=sys.argv[0][9:-1])
25 | _plugin = _addon.getAddonInfo("name")
26 | _version = _addon.getAddonInfo("version")
27 |
28 | xbmc.log("[PLUGIN] %s: version %s initialized" % (_plugin, _version))
29 |
30 | if __name__ == "__main__":
31 | from resources.lib import crunchyroll
32 | # start addon
33 | crunchyroll.main(sys.argv)
34 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## IMPORTANT NOTE: THIS REPO IS OUTDATED AND NO LONGER MAINTAINED. PLEASE CHECK OUT THESE PROJECTS: [smirgol/plugin.video.crunchyroll](https://github.com/smirgol/plugin.video.crunchyroll) and [xtero/CrunchyREroll](https://github.com/xtero/CrunchyREroll).
2 |
3 | # Crunchyroll plugin for Kodi
4 |
5 | Crunchyroll a KODI (XBMC) plugin for Crunchyroll.com.
6 |
7 | Git repo: https://github.com/MrKrabat/plugin.video.crunchyroll
8 |
9 | Forum posting: xxx
10 |
11 | **WARNING: You MUST be a PREMIUM member to use this plugin!**
12 | ***
13 |
14 | What this plugin currently can do:
15 | - [x] Supports all Crunchyroll regions
16 | - [x] Login with your account
17 | - [x] Search for animes
18 | - [x] Browse all featured anime/drama
19 | - [x] Browse all popular anime/drama
20 | - [x] Browse all simulcasts
21 | - [x] Browse all updated anime/drama
22 | - [x] Browse all new anime/drama
23 | - [x] Browse all anime/drama alphabetically
24 | - [x] Browse all genres
25 | - [x] Browse all seasons
26 | - [x] View queue/playlist
27 | - [x] View history
28 | - [ ] View random anime/drama
29 | - [x] View all seasons/arcs of an anime/drama
30 | - [x] View all episodes of an season/arc
31 | - [x] Context menue "Goto series" and "Goto season"
32 | - [ ] Add or remove anime/drama from your queue/playlist
33 | - [x] Display various informations
34 | - [x] Watch videos with premium subscription
35 | - [x] Synchronizes playback stats with Crunchyroll
36 | ***
37 |
38 | _This website and addon is not affiliated with Crunchyroll._
39 |
40 | _Kodi® (formerly known as XBMC™) is a registered trademark of the XBMC Foundation.
41 | This website and addon is not affiliated with Kodi, Team Kodi, or the XBMC Foundation._
42 |
--------------------------------------------------------------------------------
/resources/lib/model.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | # Crunchyroll
3 | # Copyright (C) 2018 MrKrabat
4 | #
5 | # This program is free software: you can redistribute it and/or modify
6 | # it under the terms of the GNU Affero General Public License as
7 | # published by the Free Software Foundation, either version 3 of the
8 | # License, or (at your option) any later version.
9 | #
10 | # This program is distributed in the hope that it will be useful,
11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 | # GNU Affero General Public License for more details.
14 | #
15 | # You should have received a copy of the GNU Affero General Public License
16 | # along with this program. If not, see .
17 |
18 | import sys
19 | try:
20 | from urlparse import parse_qs
21 | from urllib import unquote_plus
22 | except ImportError:
23 | from urllib.parse import parse_qs, unquote_plus
24 |
25 | import xbmcaddon
26 |
27 |
28 | def parse(argv):
29 | """Decode arguments
30 | """
31 | if (argv[2]):
32 | return Args(argv, parse_qs(argv[2][1:]))
33 | else:
34 | return Args(argv, {})
35 |
36 |
37 | class Args(object):
38 | """Arguments class
39 | Hold all arguments passed to the script and also persistent user data and
40 | reference to the addon. It is intended to hold all data necessary for the
41 | script.
42 | """
43 | def __init__(self, argv, kwargs):
44 | """Initialize arguments object
45 | Hold also references to the addon which can't be kept at module level.
46 | """
47 | self.PY2 = sys.version_info[0] == 2 #: True for Python 2
48 | self._argv = argv
49 | self._addonid = self._argv[0][9:-1]
50 | self._addon = xbmcaddon.Addon(id=self._addonid)
51 | self._addonname = self._addon.getAddonInfo("name")
52 | self._cj = None
53 |
54 | for key, value in kwargs.items():
55 | if value:
56 | setattr(self, key, unquote_plus(value[0]))
57 |
--------------------------------------------------------------------------------
/addon.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | video
9 |
10 |
11 | all
12 | en es pt fr de ar it ru
13 | Watch videos from Crunchyroll.com!
14 | Schaue Videos von Crunchyroll.com!
15 | Crunchyroll is an online video service and community that offers full-length episodes and movies of the very best in Japanese anime and Asian entertainment.
16 | Crunchyroll ist ein online Video-Streaming-Dienst und bietet Zugang zu vollen Episoden und Filmen der besten japanischen Anime und asiatischer Unterhaltung.
17 | WARNING: You MUST be a PREMIUM member to use this Plugin
18 | HINWEIS: Du MUSST PREMIUM Mitglied sein um dieses Plugin zu benutzen
19 | v3.3.0 (2023.03.08)[CR]- Update for Kodi 20 Nexus
20 | GNU Affero General Public License, v3
21 |
22 | http://www.crunchyroll.com/
23 | https://github.com/MrKrabat/plugin.video.crunchyroll
24 |
25 |
26 | icon.png
27 | fanart.jpg
28 | resources/media/screenshot-01.jpg
29 | resources/media/screenshot-02.jpg
30 | resources/media/screenshot-03.jpg
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/resources/language/resource.language.en_gb/strings.po:
--------------------------------------------------------------------------------
1 | # Kodi Media Center language file
2 | msgid ""
3 | msgstr ""
4 | "Project-Id-Version: Kodi Addons\n"
5 | "Report-Msgid-Bugs-To: alanwww1@kodi.org\n"
6 | "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
7 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8 | "Last-Translator: FULL NAME \n"
9 | "Language-Team: LANGUAGE\n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "Language: en\n"
14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15 |
16 |
17 | # Crunchyroll Settings
18 |
19 | msgctxt "#30001"
20 | msgid "Username"
21 | msgstr ""
22 |
23 | msgctxt "#30002"
24 | msgid "Password"
25 | msgstr ""
26 |
27 | msgctxt "#30003"
28 | msgid "Synchronize play time progress"
29 | msgstr ""
30 |
31 | msgctxt "#30004"
32 | msgid "Configure InputStream Adaptive"
33 | msgstr ""
34 |
35 | msgctxt "#30020"
36 | msgid "Subtitle Language"
37 | msgstr ""
38 |
39 | msgctxt "#30021"
40 | msgid "English (US)"
41 | msgstr ""
42 |
43 | msgctxt "#30022"
44 | msgid "English (UK)"
45 | msgstr ""
46 |
47 | msgctxt "#30023"
48 | msgid "Spanish"
49 | msgstr ""
50 |
51 | msgctxt "#30024"
52 | msgid "Spanish (Spain)"
53 | msgstr ""
54 |
55 | msgctxt "#30025"
56 | msgid "Portuguese (Brazil)"
57 | msgstr ""
58 |
59 | msgctxt "#30026"
60 | msgid "Portuguese (Portugal)"
61 | msgstr ""
62 |
63 | msgctxt "#30027"
64 | msgid "French (France)"
65 | msgstr ""
66 |
67 | msgctxt "#30028"
68 | msgid "German"
69 | msgstr ""
70 |
71 | msgctxt "#30029"
72 | msgid "Arabic"
73 | msgstr ""
74 |
75 | msgctxt "#30030"
76 | msgid "Italian"
77 | msgstr ""
78 |
79 | msgctxt "#30031"
80 | msgid "Russian"
81 | msgstr ""
82 |
83 |
84 | # Crunchyroll Menue
85 |
86 | msgctxt "#30040"
87 | msgid "Queue"
88 | msgstr ""
89 |
90 | msgctxt "#30041"
91 | msgid "Search"
92 | msgstr ""
93 |
94 | msgctxt "#30042"
95 | msgid "History"
96 | msgstr ""
97 |
98 | msgctxt "#30043"
99 | msgid "Random"
100 | msgstr ""
101 |
102 | msgctxt "#30044"
103 | msgid "Next page"
104 | msgstr ""
105 |
106 | msgctxt "#30045"
107 | msgid "Goto series"
108 | msgstr ""
109 |
110 | msgctxt "#30046"
111 | msgid "Goto season"
112 | msgstr ""
113 |
114 | msgctxt "#30050"
115 | msgid "Anime"
116 | msgstr ""
117 |
118 | msgctxt "#30051"
119 | msgid "Drama"
120 | msgstr ""
121 |
122 | msgctxt "#30052"
123 | msgid "Popular"
124 | msgstr ""
125 |
126 | msgctxt "#30053"
127 | msgid "Simulcasts"
128 | msgstr ""
129 |
130 | msgctxt "#30054"
131 | msgid "Updated"
132 | msgstr ""
133 |
134 | msgctxt "#30055"
135 | msgid "Alphabetical"
136 | msgstr ""
137 |
138 | msgctxt "#30056"
139 | msgid "Genres"
140 | msgstr ""
141 |
142 | msgctxt "#30057"
143 | msgid "Seasons"
144 | msgstr ""
145 |
146 | msgctxt "#30058"
147 | msgid "Featured"
148 | msgstr ""
149 |
150 | msgctxt "#30059"
151 | msgid "Newest"
152 | msgstr ""
153 |
154 |
155 | # Crunchyroll Messages
156 |
157 | msgctxt "#30060"
158 | msgid "Login failed"
159 | msgstr ""
160 |
161 | msgctxt "#30061"
162 | msgid "An error occurred"
163 | msgstr ""
164 |
165 | msgctxt "#30062"
166 | msgid "You need to be logged in"
167 | msgstr ""
168 |
169 | msgctxt "#30063"
170 | msgid "You need to be a premium member"
171 | msgstr ""
172 |
173 | msgctxt "#30064"
174 | msgid "Failed to play video"
175 | msgstr ""
176 |
177 | msgctxt "#30065"
178 | msgid "Do you want to continue watching at %s%%?"
179 | msgstr ""
180 |
181 | msgctxt "#30066"
182 | msgid "If the video does not start wait 30 seconds for the fallback to start."
183 | msgstr ""
184 |
--------------------------------------------------------------------------------
/resources/language/resource.language.pt_br/strings.po:
--------------------------------------------------------------------------------
1 | # Arquivo de linguagem do Kodi Media Center
2 | msgid ""
3 | msgstr ""
4 | "Project-Id-Version: Kodi Addons\n"
5 | "Report-Msgid-Bugs-To: alanwww1@kodi.org\n"
6 | "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
7 | "PO-Revision-Date: 2019-04-08 20:50-0300\n"
8 | "Language-Team: vlfr1997\n"
9 | "MIME-Version: 1.0\n"
10 | "Content-Type: text/plain; charset=UTF-8\n"
11 | "Content-Transfer-Encoding: 8bit\n"
12 | "Language: fr_FR\n"
13 | "Plural-Forms: nplurals=2; plural=(n > 1);\n"
14 | "Last-Translator: \n"
15 | "X-Generator: Poedit 2.0.6\n"
16 |
17 | # Crunchyroll Settings
18 | msgctxt "#30001"
19 | msgid "Username"
20 | msgstr "Usuário"
21 |
22 | msgctxt "#30002"
23 | msgid "Password"
24 | msgstr "Senha"
25 |
26 | msgctxt "#30003"
27 | msgid "Synchronize play time progress"
28 | msgstr "Sincronizar por tempo assistido"
29 |
30 | msgctxt "#30004"
31 | msgid "Configure InputStream Adaptive"
32 | msgstr "Configuração do plugin InputStream Adaptive"
33 |
34 | msgctxt "#30020"
35 | msgid "Subtitle Language"
36 | msgstr "Linguagem da legenda"
37 |
38 | msgctxt "#30021"
39 | msgid "English (US)"
40 | msgstr "Inglês (US)"
41 |
42 | msgctxt "#30022"
43 | msgid "English (UK)"
44 | msgstr "Inglês (UK)"
45 |
46 | msgctxt "#30023"
47 | msgid "Spanish"
48 | msgstr "Espanhol"
49 |
50 | msgctxt "#30024"
51 | msgid "Spanish (Spain)"
52 | msgstr "Espanhol (Espanha)"
53 |
54 | msgctxt "#30025"
55 | msgid "Portuguese (Brazil)"
56 | msgstr "Português (Brasil)"
57 |
58 | msgctxt "#30026"
59 | msgid "Portuguese (Portugal)"
60 | msgstr "Português (Portugal)"
61 |
62 | msgctxt "#30027"
63 | msgid "French (France)"
64 | msgstr "Francês (França)"
65 |
66 | msgctxt "#30028"
67 | msgid "German"
68 | msgstr "Alemão"
69 |
70 | msgctxt "#30029"
71 | msgid "Arabic"
72 | msgstr "Árabe"
73 |
74 | msgctxt "#30030"
75 | msgid "Italian"
76 | msgstr "Italiano"
77 |
78 | msgctxt "#30031"
79 | msgid "Russian"
80 | msgstr "Russo"
81 |
82 | # Crunchyroll Menue
83 | msgctxt "#30040"
84 | msgid "Queue"
85 | msgstr "Fila"
86 |
87 | msgctxt "#30041"
88 | msgid "Search"
89 | msgstr "Pesquisa"
90 |
91 | msgctxt "#30042"
92 | msgid "History"
93 | msgstr "Histórico"
94 |
95 | msgctxt "#30043"
96 | msgid "Random"
97 | msgstr "Aleatório"
98 |
99 | msgctxt "#30044"
100 | msgid "Next page"
101 | msgstr "Próxima Página"
102 |
103 | msgctxt "#30045"
104 | msgid "Goto series"
105 | msgstr "Séries"
106 |
107 | msgctxt "#30046"
108 | msgid "Goto season"
109 | msgstr "Temporadas"
110 |
111 | msgctxt "#30050"
112 | msgid "Anime"
113 | msgstr "Animes"
114 |
115 | msgctxt "#30051"
116 | msgid "Drama"
117 | msgstr "Drama"
118 |
119 | msgctxt "#30052"
120 | msgid "Popular"
121 | msgstr "Populares"
122 |
123 | msgctxt "#30053"
124 | msgid "Simulcasts"
125 | msgstr "Transmissão Simultânea"
126 |
127 | msgctxt "#30054"
128 | msgid "Updated"
129 | msgstr "Atualizados"
130 |
131 | msgctxt "#30055"
132 | msgid "Alphabetical"
133 | msgstr "Ordem Alfabética"
134 |
135 | msgctxt "#30056"
136 | msgid "Genres"
137 | msgstr "Gêneros"
138 |
139 | msgctxt "#30057"
140 | msgid "Seasons"
141 | msgstr "Temporadas"
142 |
143 | msgctxt "#30058"
144 | msgid "Featured"
145 | msgstr "Destaque"
146 |
147 | msgctxt "#30059"
148 | msgid "Newest"
149 | msgstr "Novo"
150 |
151 | # Crunchyroll Messages
152 | msgctxt "#30060"
153 | msgid "Login failed"
154 | msgstr "Falha de Login"
155 |
156 | msgctxt "#30061"
157 | msgid "An error occurred"
158 | msgstr "Um erro ocorreu"
159 |
160 | msgctxt "#30062"
161 | msgid "You need to be logged in"
162 | msgstr "Você precisa estar logado"
163 |
164 | msgctxt "#30063"
165 | msgid "You need to be a premium member"
166 | msgstr "Você precisa ser um membro premium"
167 |
168 | msgctxt "#30064"
169 | msgid "Failed to play video"
170 | msgstr "Falha ao reproduzir vídeo"
171 |
172 | msgctxt "#30065"
173 | msgid "Do you want to continue watching at %s%%?"
174 | msgstr "Você quer continuar assistindo de %s%%?"
175 |
176 | msgctxt "#30066"
177 | msgid "If the video does not start wait 30 seconds for the fallback to start."
178 | msgstr "Se o vídeo não iniciar, aguarde 30 segundos e tente novamente."
179 |
--------------------------------------------------------------------------------
/resources/language/resource.language.fr_fr/strings.po:
--------------------------------------------------------------------------------
1 | # Kodi Media Center language file
2 | msgid ""
3 | msgstr ""
4 | "Project-Id-Version: Kodi Addons\n"
5 | "Report-Msgid-Bugs-To: alanwww1@kodi.org\n"
6 | "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
7 | "PO-Revision-Date: 2018-12-25 20:38+0100\n"
8 | "Language-Team: Nux007\n"
9 | "MIME-Version: 1.0\n"
10 | "Content-Type: text/plain; charset=UTF-8\n"
11 | "Content-Transfer-Encoding: 8bit\n"
12 | "Language: fr_FR\n"
13 | "Plural-Forms: nplurals=2; plural=(n > 1);\n"
14 | "Last-Translator: \n"
15 | "X-Generator: Poedit 2.0.6\n"
16 |
17 | # Crunchyroll Settings
18 | msgctxt "#30001"
19 | msgid "Username"
20 | msgstr "Utilisateur"
21 |
22 | msgctxt "#30002"
23 | msgid "Password"
24 | msgstr "Mot de passe"
25 |
26 | msgctxt "#30003"
27 | msgid "Synchronize play time progress"
28 | msgstr "Synchroniser la progression de lecture"
29 |
30 | msgctxt "#30004"
31 | msgid "Configure InputStream Adaptive"
32 | msgstr "Configurer InputStream Adaptive"
33 |
34 | msgctxt "#30020"
35 | msgid "Subtitle Language"
36 | msgstr "Language des sous titres"
37 |
38 | msgctxt "#30021"
39 | msgid "English (US)"
40 | msgstr "Anglais (US)"
41 |
42 | msgctxt "#30022"
43 | msgid "English (UK)"
44 | msgstr "Anglais (UK)"
45 |
46 | msgctxt "#30023"
47 | msgid "Spanish"
48 | msgstr "Espagnol"
49 |
50 | msgctxt "#30024"
51 | msgid "Spanish (Spain)"
52 | msgstr "Espagnol (Espagne)"
53 |
54 | msgctxt "#30025"
55 | msgid "Portuguese (Brazil)"
56 | msgstr "Portugais (Brésil)"
57 |
58 | msgctxt "#30026"
59 | msgid "Portuguese (Portugal)"
60 | msgstr "Portugais (Portugal)"
61 |
62 | msgctxt "#30027"
63 | msgid "French (France)"
64 | msgstr "Français (France)"
65 |
66 | msgctxt "#30028"
67 | msgid "German"
68 | msgstr "Allemand"
69 |
70 | msgctxt "#30029"
71 | msgid "Arabic"
72 | msgstr "Arabe"
73 |
74 | msgctxt "#30030"
75 | msgid "Italian"
76 | msgstr "Italien"
77 |
78 | msgctxt "#30031"
79 | msgid "Russian"
80 | msgstr "Russe"
81 |
82 | # Crunchyroll Menue
83 | msgctxt "#30040"
84 | msgid "Queue"
85 | msgstr "File d'attente"
86 |
87 | msgctxt "#30041"
88 | msgid "Search"
89 | msgstr "Recherche"
90 |
91 | msgctxt "#30042"
92 | msgid "History"
93 | msgstr "Historique"
94 |
95 | msgctxt "#30043"
96 | msgid "Random"
97 | msgstr "Aléatoire"
98 |
99 | msgctxt "#30044"
100 | msgid "Next page"
101 | msgstr "Page suivante"
102 |
103 | msgctxt "#30045"
104 | msgid "Goto series"
105 | msgstr "Aller à séries"
106 |
107 | msgctxt "#30046"
108 | msgid "Goto season"
109 | msgstr "Aller à saisons"
110 |
111 | msgctxt "#30050"
112 | msgid "Anime"
113 | msgstr "Animes"
114 |
115 | msgctxt "#30051"
116 | msgid "Drama"
117 | msgstr "Dramas"
118 |
119 | msgctxt "#30052"
120 | msgid "Popular"
121 | msgstr "Populaires"
122 |
123 | msgctxt "#30053"
124 | msgid "Simulcasts"
125 | msgstr "Diffusions simultanées (Simulcasts)"
126 |
127 | msgctxt "#30054"
128 | msgid "Updated"
129 | msgstr "Mis à jour"
130 |
131 | msgctxt "#30055"
132 | msgid "Alphabetical"
133 | msgstr "Alphabétique"
134 |
135 | msgctxt "#30056"
136 | msgid "Genres"
137 | msgstr "Genres"
138 |
139 | msgctxt "#30057"
140 | msgid "Seasons"
141 | msgstr "Saisons"
142 |
143 | msgctxt "#30058"
144 | msgid "Featured"
145 | msgstr "En vedette"
146 |
147 | msgctxt "#30059"
148 | msgid "Newest"
149 | msgstr "Nouveautés"
150 |
151 | # Crunchyroll Messages
152 | msgctxt "#30060"
153 | msgid "Login failed"
154 | msgstr "Erreur de connexion"
155 |
156 | msgctxt "#30061"
157 | msgid "An error occurred"
158 | msgstr "Une erreur est survenue"
159 |
160 | msgctxt "#30062"
161 | msgid "You need to be logged in"
162 | msgstr "Vus devez être connecté"
163 |
164 | msgctxt "#30063"
165 | msgid "You need to be a premium member"
166 | msgstr "Voius devez être un membre premium"
167 |
168 | msgctxt "#30064"
169 | msgid "Failed to play video"
170 | msgstr "Erreur de lecture vidéo"
171 |
172 | msgctxt "#30065"
173 | msgid "Do you want to continue watching at %s%%?"
174 | msgstr "Voulez vous continuer à regarder depuis %s%% ?"
175 |
176 | msgctxt "#30066"
177 | msgid "If the video does not start wait 30 seconds for the fallback to start."
178 | msgstr "Si la vidéo ne démarre pas, attendez 30 secondes et recommencez."
179 |
--------------------------------------------------------------------------------
/resources/language/resource.language.de_de/strings.po:
--------------------------------------------------------------------------------
1 | # Kodi Media Center language file
2 | msgid ""
3 | msgstr ""
4 | "Project-Id-Version: Kodi Addons\n"
5 | "Report-Msgid-Bugs-To: alanwww1@kodi.org\n"
6 | "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
7 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8 | "Last-Translator: FULL NAME \n"
9 | "Language-Team: LANGUAGE\n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "Language: en\n"
14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15 |
16 |
17 | # Crunchyroll Settings
18 |
19 | msgctxt "#30001"
20 | msgid "Username"
21 | msgstr "Benutzername"
22 |
23 | msgctxt "#30002"
24 | msgid "Password"
25 | msgstr "Passwort"
26 |
27 | msgctxt "#30003"
28 | msgid "Synchronize play time progress"
29 | msgstr "Synchronisiere den Fortschritt der Spielzeit"
30 |
31 | msgctxt "#30004"
32 | msgid "Configure InputStream Adaptive"
33 | msgstr "InputStream Adaptive konfigurieren"
34 |
35 | msgctxt "#30020"
36 | msgid "Subtitle Language"
37 | msgstr "Untertitel Sprache"
38 |
39 | msgctxt "#30021"
40 | msgid "English (US)"
41 | msgstr "Englisch (US)"
42 |
43 | msgctxt "#30022"
44 | msgid "English (UK)"
45 | msgstr "Englisch (UK)"
46 |
47 | msgctxt "#30023"
48 | msgid "Spanish"
49 | msgstr "Spanisch"
50 |
51 | msgctxt "#30024"
52 | msgid "Spanish (Spain)"
53 | msgstr "Spanisch (Spanien)"
54 |
55 | msgctxt "#30025"
56 | msgid "Portuguese (Brazil)"
57 | msgstr "Portugiesisch (Brasilien)"
58 |
59 | msgctxt "#30026"
60 | msgid "Portuguese (Portugal)"
61 | msgstr "Portugiesisch (Portugal)"
62 |
63 | msgctxt "#30027"
64 | msgid "French (France)"
65 | msgstr "Französisch (Frankreich)"
66 |
67 | msgctxt "#30028"
68 | msgid "German"
69 | msgstr "Deutsch"
70 |
71 | msgctxt "#30029"
72 | msgid "Arabic"
73 | msgstr "Arabisch"
74 |
75 | msgctxt "#30030"
76 | msgid "Italian"
77 | msgstr "Italienisch"
78 |
79 | msgctxt "#30031"
80 | msgid "Russian"
81 | msgstr "Russisch"
82 |
83 |
84 | # Crunchyroll Menue
85 |
86 | msgctxt "#30040"
87 | msgid "Queue"
88 | msgstr "Playlist"
89 |
90 | msgctxt "#30041"
91 | msgid "Search"
92 | msgstr "Suche"
93 |
94 | msgctxt "#30042"
95 | msgid "History"
96 | msgstr "Verlauf"
97 |
98 | msgctxt "#30043"
99 | msgid "Random"
100 | msgstr "Zufällig"
101 |
102 | msgctxt "#30044"
103 | msgid "Next page"
104 | msgstr "Nächste Seite"
105 |
106 | msgctxt "#30045"
107 | msgid "Goto series"
108 | msgstr "Zur Serie"
109 |
110 | msgctxt "#30046"
111 | msgid "Goto season"
112 | msgstr "Zur Season"
113 |
114 | msgctxt "#30050"
115 | msgid "Anime"
116 | msgstr "Anime"
117 |
118 | msgctxt "#30051"
119 | msgid "Drama"
120 | msgstr "Drama"
121 |
122 | msgctxt "#30052"
123 | msgid "Popular"
124 | msgstr "Beliebt"
125 |
126 | msgctxt "#30053"
127 | msgid "Simulcasts"
128 | msgstr "Simulcasts"
129 |
130 | msgctxt "#30054"
131 | msgid "Updated"
132 | msgstr "Aktualisiert"
133 |
134 | msgctxt "#30055"
135 | msgid "Alphabetical"
136 | msgstr "Von A bis Z"
137 |
138 | msgctxt "#30056"
139 | msgid "Genres"
140 | msgstr "Genres"
141 |
142 | msgctxt "#30057"
143 | msgid "Seasons"
144 | msgstr "Seasons"
145 |
146 | msgctxt "#30058"
147 | msgid "Featured"
148 | msgstr "Empfohlen"
149 |
150 | msgctxt "#30059"
151 | msgid "Newest"
152 | msgstr "Neuste"
153 |
154 |
155 | # Crunchyroll Messages
156 |
157 | msgctxt "#30060"
158 | msgid "Login failed"
159 | msgstr "Login fehlgeschlagen"
160 |
161 | msgctxt "#30061"
162 | msgid "An error occurred"
163 | msgstr "Ein Fehler ist aufgetreten"
164 |
165 | msgctxt "#30062"
166 | msgid "You need to be logged in"
167 | msgstr "Du musst eingeloggt sein"
168 |
169 | msgctxt "#30063"
170 | msgid "You need to be a premium member"
171 | msgstr "Du musst premium Nutzer sein"
172 |
173 | msgctxt "#30064"
174 | msgid "Failed to play video"
175 | msgstr "Fehlgeschlagen das Video abzuspielen"
176 |
177 | msgctxt "#30065"
178 | msgid "Do you want to continue watching at %s%%?"
179 | msgstr "Möchtest du das Video bei %s%% fortsetzen?"
180 |
181 | msgctxt "#30066"
182 | msgid "If the video does not start wait 30 seconds for the fallback to start."
183 | msgstr "Wenn das Video nicht abspielt, warte bitte 30 Sekunden, damit der Fallback einsetzen kann."
184 |
--------------------------------------------------------------------------------
/resources/lib/view.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | # Crunchyroll
3 | # Copyright (C) 2018 MrKrabat
4 | #
5 | # This program is free software: you can redistribute it and/or modify
6 | # it under the terms of the GNU Affero General Public License as
7 | # published by the Free Software Foundation, either version 3 of the
8 | # License, or (at your option) any later version.
9 | #
10 | # This program is distributed in the hope that it will be useful,
11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 | # GNU Affero General Public License for more details.
14 | #
15 | # You should have received a copy of the GNU Affero General Public License
16 | # along with this program. If not, see .
17 |
18 | import re
19 | try:
20 | from urllib import quote_plus
21 | except ImportError:
22 | from urllib.parse import quote_plus
23 |
24 | import xbmc
25 | import xbmcvfs
26 | import xbmcgui
27 | import xbmcplugin
28 |
29 |
30 | # keys allowed in setInfo
31 | types = ["count", "size", "date", "genre", "country", "year", "episode", "season", "sortepisode", "top250", "setid",
32 | "tracknumber", "rating", "userrating", "watched", "playcount", "overlay", "cast", "castandrole", "director",
33 | "mpaa", "plot", "plotoutline", "title", "originaltitle", "sorttitle", "duration", "studio", "tagline", "writer",
34 | "tvshowtitle", "premiered", "status", "set", "setoverview", "tag", "imdbnumber", "code", "aired", "credits",
35 | "lastplayed", "album", "artist", "votes", "path", "trailer", "dateadded", "mediatype", "dbid"]
36 |
37 |
38 | def endofdirectory(args):
39 | # sort methods are required in library mode
40 | xbmcplugin.addSortMethod(int(args._argv[1]), xbmcplugin.SORT_METHOD_NONE)
41 |
42 | # let xbmc know the script is done adding items to the list
43 | xbmcplugin.endOfDirectory(handle = int(args._argv[1]))
44 |
45 |
46 | def add_item(args, info, isFolder=True, total_items=0, mediatype="video"):
47 | """Add item to directory listing.
48 | """
49 |
50 | # create list item
51 | li = xbmcgui.ListItem(label = info["title"])
52 |
53 | # get infoLabels
54 | infoLabels = make_infolabel(args, info)
55 |
56 | # get url
57 | u = build_url(args, info)
58 |
59 | if isFolder:
60 | # directory
61 | infoLabels["mediatype"] = "tvshow"
62 | li.setInfo(mediatype, infoLabels)
63 | else:
64 | # playable video
65 | infoLabels["mediatype"] = "episode"
66 | li.setInfo(mediatype, infoLabels)
67 | li.setProperty("IsPlayable", "true")
68 |
69 | # add context menue
70 | cm = []
71 | if u"series_id" in u:
72 | cm.append((args._addon.getLocalizedString(30045), "Container.Update(%s)" % re.sub(r"(?<=mode=)[^&]*", "series", u)))
73 | if u"collection_id" in u:
74 | cm.append((args._addon.getLocalizedString(30046), "Container.Update(%s)" % re.sub(r"(?<=mode=)[^&]*", "episodes", u)))
75 | if len(cm) > 0:
76 | li.addContextMenuItems(cm)
77 |
78 | # set media image
79 | li.setArt({"thumb": info.get("thumb", "DefaultFolder.png"),
80 | "poster": info.get("thumb", "DefaultFolder.png"),
81 | "banner": info.get("thumb", "DefaultFolder.png"),
82 | "fanart": info.get("fanart", xbmcvfs.translatePath(args._addon.getAddonInfo("fanart"))),
83 | "icon": info.get("thumb", "DefaultFolder.png")})
84 |
85 | # add item to list
86 | xbmcplugin.addDirectoryItem(handle = int(args._argv[1]),
87 | url = u,
88 | listitem = li,
89 | isFolder = isFolder,
90 | totalItems = total_items)
91 |
92 |
93 | def quote_value(value, PY2):
94 | """Quote value depending on python
95 | """
96 | if PY2:
97 | if not isinstance(value, basestring):
98 | value = str(value)
99 | return quote_plus(value.encode("utf-8") if isinstance(value, unicode) else value)
100 | else:
101 | if not isinstance(value, str):
102 | value = str(value)
103 | return quote_plus(value)
104 |
105 |
106 | def build_url(args, info):
107 | """Create url
108 | """
109 | s = ""
110 | # step 1 copy new information from info
111 | for key, value in list(info.items()):
112 | if value:
113 | s = s + "&" + key + "=" + quote_value(value, args.PY2)
114 |
115 | # step 2 copy old information from args, but don't append twice
116 | for key, value in list(args.__dict__.items()):
117 | if value and key in types and not "&" + str(key) + "=" in s:
118 | s = s + "&" + key + "=" + quote_value(value, args.PY2)
119 |
120 | return args._argv[0] + "?" + s[1:]
121 |
122 |
123 | def make_infolabel(args, info):
124 | """Generate infoLabels from existing dict
125 | """
126 | infoLabels = {}
127 | # step 1 copy new information from info
128 | for key, value in list(info.items()):
129 | if value and key in types:
130 | infoLabels[key] = value
131 |
132 | # step 2 copy old information from args, but don't overwrite
133 | for key, value in list(args.__dict__.items()):
134 | if value and key in types and key not in infoLabels:
135 | infoLabels[key] = value
136 |
137 | return infoLabels
138 |
--------------------------------------------------------------------------------
/resources/lib/api.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | # Crunchyroll
3 | # Copyright (C) 2018 MrKrabat
4 | #
5 | # This program is free software: you can redistribute it and/or modify
6 | # it under the terms of the GNU Affero General Public License as
7 | # published by the Free Software Foundation, either version 3 of the
8 | # License, or (at your option) any later version.
9 | #
10 | # This program is distributed in the hope that it will be useful,
11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 | # GNU Affero General Public License for more details.
14 | #
15 | # You should have received a copy of the GNU Affero General Public License
16 | # along with this program. If not, see .
17 |
18 | import json
19 | import xbmcvfs
20 | from os import remove
21 | from os.path import join
22 | try:
23 | from urllib import urlencode
24 | except ImportError:
25 | from urllib.parse import urlencode
26 | try:
27 | from urllib2 import urlopen, build_opener, HTTPCookieProcessor, install_opener
28 | except ImportError:
29 | from urllib.request import urlopen, build_opener, HTTPCookieProcessor, install_opener
30 | try:
31 | from cookielib import LWPCookieJar
32 | except ImportError:
33 | from http.cookiejar import LWPCookieJar
34 |
35 | import xbmc
36 |
37 |
38 | class API:
39 | """Api documentation
40 | https://github.com/CloudMax94/crunchyroll-api/wiki/Api
41 | """
42 | URL = "https://api.crunchyroll.com/"
43 | VERSON = "1.1.21.0"
44 | TOKEN = "LNDJgOit5yaRIWN"
45 | DEVICE = "com.crunchyroll.windows.desktop"
46 | TIMEOUT = 30
47 |
48 |
49 | def start(args):
50 | """Login and session handler
51 | """
52 | # create cookiejar
53 | args._cj = LWPCookieJar()
54 |
55 | # lets urllib handle cookies
56 | opener = build_opener(HTTPCookieProcessor(args._cj))
57 | opener.addheaders = [("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36"),
58 | ("Accept-Encoding", "identity"),
59 | ("Accept", "*/*"),
60 | ("Content-Type", "application/x-www-form-urlencoded"),
61 | ("DNT", "1")]
62 | install_opener(opener)
63 |
64 | # load cookies
65 | try:
66 | args._cj.load(getCookiePath(args), ignore_discard=True)
67 | except IOError:
68 | # cookie file does not exist
69 | pass
70 |
71 | # get login informations
72 | username = args._addon.getSetting("crunchyroll_username")
73 | password = args._addon.getSetting("crunchyroll_password")
74 |
75 | # session management
76 | if not (args._session_id and args._auth_token):
77 | # create new session
78 | payload = {"device_id": args._device_id,
79 | "device_type": API.DEVICE,
80 | "access_token": API.TOKEN}
81 | req = request(args, "start_session", payload, True)
82 |
83 | # check for error
84 | if req["error"]:
85 | return False
86 | args._session_id = req["data"]["session_id"]
87 |
88 | # make login
89 | payload = {"password": password,
90 | "account": username}
91 | req = request(args, "login", payload, True)
92 |
93 | # check for error
94 | if req["error"]:
95 | return False
96 | args._auth_token = req["data"]["auth"]
97 | if not getattr(args, "_session_restart", False):
98 | pass
99 | else:
100 | # restart session
101 | payload = {"device_id": args._device_id,
102 | "device_type": API.DEVICE,
103 | "access_token": API.TOKEN,
104 | "auth": args._auth_token}
105 | req = request(args, "start_session", payload, True)
106 |
107 | # check for error
108 | if req["error"]:
109 | destroy(args)
110 | return False
111 | args._session_id = req["data"]["session_id"]
112 | args._auth_token = req["data"]["auth"]
113 | args._session_restart = False
114 |
115 | return True
116 |
117 |
118 | def close(args):
119 | """Saves cookies and session
120 | """
121 | args._addon.setSetting("session_id", args._session_id)
122 | args._addon.setSetting("auth_token", args._auth_token)
123 | if args._cj:
124 | args._cj.save(getCookiePath(args), ignore_discard=True)
125 |
126 |
127 | def destroy(args):
128 | """Destroys session
129 | """
130 | args._addon.setSetting("session_id", "")
131 | args._addon.setSetting("auth_token", "")
132 | args._session_id = ""
133 | args._auth_token = ""
134 | args._cj = False
135 | try:
136 | remove(getCookiePath(args))
137 | except WindowsError:
138 | pass
139 |
140 |
141 | def request(args, method, options, failed=False):
142 | """Make Crunchyroll JSON API call
143 | """
144 | # required in every request
145 | payload = {"version": API.VERSON,
146 | "locale": args._subtitle}
147 |
148 | # if not new session add access token
149 | if not method == "start_session":
150 | payload["session_id"] = args._session_id
151 |
152 | # merge payload with parameters
153 | payload.update(options)
154 | payload = urlencode(payload)
155 |
156 | # send payload
157 | url = API.URL + method + ".0.json"
158 | response = urlopen(url, payload.encode("utf-8"), API.TIMEOUT)
159 |
160 | # parse response
161 | json_data = response.read().decode("utf-8")
162 | json_data = json.loads(json_data)
163 |
164 | # check for error
165 | if json_data["error"]:
166 | xbmc.log("[PLUGIN] %s: API returned error '%s'" % (args._addonname, str(json_data)), xbmc.LOGINFO)
167 | args._session_restart = True
168 | if not failed:
169 | # retry request, session expired
170 | start(args)
171 | return request(args, method, options, True)
172 | elif failed:
173 | # destroy session
174 | destroy(args)
175 |
176 | return json_data
177 |
178 |
179 | def getCookiePath(args):
180 | """Get cookie file path
181 | """
182 | profile_path = xbmcvfs.translatePath(args._addon.getAddonInfo("profile"))
183 | if args.PY2:
184 | return join(profile_path.decode("utf-8"), u"cookies.lwp")
185 | else:
186 | return join(profile_path, "cookies.lwp")
187 |
--------------------------------------------------------------------------------
/resources/lib/crunchyroll.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | # Crunchyroll
3 | # Copyright (C) 2018 MrKrabat
4 | #
5 | # This program is free software: you can redistribute it and/or modify
6 | # it under the terms of the GNU Affero General Public License as
7 | # published by the Free Software Foundation, either version 3 of the
8 | # License, or (at your option) any later version.
9 | #
10 | # This program is distributed in the hope that it will be useful,
11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 | # GNU Affero General Public License for more details.
14 | #
15 | # You should have received a copy of the GNU Affero General Public License
16 | # along with this program. If not, see .
17 |
18 | import random
19 | import inputstreamhelper
20 |
21 | import xbmc
22 | import xbmcgui
23 | import xbmcaddon
24 | import xbmcplugin
25 |
26 | from . import api
27 | from . import view
28 | from . import model
29 | from . import controller
30 |
31 |
32 | def main(argv):
33 | """Main function for the addon
34 | """
35 | args = model.parse(argv)
36 |
37 | # inputstream adaptive settings
38 | if hasattr(args, "mode") and args.mode == "hls":
39 | is_helper = inputstreamhelper.Helper("hls")
40 | if is_helper.check_inputstream():
41 | xbmcaddon.Addon(id="inputstream.adaptive").openSettings()
42 | return True
43 |
44 | # get account informations
45 | username = args._addon.getSetting("crunchyroll_username")
46 | password = args._addon.getSetting("crunchyroll_password")
47 | args._session_id = args._addon.getSetting("session_id")
48 | args._auth_token = args._addon.getSetting("auth_token")
49 | args._device_id = args._addon.getSetting("device_id")
50 | if not args._device_id:
51 | char_set = "0123456789abcdefghijklmnopqrstuvwxyz0123456789"
52 | args._device_id = "".join(random.sample(char_set, 8)) + "-KODI-" + "".join(random.sample(char_set, 4)) + "-" + "".join(random.sample(char_set, 4)) + "-" + "".join(random.sample(char_set, 12))
53 | args._addon.setSetting("device_id", args._device_id)
54 |
55 | # get subtitle language
56 | args._subtitle = args._addon.getSetting("subtitle_language")
57 | if args._subtitle == "0":
58 | args._subtitle = "enUS"
59 | elif args._subtitle == "1":
60 | args._subtitle = "enGB"
61 | elif args._subtitle == "2":
62 | args._subtitle = "esLA"
63 | elif args._subtitle == "3":
64 | args._subtitle = "esES"
65 | elif args._subtitle == "4":
66 | args._subtitle = "ptBR"
67 | elif args._subtitle == "5":
68 | args._subtitle = "ptPT"
69 | elif args._subtitle == "6":
70 | args._subtitle = "frFR"
71 | elif args._subtitle == "7":
72 | args._subtitle = "deDE"
73 | elif args._subtitle == "8":
74 | args._subtitle = "arME"
75 | elif args._subtitle == "9":
76 | args._subtitle = "itIT"
77 | elif args._subtitle == "10":
78 | args._subtitle = "ruRU"
79 | else:
80 | args._subtitle = "enUS"
81 |
82 | if not (username and password):
83 | # open addon settings
84 | view.add_item(args, {"title": args._addon.getLocalizedString(30062)})
85 | view.endofdirectory(args)
86 | args._addon.openSettings()
87 | return False
88 | else:
89 | # login
90 | if api.start(args):
91 | # list menue
92 | xbmcplugin.setContent(int(args._argv[1]), "tvshows")
93 | check_mode(args)
94 | api.close(args)
95 | else:
96 | # login failed
97 | xbmc.log("[PLUGIN] %s: Login failed" % args._addonname, xbmc.LOGERROR)
98 | view.add_item(args, {"title": args._addon.getLocalizedString(30060)})
99 | view.endofdirectory(args)
100 | xbmcgui.Dialog().ok(args._addonname, args._addon.getLocalizedString(30060))
101 | return False
102 |
103 |
104 | def check_mode(args):
105 | """Run mode-specific functions
106 | """
107 | if hasattr(args, "mode"):
108 | mode = args.mode
109 | elif hasattr(args, "id"):
110 | # call from other plugin
111 | mode = "videoplay"
112 | args.url = "/media-" + args.id
113 | elif hasattr(args, "url"):
114 | # call from other plugin
115 | mode = "videoplay"
116 | args.url = args.url[26:]
117 | else:
118 | mode = None
119 |
120 | if not mode:
121 | showMainMenue(args)
122 |
123 | elif mode == "queue":
124 | controller.showQueue(args)
125 | elif mode == "search":
126 | controller.searchAnime(args)
127 | elif mode == "history":
128 | controller.showHistory(args)
129 | elif mode == "random":
130 | controller.showRandom(args)
131 |
132 | elif mode == "anime":
133 | showMainCategory(args, "anime")
134 | elif mode == "drama":
135 | showMainCategory(args, "drama")
136 |
137 | elif mode == "featured":
138 | controller.listSeries(args, "featured")
139 | elif mode == "popular":
140 | controller.listSeries(args, "popular")
141 | elif mode == "simulcast":
142 | controller.listSeries(args, "simulcast")
143 | elif mode == "updated":
144 | controller.listSeries(args, "updated")
145 | elif mode == "newest":
146 | controller.listSeries(args, "newest")
147 | elif mode == "alpha":
148 | controller.listSeries(args, "alpha")
149 | elif mode == "season":
150 | controller.listFilter(args, "season")
151 | elif mode == "genre":
152 | controller.listFilter(args, "genre")
153 |
154 | elif mode == "series":
155 | controller.viewSeries(args)
156 | elif mode == "episodes":
157 | controller.viewEpisodes(args)
158 | elif mode == "videoplay":
159 | controller.startplayback(args)
160 | else:
161 | # unkown mode
162 | xbmc.log("[PLUGIN] %s: Failed in check_mode '%s'" % (args._addonname, str(mode)), xbmc.LOGERROR)
163 | xbmcgui.Dialog().notification(args._addonname, args._addon.getLocalizedString(30061), xbmcgui.NOTIFICATION_ERROR)
164 | showMainMenue(args)
165 |
166 |
167 | def showMainMenue(args):
168 | """Show main menu
169 | """
170 | view.add_item(args,
171 | {"title": args._addon.getLocalizedString(30040),
172 | "mode": "queue"})
173 | view.add_item(args,
174 | {"title": args._addon.getLocalizedString(30041),
175 | "mode": "search"})
176 | view.add_item(args,
177 | {"title": args._addon.getLocalizedString(30042),
178 | "mode": "history"})
179 | #view.add_item(args,
180 | # {"title": args._addon.getLocalizedString(30043),
181 | # "mode": "random"})
182 | view.add_item(args,
183 | {"title": args._addon.getLocalizedString(30050),
184 | "mode": "anime"})
185 | view.add_item(args,
186 | {"title": args._addon.getLocalizedString(30051),
187 | "mode": "drama"})
188 | view.endofdirectory(args)
189 |
190 |
191 | def showMainCategory(args, genre):
192 | """Show main category
193 | """
194 | view.add_item(args,
195 | {"title": args._addon.getLocalizedString(30058),
196 | "mode": "featured",
197 | "genre": genre})
198 | view.add_item(args,
199 | {"title": args._addon.getLocalizedString(30052),
200 | "mode": "popular",
201 | "genre": genre})
202 | view.add_item(args,
203 | {"title": args._addon.getLocalizedString(30053),
204 | "mode": "simulcast",
205 | "genre": genre})
206 | view.add_item(args,
207 | {"title": args._addon.getLocalizedString(30054),
208 | "mode": "updated",
209 | "genre": genre})
210 | view.add_item(args,
211 | {"title": args._addon.getLocalizedString(30059),
212 | "mode": "newest",
213 | "genre": genre})
214 | view.add_item(args,
215 | {"title": args._addon.getLocalizedString(30055),
216 | "mode": "alpha",
217 | "genre": genre})
218 | view.add_item(args,
219 | {"title": args._addon.getLocalizedString(30057),
220 | "mode": "season",
221 | "genre": genre})
222 | view.add_item(args,
223 | {"title": args._addon.getLocalizedString(30056),
224 | "mode": "genre",
225 | "genre": genre})
226 | view.endofdirectory(args)
227 |
--------------------------------------------------------------------------------
/resources/lib/controller.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | # Crunchyroll
3 | # Copyright (C) 2018 MrKrabat
4 | #
5 | # This program is free software: you can redistribute it and/or modify
6 | # it under the terms of the GNU Affero General Public License as
7 | # published by the Free Software Foundation, either version 3 of the
8 | # License, or (at your option) any later version.
9 | #
10 | # This program is distributed in the hope that it will be useful,
11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 | # GNU Affero General Public License for more details.
14 | #
15 | # You should have received a copy of the GNU Affero General Public License
16 | # along with this program. If not, see .
17 |
18 | import ssl
19 | import time
20 | import inputstreamhelper
21 | try:
22 | from urllib2 import URLError
23 | except ImportError:
24 | from urllib.error import URLError
25 |
26 | import xbmc
27 | import xbmcgui
28 | import xbmcplugin
29 |
30 | from . import api
31 | from . import view
32 |
33 |
34 | def showQueue(args):
35 | """ shows anime queue/playlist
36 | """
37 | # api request
38 | payload = {"media_types": "anime|drama",
39 | "fields": "media.name,media.media_id,media.collection_id,media.collection_name,media.description,media.episode_number,media.created, \
40 | media.screenshot_image,media.premium_only,media.premium_available,media.available,media.premium_available,media.duration, \
41 | series.series_id,series.year,series.publisher_name,series.rating,series.genres,series.landscape_image"}
42 | req = api.request(args, "queue", payload)
43 |
44 | # check for error
45 | if req["error"]:
46 | view.add_item(args, {"title": args._addon.getLocalizedString(30061)})
47 | view.endofdirectory(args)
48 | return False
49 |
50 | # display media
51 | for item in req["data"]:
52 | # video no longer available
53 | if not ("most_likely_media" in item and "series" in item and item["most_likely_media"]["available"] and item["most_likely_media"]["premium_available"]):
54 | continue
55 |
56 | # add to view
57 | view.add_item(args,
58 | {"title": item["most_likely_media"]["collection_name"] + " #" + item["most_likely_media"]["episode_number"] + " - " + item["most_likely_media"]["name"],
59 | "tvshowtitle": item["most_likely_media"]["collection_name"],
60 | "duration": item["most_likely_media"]["duration"],
61 | "playcount": 1 if (100/(float(item["most_likely_media"]["duration"])+1))*int(item["playhead"]) > 90 else 0,
62 | "episode": item["most_likely_media"]["episode_number"],
63 | "episode_id": item["most_likely_media"]["media_id"],
64 | "collection_id": item["most_likely_media"]["collection_id"],
65 | "series_id": item["series"]["series_id"],
66 | "plot": item["most_likely_media"]["description"],
67 | "plotoutline": item["most_likely_media"]["description"],
68 | "genre": ", ".join(item["series"]["genres"]),
69 | "year": item["series"]["year"],
70 | "aired": item["most_likely_media"]["created"][:10],
71 | "premiered": item["most_likely_media"]["created"][:10],
72 | "studio": item["series"]["publisher_name"],
73 | "rating": int(item["series"]["rating"])/10.0,
74 | "thumb": (item["most_likely_media"]["screenshot_image"]["fwidestar_url"] if item["most_likely_media"]["premium_only"] else item["most_likely_media"]["screenshot_image"]["full_url"]) if item["most_likely_media"]["screenshot_image"] else "",
75 | "fanart": item["series"]["landscape_image"]["full_url"],
76 | "mode": "videoplay"},
77 | isFolder=False)
78 |
79 | view.endofdirectory(args)
80 | return True
81 |
82 |
83 | def searchAnime(args):
84 | """Search for anime
85 | """
86 | # ask for search string
87 | if not hasattr(args, "search"):
88 | d = xbmcgui.Dialog().input(args._addon.getLocalizedString(30041), type=xbmcgui.INPUT_ALPHANUM)
89 | if not d:
90 | return
91 | else:
92 | d = args.search
93 |
94 | # api request
95 | payload = {"media_types": "anime|drama",
96 | "q": d,
97 | "limit": 30,
98 | "offset": int(getattr(args, "offset", 0)),
99 | "fields": "series.name,series.series_id,series.description,series.year,series.publisher_name, \
100 | series.genres,series.portrait_image,series.landscape_image"}
101 | req = api.request(args, "autocomplete", payload)
102 |
103 | # check for error
104 | if req["error"]:
105 | view.add_item(args, {"title": args._addon.getLocalizedString(30061)})
106 | view.endofdirectory(args)
107 | return False
108 |
109 | # display media
110 | for item in req["data"]:
111 | # add to view
112 | view.add_item(args,
113 | {"title": item["name"],
114 | "tvshowtitle": item["name"],
115 | "series_id": item["series_id"],
116 | "plot": item["description"],
117 | "plotoutline": item["description"],
118 | "genre": ", ".join(item["genres"]),
119 | "year": item["year"],
120 | "studio": item["publisher_name"],
121 | "thumb": item["portrait_image"]["full_url"],
122 | "fanart": item["landscape_image"]["full_url"],
123 | "mode": "series"},
124 | isFolder=True)
125 |
126 | # show next page button
127 | if len(req["data"]) >= 30:
128 | view.add_item(args,
129 | {"title": args._addon.getLocalizedString(30044),
130 | "offset": int(getattr(args, "offset", 0)) + 30,
131 | "search": d,
132 | "mode": args.mode},
133 | isFolder=True)
134 |
135 | view.endofdirectory(args)
136 | return True
137 |
138 |
139 | def showHistory(args):
140 | """ shows history of watched anime
141 | """
142 | # api request
143 | payload = {"media_types": "anime|drama",
144 | "limit": 30,
145 | "offset": int(getattr(args, "offset", 0)),
146 | "fields": "media.name,media.media_id,media.collection_id,media.collection_name,media.description,media.episode_number,media.created, \
147 | media.screenshot_image,media.premium_only,media.premium_available,media.available,media.premium_available,media.duration,media.playhead, \
148 | series.series_id,series.year,series.publisher_name,series.rating,series.genres,series.landscape_image"}
149 | req = api.request(args, "recently_watched", payload)
150 |
151 | # check for error
152 | if req["error"]:
153 | view.add_item(args, {"title": args._addon.getLocalizedString(30061)})
154 | view.endofdirectory(args)
155 | return False
156 |
157 | # display media
158 | for item in req["data"]:
159 | # video no longer available
160 | if not ("media" in item and "series" in item and item["media"]["available"] and item["media"]["premium_available"]):
161 | continue
162 |
163 | # add to view
164 | view.add_item(args,
165 | {"title": item["media"]["collection_name"] + " #" + item["media"]["episode_number"] + " - " + item["media"]["name"],
166 | "tvshowtitle": item["media"]["collection_name"],
167 | "duration": item["media"]["duration"],
168 | "playcount": 1 if (100/(float(item["media"]["duration"])+1))*int(item["media"]["playhead"]) > 90 else 0,
169 | "episode": item["media"]["episode_number"],
170 | "episode_id": item["media"]["media_id"],
171 | "collection_id": item["media"]["collection_id"],
172 | "series_id": item["series"]["series_id"],
173 | "plot": item["media"]["description"],
174 | "plotoutline": item["media"]["description"],
175 | "genre": ", ".join(item["series"]["genres"]),
176 | "year": item["series"]["year"],
177 | "aired": item["media"]["created"][:10],
178 | "premiered": item["media"]["created"][:10],
179 | "studio": item["series"]["publisher_name"],
180 | "rating": int(item["series"]["rating"])/10.0,
181 | "thumb": (item["media"]["screenshot_image"]["fwidestar_url"] if item["media"]["premium_only"] else item["media"]["screenshot_image"]["full_url"]) if item["media"]["screenshot_image"] else "",
182 | "fanart": item["series"]["landscape_image"]["full_url"],
183 | "mode": "videoplay"},
184 | isFolder=False)
185 |
186 | # show next page button
187 | if len(req["data"]) >= 30:
188 | view.add_item(args,
189 | {"title": args._addon.getLocalizedString(30044),
190 | "offset": int(getattr(args, "offset", 0)) + 30,
191 | "mode": args.mode},
192 | isFolder=True)
193 |
194 | view.endofdirectory(args)
195 | return True
196 |
197 |
198 | def listSeries(args, mode):
199 | """ view all anime from selected mode
200 | """
201 | # api request
202 | payload = {"media_type": args.genre,
203 | "filter": mode,
204 | "limit": 30,
205 | "offset": int(getattr(args, "offset", 0)),
206 | "fields": "series.name,series.series_id,series.description,series.year,series.publisher_name, \
207 | series.genres,series.portrait_image,series.landscape_image"}
208 | req = api.request(args, "list_series", payload)
209 |
210 | # check for error
211 | if req["error"]:
212 | view.add_item(args, {"title": args._addon.getLocalizedString(30061)})
213 | view.endofdirectory(args)
214 | return False
215 |
216 | # display media
217 | for item in req["data"]:
218 | # add to view
219 | view.add_item(args,
220 | {"title": item["name"],
221 | "tvshowtitle": item["name"],
222 | "series_id": item["series_id"],
223 | "plot": item["description"],
224 | "plotoutline": item["description"],
225 | "genre": ", ".join(item["genres"]),
226 | "year": item["year"],
227 | "studio": item["publisher_name"],
228 | "thumb": item["portrait_image"]["full_url"],
229 | "fanart": item["landscape_image"]["full_url"],
230 | "mode": "series"},
231 | isFolder=True)
232 |
233 | # show next page button
234 | if len(req["data"]) >= 30:
235 | view.add_item(args,
236 | {"title": args._addon.getLocalizedString(30044),
237 | "offset": int(getattr(args, "offset", 0)) + 30,
238 | "search": getattr(args, "search", ""),
239 | "mode": args.mode},
240 | isFolder=True)
241 |
242 | view.endofdirectory(args)
243 | return True
244 |
245 |
246 | def listFilter(args, mode):
247 | """ view all anime from selected mode
248 | """
249 | # test if filter is selected
250 | if hasattr(args, "search"):
251 | return listSeries(args, "tag:" + args.search)
252 |
253 | # api request
254 | payload = {"media_type": args.genre}
255 | req = api.request(args, "categories", payload)
256 |
257 | # check for error
258 | if req["error"]:
259 | view.add_item(args, {"title": args._addon.getLocalizedString(30061)})
260 | view.endofdirectory(args)
261 | return False
262 |
263 | # display media
264 | for item in req["data"][mode]:
265 | # add to view
266 | view.add_item(args,
267 | {"title": item["label"],
268 | "search": item["tag"],
269 | "mode": args.mode},
270 | isFolder=True)
271 |
272 | view.endofdirectory(args)
273 | return True
274 |
275 |
276 | def viewSeries(args):
277 | """ view all seasons/arcs of an anime
278 | """
279 | # api request
280 | payload = {"series_id": args.series_id,
281 | "fields": "collection.name,collection.collection_id,collection.description,collection.media_type,collection.created, \
282 | collection.season,collection.complete,collection.portrait_image,collection.landscape_image"}
283 | req = api.request(args, "list_collections", payload)
284 |
285 | # check for error
286 | if req["error"]:
287 | view.add_item(args, {"title": args._addon.getLocalizedString(30061)})
288 | view.endofdirectory(args)
289 | return False
290 |
291 | # display media
292 | for item in req["data"]:
293 | # add to view
294 | view.add_item(args,
295 | {"title": item["name"],
296 | "tvshowtitle": item["name"],
297 | "season": item["season"],
298 | "collection_id": item["collection_id"],
299 | "series_id": args.series_id,
300 | "plot": item["description"],
301 | "plotoutline": item["description"],
302 | "genre": item["media_type"],
303 | "aired": item["created"][:10],
304 | "premiered": item["created"][:10],
305 | "status": u"Completed" if item["complete"] else u"Continuing",
306 | "thumb": item["portrait_image"]["full_url"] if item["portrait_image"] else args.thumb,
307 | "fanart": item["landscape_image"]["full_url"] if item["landscape_image"] else args.fanart,
308 | "mode": "episodes"},
309 | isFolder=True)
310 |
311 | view.endofdirectory(args)
312 | return True
313 |
314 |
315 | def viewEpisodes(args):
316 | """ view all episodes of season
317 | """
318 | # api request
319 | payload = {"collection_id": args.collection_id,
320 | "limit": 30,
321 | "offset": int(getattr(args, "offset", 0)),
322 | "fields": "media.name,media.media_id,media.collection_id,media.collection_name,media.description,media.episode_number,media.created,media.series_id, \
323 | media.screenshot_image,media.premium_only,media.premium_available,media.available,media.premium_available,media.duration,media.playhead"}
324 | req = api.request(args, "list_media", payload)
325 |
326 | # check for error
327 | if req["error"]:
328 | view.add_item(args, {"title": args._addon.getLocalizedString(30061)})
329 | view.endofdirectory(args)
330 | return False
331 |
332 | # display media
333 | for item in req["data"]:
334 | # add to view
335 | view.add_item(args,
336 | {"title": item["collection_name"] + " #" + item["episode_number"] + " - " + item["name"],
337 | "tvshowtitle": item["collection_name"],
338 | "duration": item["duration"],
339 | "playcount": 1 if (100/(float(item["duration"])+1))*int(item["playhead"]) > 90 else 0,
340 | "episode": item["episode_number"],
341 | "episode_id": item["media_id"],
342 | "collection_id": args.collection_id,
343 | "series_id": item["series_id"],
344 | "plot": item["description"],
345 | "plotoutline": item["description"],
346 | "aired": item["created"][:10],
347 | "premiered": item["created"][:10],
348 | "thumb": (item["screenshot_image"]["fwidestar_url"] if item["premium_only"] else item["screenshot_image"]["full_url"]) if item["screenshot_image"] else "",
349 | "fanart": args.fanart,
350 | "mode": "videoplay"},
351 | isFolder=False)
352 |
353 | # show next page button
354 | if len(req["data"]) >= 30:
355 | view.add_item(args,
356 | {"title": args._addon.getLocalizedString(30044),
357 | "collection_id": args.collection_id,
358 | "offset": int(getattr(args, "offset", 0)) + 30,
359 | "thumb": args.thumb,
360 | "fanart": args.fanart,
361 | "mode": args.mode},
362 | isFolder=True)
363 |
364 | view.endofdirectory(args)
365 | return True
366 |
367 |
368 | def startplayback(args):
369 | """ plays an episode
370 | """
371 | # api request
372 | payload = {"media_id": args.episode_id,
373 | "fields": "media.duration,media.playhead,media.stream_data"}
374 | req = api.request(args, "info", payload)
375 |
376 | # check for error
377 | if req["error"]:
378 | item = xbmcgui.ListItem(getattr(args, "title", "Title not provided"))
379 | xbmcplugin.setResolvedUrl(int(args._argv[1]), False, item)
380 | xbmcgui.Dialog().ok(args._addonname, args._addon.getLocalizedString(30064))
381 | return False
382 |
383 | # get stream url
384 | try:
385 | url = req["data"]["stream_data"]["streams"][0]["url"]
386 | except IndexError:
387 | item = xbmcgui.ListItem(getattr(args, "title", "Title not provided"))
388 | xbmcplugin.setResolvedUrl(int(args._argv[1]), False, item)
389 | xbmcgui.Dialog().ok(args._addonname, args._addon.getLocalizedString(30064))
390 | return False
391 |
392 | # prepare playback
393 | item = xbmcgui.ListItem(getattr(args, "title", "Title not provided"), path=url)
394 | item.setMimeType("application/vnd.apple.mpegurl")
395 | item.setContentLookup(False)
396 |
397 | # inputstream adaptive
398 | is_helper = inputstreamhelper.Helper("hls")
399 | if is_helper.check_inputstream():
400 | item.setProperty("inputstream", "inputstream.adaptive")
401 | item.setProperty("inputstream.adaptive.manifest_type", "hls")
402 | # start playback
403 | xbmcplugin.setResolvedUrl(int(args._argv[1]), True, item)
404 |
405 | # wait for playback
406 | #xbmcgui.Dialog().notification(args._addonname, args._addon.getLocalizedString(30066), xbmcgui.NOTIFICATION_INFO)
407 | if waitForPlayback(10):
408 | # if successful wait more
409 | xbmc.sleep(3000)
410 |
411 | # start fallback
412 | if not waitForPlayback(2):
413 | # start without inputstream adaptive
414 | xbmc.log("[PLUGIN] %s: Inputstream Adaptive failed, trying directly with kodi" % args._addonname, xbmc.LOGDEBUG)
415 | item.setProperty("inputstream", "")
416 | xbmc.Player().play(url, item)
417 |
418 | # sync playtime with crunchyroll
419 | if args._addon.getSetting("sync_playtime") == "true":
420 | # wait for video to begin
421 | player = xbmc.Player()
422 | if not waitForPlayback(30):
423 | xbmc.log("[PLUGIN] %s: Timeout reached, video did not start in 30 seconds" % args._addonname, xbmc.LOGERROR)
424 | #xbmcgui.Dialog().ok(args._addonname, args._addon.getLocalizedString(30064))
425 | return
426 |
427 | # ask if user want to continue playback
428 | resume = (100/(float(req["data"]["duration"])+1)) * int(req["data"]["playhead"])
429 | if resume >= 5 and resume <= 90:
430 | player.pause()
431 | if xbmcgui.Dialog().yesno(args._addonname, args._addon.getLocalizedString(30065) % int(resume)):
432 | player.seekTime(float(req["data"]["playhead"]) - 5)
433 | player.pause()
434 |
435 | # update playtime at crunchyroll
436 | try:
437 | while url == player.getPlayingFile():
438 | # wait 10 seconds
439 | xbmc.sleep(10000)
440 |
441 | if url == player.getPlayingFile():
442 | # api request
443 | payload = {"event": "playback_status",
444 | "media_id": args.episode_id,
445 | "playhead": int(player.getTime())}
446 | try:
447 | api.request(args, "log", payload)
448 | except (ssl.SSLError, URLError):
449 | # catch timeout exception
450 | pass
451 | except RuntimeError:
452 | xbmc.log("[PLUGIN] %s: Playback aborted" % args._addonname, xbmc.LOGDEBUG)
453 |
454 |
455 | def waitForPlayback(timeout=30):
456 | """ function that waits for playback
457 | """
458 | timer = time.time() + timeout
459 | while not xbmc.getCondVisibility("Player.HasMedia"):
460 | xbmc.sleep(50)
461 | # timeout to prevent infinite loop
462 | if time.time() > timer:
463 | return False
464 |
465 | return True
466 |
--------------------------------------------------------------------------------
/LICENSE.txt:
--------------------------------------------------------------------------------
1 | GNU AFFERO GENERAL PUBLIC LICENSE
2 | Version 3, 19 November 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU Affero General Public License is a free, copyleft license for
11 | software and other kinds of works, specifically designed to ensure
12 | cooperation with the community in the case of network server software.
13 |
14 | The licenses for most software and other practical works are designed
15 | to take away your freedom to share and change the works. By contrast,
16 | our General Public Licenses are intended to guarantee your freedom to
17 | share and change all versions of a program--to make sure it remains free
18 | software for all its users.
19 |
20 | When we speak of free software, we are referring to freedom, not
21 | price. Our General Public Licenses are designed to make sure that you
22 | have the freedom to distribute copies of free software (and charge for
23 | them if you wish), that you receive source code or can get it if you
24 | want it, that you can change the software or use pieces of it in new
25 | free programs, and that you know you can do these things.
26 |
27 | Developers that use our General Public Licenses protect your rights
28 | with two steps: (1) assert copyright on the software, and (2) offer
29 | you this License which gives you legal permission to copy, distribute
30 | and/or modify the software.
31 |
32 | A secondary benefit of defending all users' freedom is that
33 | improvements made in alternate versions of the program, if they
34 | receive widespread use, become available for other developers to
35 | incorporate. Many developers of free software are heartened and
36 | encouraged by the resulting cooperation. However, in the case of
37 | software used on network servers, this result may fail to come about.
38 | The GNU General Public License permits making a modified version and
39 | letting the public access it on a server without ever releasing its
40 | source code to the public.
41 |
42 | The GNU Affero General Public License is designed specifically to
43 | ensure that, in such cases, the modified source code becomes available
44 | to the community. It requires the operator of a network server to
45 | provide the source code of the modified version running there to the
46 | users of that server. Therefore, public use of a modified version, on
47 | a publicly accessible server, gives the public access to the source
48 | code of the modified version.
49 |
50 | An older license, called the Affero General Public License and
51 | published by Affero, was designed to accomplish similar goals. This is
52 | a different license, not a version of the Affero GPL, but Affero has
53 | released a new version of the Affero GPL which permits relicensing under
54 | this license.
55 |
56 | The precise terms and conditions for copying, distribution and
57 | modification follow.
58 |
59 | TERMS AND CONDITIONS
60 |
61 | 0. Definitions.
62 |
63 | "This License" refers to version 3 of the GNU Affero General Public License.
64 |
65 | "Copyright" also means copyright-like laws that apply to other kinds of
66 | works, such as semiconductor masks.
67 |
68 | "The Program" refers to any copyrightable work licensed under this
69 | License. Each licensee is addressed as "you". "Licensees" and
70 | "recipients" may be individuals or organizations.
71 |
72 | To "modify" a work means to copy from or adapt all or part of the work
73 | in a fashion requiring copyright permission, other than the making of an
74 | exact copy. The resulting work is called a "modified version" of the
75 | earlier work or a work "based on" the earlier work.
76 |
77 | A "covered work" means either the unmodified Program or a work based
78 | on the Program.
79 |
80 | To "propagate" a work means to do anything with it that, without
81 | permission, would make you directly or secondarily liable for
82 | infringement under applicable copyright law, except executing it on a
83 | computer or modifying a private copy. Propagation includes copying,
84 | distribution (with or without modification), making available to the
85 | public, and in some countries other activities as well.
86 |
87 | To "convey" a work means any kind of propagation that enables other
88 | parties to make or receive copies. Mere interaction with a user through
89 | a computer network, with no transfer of a copy, is not conveying.
90 |
91 | An interactive user interface displays "Appropriate Legal Notices"
92 | to the extent that it includes a convenient and prominently visible
93 | feature that (1) displays an appropriate copyright notice, and (2)
94 | tells the user that there is no warranty for the work (except to the
95 | extent that warranties are provided), that licensees may convey the
96 | work under this License, and how to view a copy of this License. If
97 | the interface presents a list of user commands or options, such as a
98 | menu, a prominent item in the list meets this criterion.
99 |
100 | 1. Source Code.
101 |
102 | The "source code" for a work means the preferred form of the work
103 | for making modifications to it. "Object code" means any non-source
104 | form of a work.
105 |
106 | A "Standard Interface" means an interface that either is an official
107 | standard defined by a recognized standards body, or, in the case of
108 | interfaces specified for a particular programming language, one that
109 | is widely used among developers working in that language.
110 |
111 | The "System Libraries" of an executable work include anything, other
112 | than the work as a whole, that (a) is included in the normal form of
113 | packaging a Major Component, but which is not part of that Major
114 | Component, and (b) serves only to enable use of the work with that
115 | Major Component, or to implement a Standard Interface for which an
116 | implementation is available to the public in source code form. A
117 | "Major Component", in this context, means a major essential component
118 | (kernel, window system, and so on) of the specific operating system
119 | (if any) on which the executable work runs, or a compiler used to
120 | produce the work, or an object code interpreter used to run it.
121 |
122 | The "Corresponding Source" for a work in object code form means all
123 | the source code needed to generate, install, and (for an executable
124 | work) run the object code and to modify the work, including scripts to
125 | control those activities. However, it does not include the work's
126 | System Libraries, or general-purpose tools or generally available free
127 | programs which are used unmodified in performing those activities but
128 | which are not part of the work. For example, Corresponding Source
129 | includes interface definition files associated with source files for
130 | the work, and the source code for shared libraries and dynamically
131 | linked subprograms that the work is specifically designed to require,
132 | such as by intimate data communication or control flow between those
133 | subprograms and other parts of the work.
134 |
135 | The Corresponding Source need not include anything that users
136 | can regenerate automatically from other parts of the Corresponding
137 | Source.
138 |
139 | The Corresponding Source for a work in source code form is that
140 | same work.
141 |
142 | 2. Basic Permissions.
143 |
144 | All rights granted under this License are granted for the term of
145 | copyright on the Program, and are irrevocable provided the stated
146 | conditions are met. This License explicitly affirms your unlimited
147 | permission to run the unmodified Program. The output from running a
148 | covered work is covered by this License only if the output, given its
149 | content, constitutes a covered work. This License acknowledges your
150 | rights of fair use or other equivalent, as provided by copyright law.
151 |
152 | You may make, run and propagate covered works that you do not
153 | convey, without conditions so long as your license otherwise remains
154 | in force. You may convey covered works to others for the sole purpose
155 | of having them make modifications exclusively for you, or provide you
156 | with facilities for running those works, provided that you comply with
157 | the terms of this License in conveying all material for which you do
158 | not control copyright. Those thus making or running the covered works
159 | for you must do so exclusively on your behalf, under your direction
160 | and control, on terms that prohibit them from making any copies of
161 | your copyrighted material outside their relationship with you.
162 |
163 | Conveying under any other circumstances is permitted solely under
164 | the conditions stated below. Sublicensing is not allowed; section 10
165 | makes it unnecessary.
166 |
167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
168 |
169 | No covered work shall be deemed part of an effective technological
170 | measure under any applicable law fulfilling obligations under article
171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
172 | similar laws prohibiting or restricting circumvention of such
173 | measures.
174 |
175 | When you convey a covered work, you waive any legal power to forbid
176 | circumvention of technological measures to the extent such circumvention
177 | is effected by exercising rights under this License with respect to
178 | the covered work, and you disclaim any intention to limit operation or
179 | modification of the work as a means of enforcing, against the work's
180 | users, your or third parties' legal rights to forbid circumvention of
181 | technological measures.
182 |
183 | 4. Conveying Verbatim Copies.
184 |
185 | You may convey verbatim copies of the Program's source code as you
186 | receive it, in any medium, provided that you conspicuously and
187 | appropriately publish on each copy an appropriate copyright notice;
188 | keep intact all notices stating that this License and any
189 | non-permissive terms added in accord with section 7 apply to the code;
190 | keep intact all notices of the absence of any warranty; and give all
191 | recipients a copy of this License along with the Program.
192 |
193 | You may charge any price or no price for each copy that you convey,
194 | and you may offer support or warranty protection for a fee.
195 |
196 | 5. Conveying Modified Source Versions.
197 |
198 | You may convey a work based on the Program, or the modifications to
199 | produce it from the Program, in the form of source code under the
200 | terms of section 4, provided that you also meet all of these conditions:
201 |
202 | a) The work must carry prominent notices stating that you modified
203 | it, and giving a relevant date.
204 |
205 | b) The work must carry prominent notices stating that it is
206 | released under this License and any conditions added under section
207 | 7. This requirement modifies the requirement in section 4 to
208 | "keep intact all notices".
209 |
210 | c) You must license the entire work, as a whole, under this
211 | License to anyone who comes into possession of a copy. This
212 | License will therefore apply, along with any applicable section 7
213 | additional terms, to the whole of the work, and all its parts,
214 | regardless of how they are packaged. This License gives no
215 | permission to license the work in any other way, but it does not
216 | invalidate such permission if you have separately received it.
217 |
218 | d) If the work has interactive user interfaces, each must display
219 | Appropriate Legal Notices; however, if the Program has interactive
220 | interfaces that do not display Appropriate Legal Notices, your
221 | work need not make them do so.
222 |
223 | A compilation of a covered work with other separate and independent
224 | works, which are not by their nature extensions of the covered work,
225 | and which are not combined with it such as to form a larger program,
226 | in or on a volume of a storage or distribution medium, is called an
227 | "aggregate" if the compilation and its resulting copyright are not
228 | used to limit the access or legal rights of the compilation's users
229 | beyond what the individual works permit. Inclusion of a covered work
230 | in an aggregate does not cause this License to apply to the other
231 | parts of the aggregate.
232 |
233 | 6. Conveying Non-Source Forms.
234 |
235 | You may convey a covered work in object code form under the terms
236 | of sections 4 and 5, provided that you also convey the
237 | machine-readable Corresponding Source under the terms of this License,
238 | in one of these ways:
239 |
240 | a) Convey the object code in, or embodied in, a physical product
241 | (including a physical distribution medium), accompanied by the
242 | Corresponding Source fixed on a durable physical medium
243 | customarily used for software interchange.
244 |
245 | b) Convey the object code in, or embodied in, a physical product
246 | (including a physical distribution medium), accompanied by a
247 | written offer, valid for at least three years and valid for as
248 | long as you offer spare parts or customer support for that product
249 | model, to give anyone who possesses the object code either (1) a
250 | copy of the Corresponding Source for all the software in the
251 | product that is covered by this License, on a durable physical
252 | medium customarily used for software interchange, for a price no
253 | more than your reasonable cost of physically performing this
254 | conveying of source, or (2) access to copy the
255 | Corresponding Source from a network server at no charge.
256 |
257 | c) Convey individual copies of the object code with a copy of the
258 | written offer to provide the Corresponding Source. This
259 | alternative is allowed only occasionally and noncommercially, and
260 | only if you received the object code with such an offer, in accord
261 | with subsection 6b.
262 |
263 | d) Convey the object code by offering access from a designated
264 | place (gratis or for a charge), and offer equivalent access to the
265 | Corresponding Source in the same way through the same place at no
266 | further charge. You need not require recipients to copy the
267 | Corresponding Source along with the object code. If the place to
268 | copy the object code is a network server, the Corresponding Source
269 | may be on a different server (operated by you or a third party)
270 | that supports equivalent copying facilities, provided you maintain
271 | clear directions next to the object code saying where to find the
272 | Corresponding Source. Regardless of what server hosts the
273 | Corresponding Source, you remain obligated to ensure that it is
274 | available for as long as needed to satisfy these requirements.
275 |
276 | e) Convey the object code using peer-to-peer transmission, provided
277 | you inform other peers where the object code and Corresponding
278 | Source of the work are being offered to the general public at no
279 | charge under subsection 6d.
280 |
281 | A separable portion of the object code, whose source code is excluded
282 | from the Corresponding Source as a System Library, need not be
283 | included in conveying the object code work.
284 |
285 | A "User Product" is either (1) a "consumer product", which means any
286 | tangible personal property which is normally used for personal, family,
287 | or household purposes, or (2) anything designed or sold for incorporation
288 | into a dwelling. In determining whether a product is a consumer product,
289 | doubtful cases shall be resolved in favor of coverage. For a particular
290 | product received by a particular user, "normally used" refers to a
291 | typical or common use of that class of product, regardless of the status
292 | of the particular user or of the way in which the particular user
293 | actually uses, or expects or is expected to use, the product. A product
294 | is a consumer product regardless of whether the product has substantial
295 | commercial, industrial or non-consumer uses, unless such uses represent
296 | the only significant mode of use of the product.
297 |
298 | "Installation Information" for a User Product means any methods,
299 | procedures, authorization keys, or other information required to install
300 | and execute modified versions of a covered work in that User Product from
301 | a modified version of its Corresponding Source. The information must
302 | suffice to ensure that the continued functioning of the modified object
303 | code is in no case prevented or interfered with solely because
304 | modification has been made.
305 |
306 | If you convey an object code work under this section in, or with, or
307 | specifically for use in, a User Product, and the conveying occurs as
308 | part of a transaction in which the right of possession and use of the
309 | User Product is transferred to the recipient in perpetuity or for a
310 | fixed term (regardless of how the transaction is characterized), the
311 | Corresponding Source conveyed under this section must be accompanied
312 | by the Installation Information. But this requirement does not apply
313 | if neither you nor any third party retains the ability to install
314 | modified object code on the User Product (for example, the work has
315 | been installed in ROM).
316 |
317 | The requirement to provide Installation Information does not include a
318 | requirement to continue to provide support service, warranty, or updates
319 | for a work that has been modified or installed by the recipient, or for
320 | the User Product in which it has been modified or installed. Access to a
321 | network may be denied when the modification itself materially and
322 | adversely affects the operation of the network or violates the rules and
323 | protocols for communication across the network.
324 |
325 | Corresponding Source conveyed, and Installation Information provided,
326 | in accord with this section must be in a format that is publicly
327 | documented (and with an implementation available to the public in
328 | source code form), and must require no special password or key for
329 | unpacking, reading or copying.
330 |
331 | 7. Additional Terms.
332 |
333 | "Additional permissions" are terms that supplement the terms of this
334 | License by making exceptions from one or more of its conditions.
335 | Additional permissions that are applicable to the entire Program shall
336 | be treated as though they were included in this License, to the extent
337 | that they are valid under applicable law. If additional permissions
338 | apply only to part of the Program, that part may be used separately
339 | under those permissions, but the entire Program remains governed by
340 | this License without regard to the additional permissions.
341 |
342 | When you convey a copy of a covered work, you may at your option
343 | remove any additional permissions from that copy, or from any part of
344 | it. (Additional permissions may be written to require their own
345 | removal in certain cases when you modify the work.) You may place
346 | additional permissions on material, added by you to a covered work,
347 | for which you have or can give appropriate copyright permission.
348 |
349 | Notwithstanding any other provision of this License, for material you
350 | add to a covered work, you may (if authorized by the copyright holders of
351 | that material) supplement the terms of this License with terms:
352 |
353 | a) Disclaiming warranty or limiting liability differently from the
354 | terms of sections 15 and 16 of this License; or
355 |
356 | b) Requiring preservation of specified reasonable legal notices or
357 | author attributions in that material or in the Appropriate Legal
358 | Notices displayed by works containing it; or
359 |
360 | c) Prohibiting misrepresentation of the origin of that material, or
361 | requiring that modified versions of such material be marked in
362 | reasonable ways as different from the original version; or
363 |
364 | d) Limiting the use for publicity purposes of names of licensors or
365 | authors of the material; or
366 |
367 | e) Declining to grant rights under trademark law for use of some
368 | trade names, trademarks, or service marks; or
369 |
370 | f) Requiring indemnification of licensors and authors of that
371 | material by anyone who conveys the material (or modified versions of
372 | it) with contractual assumptions of liability to the recipient, for
373 | any liability that these contractual assumptions directly impose on
374 | those licensors and authors.
375 |
376 | All other non-permissive additional terms are considered "further
377 | restrictions" within the meaning of section 10. If the Program as you
378 | received it, or any part of it, contains a notice stating that it is
379 | governed by this License along with a term that is a further
380 | restriction, you may remove that term. If a license document contains
381 | a further restriction but permits relicensing or conveying under this
382 | License, you may add to a covered work material governed by the terms
383 | of that license document, provided that the further restriction does
384 | not survive such relicensing or conveying.
385 |
386 | If you add terms to a covered work in accord with this section, you
387 | must place, in the relevant source files, a statement of the
388 | additional terms that apply to those files, or a notice indicating
389 | where to find the applicable terms.
390 |
391 | Additional terms, permissive or non-permissive, may be stated in the
392 | form of a separately written license, or stated as exceptions;
393 | the above requirements apply either way.
394 |
395 | 8. Termination.
396 |
397 | You may not propagate or modify a covered work except as expressly
398 | provided under this License. Any attempt otherwise to propagate or
399 | modify it is void, and will automatically terminate your rights under
400 | this License (including any patent licenses granted under the third
401 | paragraph of section 11).
402 |
403 | However, if you cease all violation of this License, then your
404 | license from a particular copyright holder is reinstated (a)
405 | provisionally, unless and until the copyright holder explicitly and
406 | finally terminates your license, and (b) permanently, if the copyright
407 | holder fails to notify you of the violation by some reasonable means
408 | prior to 60 days after the cessation.
409 |
410 | Moreover, your license from a particular copyright holder is
411 | reinstated permanently if the copyright holder notifies you of the
412 | violation by some reasonable means, this is the first time you have
413 | received notice of violation of this License (for any work) from that
414 | copyright holder, and you cure the violation prior to 30 days after
415 | your receipt of the notice.
416 |
417 | Termination of your rights under this section does not terminate the
418 | licenses of parties who have received copies or rights from you under
419 | this License. If your rights have been terminated and not permanently
420 | reinstated, you do not qualify to receive new licenses for the same
421 | material under section 10.
422 |
423 | 9. Acceptance Not Required for Having Copies.
424 |
425 | You are not required to accept this License in order to receive or
426 | run a copy of the Program. Ancillary propagation of a covered work
427 | occurring solely as a consequence of using peer-to-peer transmission
428 | to receive a copy likewise does not require acceptance. However,
429 | nothing other than this License grants you permission to propagate or
430 | modify any covered work. These actions infringe copyright if you do
431 | not accept this License. Therefore, by modifying or propagating a
432 | covered work, you indicate your acceptance of this License to do so.
433 |
434 | 10. Automatic Licensing of Downstream Recipients.
435 |
436 | Each time you convey a covered work, the recipient automatically
437 | receives a license from the original licensors, to run, modify and
438 | propagate that work, subject to this License. You are not responsible
439 | for enforcing compliance by third parties with this License.
440 |
441 | An "entity transaction" is a transaction transferring control of an
442 | organization, or substantially all assets of one, or subdividing an
443 | organization, or merging organizations. If propagation of a covered
444 | work results from an entity transaction, each party to that
445 | transaction who receives a copy of the work also receives whatever
446 | licenses to the work the party's predecessor in interest had or could
447 | give under the previous paragraph, plus a right to possession of the
448 | Corresponding Source of the work from the predecessor in interest, if
449 | the predecessor has it or can get it with reasonable efforts.
450 |
451 | You may not impose any further restrictions on the exercise of the
452 | rights granted or affirmed under this License. For example, you may
453 | not impose a license fee, royalty, or other charge for exercise of
454 | rights granted under this License, and you may not initiate litigation
455 | (including a cross-claim or counterclaim in a lawsuit) alleging that
456 | any patent claim is infringed by making, using, selling, offering for
457 | sale, or importing the Program or any portion of it.
458 |
459 | 11. Patents.
460 |
461 | A "contributor" is a copyright holder who authorizes use under this
462 | License of the Program or a work on which the Program is based. The
463 | work thus licensed is called the contributor's "contributor version".
464 |
465 | A contributor's "essential patent claims" are all patent claims
466 | owned or controlled by the contributor, whether already acquired or
467 | hereafter acquired, that would be infringed by some manner, permitted
468 | by this License, of making, using, or selling its contributor version,
469 | but do not include claims that would be infringed only as a
470 | consequence of further modification of the contributor version. For
471 | purposes of this definition, "control" includes the right to grant
472 | patent sublicenses in a manner consistent with the requirements of
473 | this License.
474 |
475 | Each contributor grants you a non-exclusive, worldwide, royalty-free
476 | patent license under the contributor's essential patent claims, to
477 | make, use, sell, offer for sale, import and otherwise run, modify and
478 | propagate the contents of its contributor version.
479 |
480 | In the following three paragraphs, a "patent license" is any express
481 | agreement or commitment, however denominated, not to enforce a patent
482 | (such as an express permission to practice a patent or covenant not to
483 | sue for patent infringement). To "grant" such a patent license to a
484 | party means to make such an agreement or commitment not to enforce a
485 | patent against the party.
486 |
487 | If you convey a covered work, knowingly relying on a patent license,
488 | and the Corresponding Source of the work is not available for anyone
489 | to copy, free of charge and under the terms of this License, through a
490 | publicly available network server or other readily accessible means,
491 | then you must either (1) cause the Corresponding Source to be so
492 | available, or (2) arrange to deprive yourself of the benefit of the
493 | patent license for this particular work, or (3) arrange, in a manner
494 | consistent with the requirements of this License, to extend the patent
495 | license to downstream recipients. "Knowingly relying" means you have
496 | actual knowledge that, but for the patent license, your conveying the
497 | covered work in a country, or your recipient's use of the covered work
498 | in a country, would infringe one or more identifiable patents in that
499 | country that you have reason to believe are valid.
500 |
501 | If, pursuant to or in connection with a single transaction or
502 | arrangement, you convey, or propagate by procuring conveyance of, a
503 | covered work, and grant a patent license to some of the parties
504 | receiving the covered work authorizing them to use, propagate, modify
505 | or convey a specific copy of the covered work, then the patent license
506 | you grant is automatically extended to all recipients of the covered
507 | work and works based on it.
508 |
509 | A patent license is "discriminatory" if it does not include within
510 | the scope of its coverage, prohibits the exercise of, or is
511 | conditioned on the non-exercise of one or more of the rights that are
512 | specifically granted under this License. You may not convey a covered
513 | work if you are a party to an arrangement with a third party that is
514 | in the business of distributing software, under which you make payment
515 | to the third party based on the extent of your activity of conveying
516 | the work, and under which the third party grants, to any of the
517 | parties who would receive the covered work from you, a discriminatory
518 | patent license (a) in connection with copies of the covered work
519 | conveyed by you (or copies made from those copies), or (b) primarily
520 | for and in connection with specific products or compilations that
521 | contain the covered work, unless you entered into that arrangement,
522 | or that patent license was granted, prior to 28 March 2007.
523 |
524 | Nothing in this License shall be construed as excluding or limiting
525 | any implied license or other defenses to infringement that may
526 | otherwise be available to you under applicable patent law.
527 |
528 | 12. No Surrender of Others' Freedom.
529 |
530 | If conditions are imposed on you (whether by court order, agreement or
531 | otherwise) that contradict the conditions of this License, they do not
532 | excuse you from the conditions of this License. If you cannot convey a
533 | covered work so as to satisfy simultaneously your obligations under this
534 | License and any other pertinent obligations, then as a consequence you may
535 | not convey it at all. For example, if you agree to terms that obligate you
536 | to collect a royalty for further conveying from those to whom you convey
537 | the Program, the only way you could satisfy both those terms and this
538 | License would be to refrain entirely from conveying the Program.
539 |
540 | 13. Remote Network Interaction; Use with the GNU General Public License.
541 |
542 | Notwithstanding any other provision of this License, if you modify the
543 | Program, your modified version must prominently offer all users
544 | interacting with it remotely through a computer network (if your version
545 | supports such interaction) an opportunity to receive the Corresponding
546 | Source of your version by providing access to the Corresponding Source
547 | from a network server at no charge, through some standard or customary
548 | means of facilitating copying of software. This Corresponding Source
549 | shall include the Corresponding Source for any work covered by version 3
550 | of the GNU General Public License that is incorporated pursuant to the
551 | following paragraph.
552 |
553 | Notwithstanding any other provision of this License, you have
554 | permission to link or combine any covered work with a work licensed
555 | under version 3 of the GNU General Public License into a single
556 | combined work, and to convey the resulting work. The terms of this
557 | License will continue to apply to the part which is the covered work,
558 | but the work with which it is combined will remain governed by version
559 | 3 of the GNU General Public License.
560 |
561 | 14. Revised Versions of this License.
562 |
563 | The Free Software Foundation may publish revised and/or new versions of
564 | the GNU Affero General Public License from time to time. Such new versions
565 | will be similar in spirit to the present version, but may differ in detail to
566 | address new problems or concerns.
567 |
568 | Each version is given a distinguishing version number. If the
569 | Program specifies that a certain numbered version of the GNU Affero General
570 | Public License "or any later version" applies to it, you have the
571 | option of following the terms and conditions either of that numbered
572 | version or of any later version published by the Free Software
573 | Foundation. If the Program does not specify a version number of the
574 | GNU Affero General Public License, you may choose any version ever published
575 | by the Free Software Foundation.
576 |
577 | If the Program specifies that a proxy can decide which future
578 | versions of the GNU Affero General Public License can be used, that proxy's
579 | public statement of acceptance of a version permanently authorizes you
580 | to choose that version for the Program.
581 |
582 | Later license versions may give you additional or different
583 | permissions. However, no additional obligations are imposed on any
584 | author or copyright holder as a result of your choosing to follow a
585 | later version.
586 |
587 | 15. Disclaimer of Warranty.
588 |
589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
597 |
598 | 16. Limitation of Liability.
599 |
600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
608 | SUCH DAMAGES.
609 |
610 | 17. Interpretation of Sections 15 and 16.
611 |
612 | If the disclaimer of warranty and limitation of liability provided
613 | above cannot be given local legal effect according to their terms,
614 | reviewing courts shall apply local law that most closely approximates
615 | an absolute waiver of all civil liability in connection with the
616 | Program, unless a warranty or assumption of liability accompanies a
617 | copy of the Program in return for a fee.
618 |
619 | END OF TERMS AND CONDITIONS
620 |
621 | How to Apply These Terms to Your New Programs
622 |
623 | If you develop a new program, and you want it to be of the greatest
624 | possible use to the public, the best way to achieve this is to make it
625 | free software which everyone can redistribute and change under these terms.
626 |
627 | To do so, attach the following notices to the program. It is safest
628 | to attach them to the start of each source file to most effectively
629 | state the exclusion of warranty; and each file should have at least
630 | the "copyright" line and a pointer to where the full notice is found.
631 |
632 |
633 | Copyright (C)
634 |
635 | This program is free software: you can redistribute it and/or modify
636 | it under the terms of the GNU Affero General Public License as published by
637 | the Free Software Foundation, either version 3 of the License, or
638 | (at your option) any later version.
639 |
640 | This program is distributed in the hope that it will be useful,
641 | but WITHOUT ANY WARRANTY; without even the implied warranty of
642 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
643 | GNU Affero General Public License for more details.
644 |
645 | You should have received a copy of the GNU Affero General Public License
646 | along with this program. If not, see .
647 |
648 | Also add information on how to contact you by electronic and paper mail.
649 |
650 | If your software can interact with users remotely through a computer
651 | network, you should also make sure that it provides a way for users to
652 | get its source. For example, if your program is a web application, its
653 | interface could display a "Source" link that leads users to an archive
654 | of the code. There are many ways you could offer source, and different
655 | solutions will be better for different programs; see section 13 for the
656 | specific requirements.
657 |
658 | You should also get your employer (if you work as a programmer) or school,
659 | if any, to sign a "copyright disclaimer" for the program, if necessary.
660 | For more information on this, and how to apply and follow the GNU AGPL, see
661 | .
662 |
--------------------------------------------------------------------------------