Experimetal Woblink.
[redakcja.git] / src / depot / publishers / legimi.py
1 from datetime import date
2 import re
3 from django.conf import settings
4 from django.utils.html import escape
5 from django.utils.safestring import mark_safe
6 from librarian.functions import lang_code_3to2
7 from librarian.builders import EpubBuilder, MobiBuilder
8 from librarian.covers.marquise import MarquiseCover, LabelMarquiseCover
9 from .base import BasePublisher
10
11
12 class Legimi(BasePublisher):
13     BASE_URL = 'https://panel.legimi.pl'
14     LOGIN_URL = BASE_URL + '/publishers/membership'
15     UPLOAD_URL = BASE_URL + '/administration/upload/start'
16     CREATE_URL = BASE_URL + '/publishers/publications/create'
17     EDIT_URL = BASE_URL + '/publishers/publications/edit/%s'
18     EDIT_FILES_URL = BASE_URL + '/publishers/publications/editfiles/%s'
19     EDIT_SALE_URL = BASE_URL + '/publishers/publications/editsale/%s'
20
21     CATEGORIES = {
22         'Dla dzieci i młodzieży': 94,
23         'Książki dla dzieci': 15,
24         'Literatura młodzieżowa': 24,
25         'Kryminał': 29,
26         'Kryminał klasyczny': 31,
27         'Kryminał współczesny': 32,
28         'Kryminał historyczny': 30,
29         'default': 8886,
30         'Edukacja': 10,
31         'Słowniki i leksykony': 14,
32         'Encyklopedie': 13,
33         'Lektury': 11,
34         'Starożytność': 80,
35         'Barok': 83,
36         'Oświecenie': 84,
37         'Dwudziestolecie międzywojenne': 88,
38         'Średniowiecze': 81,
39         'Współczesność': 90,
40         'Modernizm': 87,
41         'Pozytywizm': 86,
42         'Renesans': 82,
43         'Romantyzm': 85,
44         'Młoda Polska': 89,
45         'Podręczniki': 52,
46         'Fantastyka i sci-fi': 25,
47         'Fantastyka': 26,
48         'Science fiction': 27,
49         'Języki obce': 59,
50         'Antyki i kolekcjonerstwo': 53,
51         'Astrologia i wróżbiarstwo': 54,
52         'Zdrowie i rodzina': 57,
53         'Hobby': 55,
54         'Medycyna i zdrowie': 58,
55         'Psychologiczne': 78,
56         'Styl': 56,
57         'Humanistyka': 97,
58         'Kultura i sztuka': 64,
59         'Film': 66,
60         'Muzyka': 65,
61         'Eseje literackie': 49,
62         'Historia': 60,
63         'Styl życia': 73,
64         'Wakacje i podróże': 69,
65         'Dla mężczyzn': 79,
66         'Sport': 76,
67         'Obyczajowe i romanse': 93,
68         'Humor': 68,
69         'Obyczajowe': 35,
70         'Powieść': 41,
71         'Powieść przygodowa': 42,
72         'Współczesna powieść przygodowa': 44,
73         'Historyczna powieść przygodowa': 43,
74         'Powieść historyczna': 46,
75         'Powieść psychologiczna': 47,
76         'Powieść religijna': 45,
77         'Romans': 36,
78         'Romans klasyczny': 38,
79         'Romans współczesny': 39,
80         'Literatura erotyczna': 40,
81         'Romans historyczny': 37,
82         'Dla kobiet': 77,
83         'Sensacja, thriller, horror': 91,
84         'Horror': 28,
85         'Sensacja': 33,
86         'Thriller': 34,
87         'Aktualności': 70,
88         'Czasopisma': 71,
89         'Literatura faktu, reportaże, biografie': 92,
90         'Literatura faktu': 16,
91         'Biografie': 17,
92         'Publicystyka': 20,
93         'Dzienniki': 19,
94         'Dokument, esej': 18,
95         'Historia literatury i krytyka literacka': 23,
96         'Literatura popularnonaukowa': 22,
97         'Reportaż': 21,
98         'Społeczno-polityczne': 72,
99         'Poezja i dramat': 95,
100         'Dramat': 48,
101         'Poezja': 50,
102         'Religia i duchowość': 51,
103         'Nauka i nowe technologie': 98,
104         'Nauka i technika': 61,
105         'Nauki ścisłe': 62,
106         'Nauki humanistyczne': 63,
107         'Technologia i Internet': 75,
108         'Specjalistyczne': 99,
109         'Biznes i finanse': 1,
110         'Ekonomia': 5,
111         'Finanse': 6,
112         'Zarządzanie': 3,
113         'Marketing': 2,
114         'Rozwój osobisty': 7,
115         'Kariera i sukces zawodowy': 8,
116         'Psychologia, motywacja': 9,
117         'PR': 4,
118         'Prawo': 67,
119         'Branżowe': 74,
120     }
121
122     def login(self):
123         self._session.post(
124             self.LOGIN_URL,
125             data={
126                 'ValidationTrue': 'true',
127                 'UserName': self.username,
128                 'Password': self.password,
129             })
130
131     def can_publish(self, shop, book):
132         meta = book.wldocument(librarian2=True).meta
133         d = {
134             'errors': [],
135             'warnings': [],
136         }
137         if meta.thema_main or meta.thema:
138             if meta.thema_main:
139                 comment = "w kategorii <b><tt>{code}</tt></b>".format(
140                     code=escape(meta.thema_main)
141                 )
142                 if meta.thema:
143                     comment += " oraz: " + ", ".join(
144                         "<b><tt>{code}</tt></b>".format(code=escape(t))
145                         for t in meta.thema
146                     )
147                 d['comment'] = mark_safe(comment)
148             elif meta.thema:
149                 d['comment'] = mark_safe(
150                     "w kategorii " + ", ".join(
151                         "<b><tt>{code}</tt></b>".format(code=escape(t))
152                         for t in meta.thema
153                     )
154                 )
155                 d['warnings'].append('Brak głównej kategorii Thema')
156         else:
157             d['errors'].append('Brak kategorii Thema.')
158         return d
159
160     def list(self):
161         return self.session.get('https://wydawca.legimi.com/publishers/publications')
162
163     def upload(self, content):
164         response = self.session.post(
165             self.UPLOAD_URL,
166             files={
167                 "files": content,
168             })
169         model = response.json()['model']
170         return {
171             "name": model['Name'],
172             "token": model['Token'],
173             "url": model['Url'],
174         }
175
176     def send_book(self, shop, book, changes=None):
177         wlbook = book.wldocument(librarian2=True, changes=changes)
178         meta = wlbook.meta
179
180         cover = LabelMarquiseCover(meta, width=1200).output_file()
181         texts = shop.get_texts()
182         epub_file = EpubBuilder(
183             cover=MarquiseCover,
184             fundraising=texts,
185             base_url='file://' + book.gallery_path() + '/'
186         ).build(wlbook).get_file()
187         mobi_file = MobiBuilder(
188             cover=MarquiseCover,
189             fundraising=texts,
190             base_url='file://' + book.gallery_path() + '/'
191         ).build(wlbook).get_file()
192
193         thema = []
194         if meta.thema_main:
195             thema.append(meta.thema_main)
196         thema.extend(meta.thema)
197
198         book_data = {
199             "Title": meta.title,
200             "Author": ", ".join(p.readable() for p in meta.authors),
201             "Year": str(date.today().year),
202
203             'GenreId': str(self.get_genre(wlbook)),
204             'themaCategories': ';'.join(thema),
205             'thema-search': '',
206             'Isbn': '',
207             'LanguageLocale': lang_code_3to2(meta.language),
208
209             'Description': self.get_description(wlbook, shop.description_add),
210         }
211         if meta.isbn_html:
212             isbn = meta.isbn_html
213             if isbn.upper().startswith(('ISBN ', 'ISBN-')):
214                 isbn = isbn[5:]
215             isbn = isbn.strip()
216             book_data['Isbn'] = isbn
217
218         files_data = {}
219
220         cover_data = self.upload(
221             (meta.url.slug + '.jpg', cover.get_file(), 'image/jpeg')
222         )
223         book_data.update({
224             "Cover.Name": cover_data['name'],
225             "Cover.Token": cover_data['token'],
226             "Cover.Url": cover_data['url'],
227         })
228
229         epub_data = self.upload(
230             (meta.url.slug + '.epub', epub_file, 'application/epub+zip')
231         )
232         files_data.update({
233             'BookEpub.Token': epub_data['token'],
234             'BookEpub.Name': epub_data['name'],
235             'SampleEpubType': 'Generation',
236         })
237
238         mobi_data = self.upload(
239             (meta.url.slug + '.mobi', mobi_file, 'application/x-mobipocket-ebook')
240         )
241         files_data.update({
242             'BookMobi.Token': mobi_data['token'],
243             'BookMobi.Name': mobi_data['name'],
244         })
245
246         if book.legimi_id:
247             self.edit(
248                 book.legimi_id,
249                 book_data
250             )
251             self.edit_files(
252                 book.legimi_id,
253                 files_data
254             )
255         else:
256             legimi_id = self.create_book(book_data, files_data)
257             if legimi_id:
258                 book.legimi_id = legimi_id
259                 book.save(update_fields=['legimi_id'])
260
261         self.edit_sale(book)
262
263     def get_genre(self, wlbook):
264         if wlbook.meta.legimi and wlbook.meta.legimi in self.CATEGORIES:
265             return self.CATEGORIES[wlbook.meta.legimi]
266         for epoch in wlbook.meta.epochs:
267             if epoch in self.CATEGORIES:
268                 return self.CATEGORIES[epoch]
269         return self.CATEGORIES['Lektury']
270
271     def create_book(self, book_data, files_data):
272         data = {
273             'createValidationTrue': 'true',
274             'PublisherId': self.publisher_handle,
275             'IsLibraryPass': 'False',
276
277             'SamplesGenerationType': 'Quantity',
278             'SamplesGenerationPercent': '10',
279
280             'EnterToTheMarketType': 'No',
281             'EnterToTheMarketDate': '',
282             'HidingDate': '',
283             'SalesNoLimitOption': 'false',
284             'SalesNoLimitKindle': 'false',
285             'SalesInStoreEbookGrossValue': '0,00',
286             'SalesPromotion': 'False',
287             'SalesPromotionGrossValue': '0,00',
288             'SalesPromotionDatesRange.DateStart': '',
289             'SalesPromotionDatesRange.DateEnd': '',
290         }
291
292         for form in 'Epub', 'Mobi', 'Pdf':
293             data.update({
294                 f'Book{form}.Token': '',
295                 f'Book{form}.Name': '',
296                 f'Book{form}.StorageName': '',
297                 f'Book{form}.Order': '',
298
299                 f'Sample{form}Type': 'Files',
300                 f'Sample{form}.Token': '',
301                 f'Sample{form}.Name': '',
302                 f'Sample{form}.StorageName': '',
303                 f'Sample{form}.Order': '',
304             })
305
306         data.update(book_data)
307         data.update(files_data)
308
309         response = self.session.post(self.CREATE_URL, data=data)
310         m = re.search(r'/(\d+)$', response.url)
311         if m is not None:
312             return m.group(1)
313
314     def edit(self, legimi_id, data):
315         current = {
316             'ValidationTrue': 'true',
317             'Id': legimi_id
318         }
319
320         current.update(data)
321
322         self.session.post(
323             self.EDIT_URL % legimi_id,
324             data=current
325         )
326
327     def edit_files(self, legimi_id, files_data):
328         current = {
329             'ValidationTrue': 'true',
330             'Id': legimi_id,
331             'SamplesGenerationType': 'Quantity',
332             'SamplesGenerationPercent': '10',
333         }
334
335         for form in 'Epub', 'Mobi', 'Pdf':
336             current.update({
337                 f'Book{form}.Token': '',
338                 f'Book{form}.Name': '',
339                 f'Book{form}.StorageName': '',
340                 f'Book{form}.Order': '',
341
342                 f'Sample{form}.Type': 'Files',
343                 f'Sample{form}.Token': '',
344                 f'Sample{form}.Name': '',
345                 f'Sample{form}.StorageName': '',
346                 f'Sample{form}.Order': '',
347             })
348
349         current.update(files_data)
350
351         response = self.session.post(
352             self.EDIT_FILES_URL % legimi_id,
353             data=current
354         )
355
356     def edit_sale(self, book):
357         assert book.legimi_id
358
359         words = book.wldocument().get_statistics()['total']['words_with_fn']
360
361         price = settings.LEGIMI_SMALL_PRICE
362         if words > settings.LEGIMI_SMALL_WORDS:
363             price = settings.LEGIMI_BIG_PRICE
364
365         abo = 'true' if words > settings.LEGIMI_BIG_WORDS else 'false'
366
367         data = {
368             'ValidationTrue': 'true',
369             'Id': book.legimi_id,
370             'SalesPromotionId': "0",
371             'IsLibraryPass': "False",
372             'OriginalEnterToTheMarketType': "No",
373             'OriginalHidingDate': "",
374             'OriginalEnterToTheMarketDate': "",
375             'EnterToTheMarketType': "Yes",
376             'EnterToTheMarketDate': "",
377             'HidingDate': "",
378             'SalesNoLimitOption': abo,
379             'SalesNoLimitKindle': abo,
380             'SalesInStoreEbookGrossValue': f'{price},00',
381             'SalesPromotion': "False",
382             'SalesPromotionGrossValue': "0,00",
383             'SalesPromotionDatesRange.DateStart': "",
384             'SalesPromotionDatesRange.DateEnd': "",
385         }
386
387         self.session.post(
388             self.EDIT_SALE_URL % book.legimi_id,
389             data=data
390         )