@irfanshadikrishad/anilist 1.0.8 → 1.1.0-forbidden.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,119 +7,710 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
7
7
  step((generator = generator.apply(thisArg, _arguments || [])).next());
8
8
  });
9
9
  };
10
+ import { XMLParser } from "fast-xml-parser";
11
+ import { readFile, writeFile } from "fs/promises";
10
12
  import inquirer from "inquirer";
11
13
  import fetch from "node-fetch";
12
- import { currentUsersId, isLoggedIn, retriveAccessToken } from "./auth.js";
14
+ import { join } from "path";
15
+ import { Auth } from "./auth.js";
13
16
  import { fetcher } from "./fetcher.js";
14
- import { addAnimeToListMutation, addMangaToListMutation } from "./mutations.js";
15
- import { currentUserAnimeList, currentUserMangaList, deleteMangaEntryMutation, deleteMediaEntryMutation, popularQuery, trendingQuery, upcomingAnimesQuery, } from "./queries.js";
16
- import { aniListEndpoint, getNextSeasonAndYear, getTitle } from "./workers.js";
17
- function getTrending(count) {
18
- return __awaiter(this, void 0, void 0, function* () {
19
- var _a, _b, _c, _d;
20
- try {
21
- const request = yield fetch(aniListEndpoint, {
22
- method: "POST",
23
- headers: {
24
- "content-type": "application/json",
25
- },
26
- body: JSON.stringify({
27
- query: trendingQuery,
28
- variables: { page: 1, perPage: count },
29
- }),
30
- });
31
- const response = yield request.json();
32
- if (request.status === 200) {
33
- const media = (_b = (_a = response === null || response === void 0 ? void 0 : response.data) === null || _a === void 0 ? void 0 : _a.Page) === null || _b === void 0 ? void 0 : _b.media;
34
- if ((media === null || media === void 0 ? void 0 : media.length) > 0) {
35
- const { selectedAnime } = yield inquirer.prompt([
36
- {
37
- type: "list",
38
- name: "selectedAnime",
39
- message: "Select anime to add to the list:",
40
- choices: media.map((upx, idx) => ({
41
- name: `[${idx + 1}] ${getTitle(upx === null || upx === void 0 ? void 0 : upx.title)}`,
42
- value: upx === null || upx === void 0 ? void 0 : upx.id,
43
- })),
44
- pageSize: 10,
45
- },
46
- ]);
47
- // Where to save
48
- const { selectedListType } = yield inquirer.prompt([
49
- {
50
- type: "list",
51
- name: "selectedListType",
52
- message: "Select the list where you want to save this anime:",
53
- choices: [
54
- { name: "Planning", value: "PLANNING" },
55
- { name: "Watching", value: "CURRENT" },
56
- { name: "Completed", value: "COMPLETED" },
57
- { name: "Paused", value: "PAUSED" },
58
- { name: "Dropped", value: "DROPPED" },
59
- ],
60
- },
61
- ]);
62
- // Lets save to the list now
63
- if (yield isLoggedIn()) {
64
- const query = addAnimeToListMutation;
17
+ import { addAnimeToListMutation, addMangaToListMutation, saveAnimeWithProgressMutation, saveMangaWithProgressMutation, } from "./mutations.js";
18
+ import { animeDetailsQuery, animeSearchQuery, currentUserAnimeList, currentUserMangaList, malIdToAnilistAnimeId, malIdToAnilistMangaId, mangaSearchQuery, popularQuery, trendingQuery, upcomingAnimesQuery, userActivityQuery, userQuery, } from "./queries.js";
19
+ import { AniListMediaStatus, } from "./types.js";
20
+ import { aniListEndpoint, createAnimeListXML, createMangaListXML, formatDateObject, getDownloadFolderPath, getFormattedDate, getNextSeasonAndYear, getTitle, removeHtmlAndMarkdown, saveJSONasCSV, saveJSONasJSON, selectFile, } from "./workers.js";
21
+ class AniList {
22
+ static importAnime() {
23
+ return __awaiter(this, void 0, void 0, function* () {
24
+ try {
25
+ const filename = yield selectFile(".json");
26
+ const filePath = join(getDownloadFolderPath(), filename);
27
+ const fileContent = yield readFile(filePath, "utf8");
28
+ const importedData = JSON.parse(fileContent);
29
+ let count = 0;
30
+ const batchSize = 1; // Number of requests in each batch
31
+ const delay = 1100; // delay to avoid rate-limiting
32
+ for (let i = 0; i < importedData.length; i += batchSize) {
33
+ const batch = importedData.slice(i, i + batchSize);
34
+ yield Promise.all(batch.map((anime) => __awaiter(this, void 0, void 0, function* () {
35
+ var _a, _b;
36
+ const query = saveAnimeWithProgressMutation;
65
37
  const variables = {
66
- mediaId: selectedAnime,
67
- status: selectedListType,
38
+ mediaId: anime === null || anime === void 0 ? void 0 : anime.id,
39
+ progress: anime === null || anime === void 0 ? void 0 : anime.progress,
40
+ status: anime === null || anime === void 0 ? void 0 : anime.status,
41
+ hiddenFromStatusLists: false,
68
42
  };
69
- const response = yield fetcher(query, variables);
70
- if (response) {
71
- const saved = (_c = response === null || response === void 0 ? void 0 : response.data) === null || _c === void 0 ? void 0 : _c.SaveMediaListEntry;
72
- console.log(`\nEntry ${saved === null || saved === void 0 ? void 0 : saved.id}. Saved as ${saved === null || saved === void 0 ? void 0 : saved.status}.`);
43
+ try {
44
+ const save = yield fetcher(query, variables);
45
+ if (save) {
46
+ const id = (_b = (_a = save === null || save === void 0 ? void 0 : save.data) === null || _a === void 0 ? void 0 : _a.SaveMediaListEntry) === null || _b === void 0 ? void 0 : _b.id;
47
+ count++;
48
+ console.log(`[${count}] ${anime === null || anime === void 0 ? void 0 : anime.id}-${id} ✅`);
49
+ }
50
+ else {
51
+ console.error(`\nError saving ${anime === null || anime === void 0 ? void 0 : anime.id}`);
52
+ }
53
+ }
54
+ catch (error) {
55
+ console.error(`\nError saving ${anime === null || anime === void 0 ? void 0 : anime.id}: ${error.message}`);
56
+ }
57
+ })));
58
+ // Avoid rate-limiting: Wait before sending the next batch
59
+ yield new Promise((resolve) => setTimeout(resolve, delay));
60
+ }
61
+ console.log(`\nTotal ${count} anime(s) imported successfully.`);
62
+ }
63
+ catch (error) {
64
+ console.error(`\n${error.message}`);
65
+ }
66
+ });
67
+ }
68
+ static importManga() {
69
+ return __awaiter(this, void 0, void 0, function* () {
70
+ try {
71
+ const filename = yield selectFile(".json");
72
+ const filePath = join(getDownloadFolderPath(), filename);
73
+ const fileContent = yield readFile(filePath, "utf8");
74
+ const importedData = JSON.parse(fileContent);
75
+ let count = 0;
76
+ const batchSize = 1; // Adjust batch size as per rate-limit constraints
77
+ const delay = 1100; // 2 seconds delay to avoid rate-limit
78
+ // Process in batches
79
+ for (let i = 0; i < importedData.length; i += batchSize) {
80
+ const batch = importedData.slice(i, i + batchSize);
81
+ yield Promise.all(batch.map((manga) => __awaiter(this, void 0, void 0, function* () {
82
+ var _a, _b;
83
+ const query = saveMangaWithProgressMutation;
84
+ const variables = {
85
+ mediaId: manga === null || manga === void 0 ? void 0 : manga.id,
86
+ progress: manga === null || manga === void 0 ? void 0 : manga.progress,
87
+ status: manga === null || manga === void 0 ? void 0 : manga.status,
88
+ hiddenFromStatusLists: false,
89
+ private: manga === null || manga === void 0 ? void 0 : manga.private,
90
+ };
91
+ try {
92
+ const save = yield fetcher(query, variables);
93
+ if (save) {
94
+ const id = (_b = (_a = save === null || save === void 0 ? void 0 : save.data) === null || _a === void 0 ? void 0 : _a.SaveMediaListEntry) === null || _b === void 0 ? void 0 : _b.id;
95
+ count++;
96
+ console.log(`[${count}] ${manga === null || manga === void 0 ? void 0 : manga.id}-${id} ✅`);
97
+ }
98
+ }
99
+ catch (err) {
100
+ console.error(`\nError saving ${manga === null || manga === void 0 ? void 0 : manga.id}: ${err.message}`);
101
+ }
102
+ })));
103
+ // Avoid rate-limit by adding delay after processing each batch
104
+ yield new Promise((resolve) => setTimeout(resolve, delay));
105
+ }
106
+ console.log(`\nTotal ${count} manga(s) imported successfully.`);
107
+ }
108
+ catch (error) {
109
+ console.error(`\nError: ${error.message}`);
110
+ }
111
+ });
112
+ }
113
+ static exportAnime() {
114
+ return __awaiter(this, void 0, void 0, function* () {
115
+ var _a, _b, _c;
116
+ if (yield Auth.isLoggedIn()) {
117
+ const { exportType } = yield inquirer.prompt([
118
+ {
119
+ type: "list",
120
+ name: "exportType",
121
+ message: "Choose export type:",
122
+ choices: [
123
+ { name: "CSV", value: 1 },
124
+ { name: "JSON", value: 2 },
125
+ { name: "XML (MyAnimeList)", value: 3 },
126
+ ],
127
+ pageSize: 10,
128
+ },
129
+ ]);
130
+ const animeList = yield fetcher(currentUserAnimeList, {
131
+ id: yield Auth.MyUserId(),
132
+ });
133
+ if (animeList) {
134
+ const lists = (_c = (_b = (_a = animeList === null || animeList === void 0 ? void 0 : animeList.data) === null || _a === void 0 ? void 0 : _a.MediaListCollection) === null || _b === void 0 ? void 0 : _b.lists) !== null && _c !== void 0 ? _c : [];
135
+ const mediaWithProgress = lists.flatMap((list) => list.entries.map((entry) => {
136
+ var _a, _b, _c, _d, _e;
137
+ return ({
138
+ id: (_a = entry === null || entry === void 0 ? void 0 : entry.media) === null || _a === void 0 ? void 0 : _a.id,
139
+ title: exportType === 1
140
+ ? getTitle((_b = entry === null || entry === void 0 ? void 0 : entry.media) === null || _b === void 0 ? void 0 : _b.title)
141
+ : (_c = entry === null || entry === void 0 ? void 0 : entry.media) === null || _c === void 0 ? void 0 : _c.title,
142
+ episodes: (_d = entry === null || entry === void 0 ? void 0 : entry.media) === null || _d === void 0 ? void 0 : _d.episodes,
143
+ siteUrl: (_e = entry === null || entry === void 0 ? void 0 : entry.media) === null || _e === void 0 ? void 0 : _e.siteUrl,
144
+ progress: entry.progress,
145
+ status: entry === null || entry === void 0 ? void 0 : entry.status,
146
+ hiddenFromStatusLists: entry.hiddenFromStatusLists,
147
+ });
148
+ }));
149
+ switch (exportType) {
150
+ case 1:
151
+ yield saveJSONasCSV(mediaWithProgress, "anime");
152
+ break;
153
+ case 2:
154
+ yield saveJSONasJSON(mediaWithProgress, "anime");
155
+ break;
156
+ case 3:
157
+ yield MyAnimeList.exportAnime();
158
+ break;
159
+ default:
160
+ console.log(`\nInvalid export type. ${exportType}`);
161
+ break;
162
+ }
163
+ }
164
+ else {
165
+ console.error(`\nNo anime(s) found in your lists.`);
166
+ }
167
+ }
168
+ else {
169
+ console.error(`\nMust login to use this feature.`);
170
+ }
171
+ });
172
+ }
173
+ static exportManga() {
174
+ return __awaiter(this, void 0, void 0, function* () {
175
+ var _a, _b;
176
+ if (yield Auth.isLoggedIn()) {
177
+ const mangaLists = yield fetcher(currentUserMangaList, {
178
+ id: yield Auth.MyUserId(),
179
+ });
180
+ if (mangaLists) {
181
+ const lists = ((_b = (_a = mangaLists === null || mangaLists === void 0 ? void 0 : mangaLists.data) === null || _a === void 0 ? void 0 : _a.MediaListCollection) === null || _b === void 0 ? void 0 : _b.lists) || [];
182
+ if (lists.length > 0) {
183
+ const { exportType } = yield inquirer.prompt([
184
+ {
185
+ type: "list",
186
+ name: "exportType",
187
+ message: "Choose export type:",
188
+ choices: [
189
+ { name: "CSV", value: 1 },
190
+ { name: "JSON", value: 2 },
191
+ { name: "XML (MyAnimeList)", value: 3 },
192
+ ],
193
+ pageSize: 10,
194
+ },
195
+ ]);
196
+ const mediaWithProgress = lists.flatMap((list) => list.entries.map((entry) => {
197
+ var _a, _b, _c;
198
+ return ({
199
+ id: (_a = entry === null || entry === void 0 ? void 0 : entry.media) === null || _a === void 0 ? void 0 : _a.id,
200
+ title: exportType === 1
201
+ ? getTitle((_b = entry === null || entry === void 0 ? void 0 : entry.media) === null || _b === void 0 ? void 0 : _b.title)
202
+ : (_c = entry === null || entry === void 0 ? void 0 : entry.media) === null || _c === void 0 ? void 0 : _c.title,
203
+ private: entry.private,
204
+ chapters: entry.media.chapters,
205
+ progress: entry.progress,
206
+ status: entry === null || entry === void 0 ? void 0 : entry.status,
207
+ hiddenFromStatusLists: entry.hiddenFromStatusLists,
208
+ });
209
+ }));
210
+ switch (exportType) {
211
+ case 1:
212
+ yield saveJSONasCSV(mediaWithProgress, "manga");
213
+ break;
214
+ case 2:
215
+ yield saveJSONasJSON(mediaWithProgress, "manga");
216
+ break;
217
+ case 3:
218
+ yield MyAnimeList.exportManga();
219
+ break;
220
+ default:
221
+ console.log(`\nInvalid export type. ${exportType}`);
222
+ break;
73
223
  }
74
224
  }
75
225
  else {
76
- console.error(`\nPlease log in first to use this feature.`);
226
+ console.log(`\nList seems to be empty.`);
77
227
  }
78
228
  }
79
229
  else {
80
- console.log(`\nNo trending available at the moment.`);
230
+ console.error(`\nCould not get manga list.`);
81
231
  }
82
232
  }
83
233
  else {
84
- console.log(`\nSomething went wrong. ${(_d = response === null || response === void 0 ? void 0 : response.errors[0]) === null || _d === void 0 ? void 0 : _d.message}`);
234
+ console.error(`\nPlease login to use this feature.`);
85
235
  }
86
- }
87
- catch (error) {
88
- console.log(`\nSomething went wrong. ${error.message}`);
89
- }
90
- });
91
- }
92
- function getPopular(count) {
93
- return __awaiter(this, void 0, void 0, function* () {
94
- var _a, _b, _c, _d;
95
- try {
96
- const request = yield fetch(aniListEndpoint, {
97
- method: "POST",
98
- headers: {
99
- "content-type": "application/json",
100
- },
101
- body: JSON.stringify({
102
- query: popularQuery,
103
- variables: { page: 1, perPage: count },
104
- }),
105
- });
106
- const response = yield request.json();
107
- if (request.status === 200) {
108
- const media = (_b = (_a = response === null || response === void 0 ? void 0 : response.data) === null || _a === void 0 ? void 0 : _a.Page) === null || _b === void 0 ? void 0 : _b.media;
109
- if ((media === null || media === void 0 ? void 0 : media.length) > 0) {
236
+ });
237
+ }
238
+ static MyAnime() {
239
+ return __awaiter(this, void 0, void 0, function* () {
240
+ var _a, _b, _c;
241
+ try {
242
+ if (!(yield Auth.isLoggedIn())) {
243
+ return console.error(`\nPlease log in first to access your lists.`);
244
+ }
245
+ const userId = yield Auth.MyUserId();
246
+ if (!userId) {
247
+ return console.log(`\nFailed getting current user Id.`);
248
+ }
249
+ const request = yield fetch(aniListEndpoint, {
250
+ method: "POST",
251
+ headers: {
252
+ "content-type": "application/json",
253
+ "Authorization": `Bearer ${yield Auth.RetriveAccessToken()}`,
254
+ },
255
+ body: JSON.stringify({
256
+ query: currentUserAnimeList,
257
+ variables: { id: userId },
258
+ }),
259
+ });
260
+ const { data, errors } = yield request.json();
261
+ if (request.status !== 200 || errors) {
262
+ return console.log(`\nSomething went wrong. ${(_a = errors === null || errors === void 0 ? void 0 : errors[0]) === null || _a === void 0 ? void 0 : _a.message}`);
263
+ }
264
+ const lists = (_b = data === null || data === void 0 ? void 0 : data.MediaListCollection) === null || _b === void 0 ? void 0 : _b.lists;
265
+ if (!lists || lists.length === 0) {
266
+ return console.log(`\nYou seem to have no anime(s) in your lists.`);
267
+ }
268
+ const { selectedList } = yield inquirer.prompt([
269
+ {
270
+ type: "list",
271
+ name: "selectedList",
272
+ message: "Select an anime list:",
273
+ choices: lists.map((list) => list.name),
274
+ },
275
+ ]);
276
+ const selectedEntries = lists.find((list) => list.name === selectedList);
277
+ if (!selectedEntries || !selectedEntries.entries.length) {
278
+ return console.log(`\nNo entries found or not available at this moment.`);
279
+ }
280
+ console.log(`\nEntries for '${selectedEntries.name}':`);
281
+ const { selectedAnime } = yield inquirer.prompt([
282
+ {
283
+ type: "list",
284
+ name: "selectedAnime",
285
+ message: "Select anime to add to the list:",
286
+ choices: selectedEntries.entries.map((entry, idx) => ({
287
+ name: `[${idx + 1}] ${getTitle(entry.media.title)}`,
288
+ value: entry.media.id,
289
+ })),
290
+ pageSize: 10,
291
+ },
292
+ ]);
293
+ const { selectedListType } = yield inquirer.prompt([
294
+ {
295
+ type: "list",
296
+ name: "selectedListType",
297
+ message: "Select the list where you want to save this anime:",
298
+ choices: [
299
+ { name: "Planning", value: "PLANNING" },
300
+ { name: "Watching", value: "CURRENT" },
301
+ { name: "Completed", value: "COMPLETED" },
302
+ { name: "Paused", value: "PAUSED" },
303
+ { name: "Dropped", value: "DROPPED" },
304
+ ],
305
+ },
306
+ ]);
307
+ const query = addAnimeToListMutation;
308
+ const variables = { mediaId: selectedAnime, status: selectedListType };
309
+ const saveResponse = yield fetcher(query, variables);
310
+ if (saveResponse) {
311
+ const savedEntry = (_c = saveResponse.data) === null || _c === void 0 ? void 0 : _c.SaveMediaListEntry;
312
+ console.log(`\nEntry ${savedEntry === null || savedEntry === void 0 ? void 0 : savedEntry.id}. Saved as ${savedEntry === null || savedEntry === void 0 ? void 0 : savedEntry.status}.`);
313
+ }
314
+ else {
315
+ console.error(`\nPlease log in first to use this feature.`);
316
+ }
317
+ }
318
+ catch (error) {
319
+ console.log(`\nSomething went wrong. ${error.message}`);
320
+ }
321
+ });
322
+ }
323
+ static MyManga() {
324
+ return __awaiter(this, void 0, void 0, function* () {
325
+ var _a, _b, _c, _d, _e;
326
+ try {
327
+ if (!(yield Auth.isLoggedIn())) {
328
+ return console.error(`\nPlease log in first to access your lists.`);
329
+ }
330
+ const userId = yield Auth.MyUserId();
331
+ if (!userId) {
332
+ return console.error(`\nFailed to get the current user ID.`);
333
+ }
334
+ const token = yield Auth.RetriveAccessToken();
335
+ const request = yield fetch(aniListEndpoint, {
336
+ method: "POST",
337
+ headers: {
338
+ "Content-Type": "application/json",
339
+ "Authorization": `Bearer ${token}`,
340
+ },
341
+ body: JSON.stringify({
342
+ query: currentUserMangaList,
343
+ variables: { id: userId },
344
+ }),
345
+ });
346
+ const { data, errors } = yield request.json();
347
+ if (request.status !== 200 || errors) {
348
+ return console.error(`\nFailed to fetch manga lists. ${((_a = errors === null || errors === void 0 ? void 0 : errors[0]) === null || _a === void 0 ? void 0 : _a.message) || "Unknown error"}`);
349
+ }
350
+ const lists = (_b = data === null || data === void 0 ? void 0 : data.MediaListCollection) === null || _b === void 0 ? void 0 : _b.lists;
351
+ if (!lists || lists.length === 0) {
352
+ return console.log("\nYou don't seem to have any manga in your lists.");
353
+ }
354
+ const { selectedList } = yield inquirer.prompt([
355
+ {
356
+ type: "list",
357
+ name: "selectedList",
358
+ message: "Select a manga list:",
359
+ choices: lists.map((list) => list.name),
360
+ },
361
+ ]);
362
+ const selectedEntries = lists.find((list) => list.name === selectedList);
363
+ if (!selectedEntries || selectedEntries.entries.length === 0) {
364
+ return console.log("\nNo manga entries found in the selected list.");
365
+ }
366
+ console.log(`\nEntries for '${selectedEntries.name}':`);
367
+ const { selectedManga } = yield inquirer.prompt([
368
+ {
369
+ type: "list",
370
+ name: "selectedManga",
371
+ message: "Select a manga to add to the list:",
372
+ choices: selectedEntries.entries.map((entry, idx) => {
373
+ var _a;
374
+ return ({
375
+ name: `[${idx + 1}] ${getTitle(entry.media.title)}`,
376
+ value: (_a = entry === null || entry === void 0 ? void 0 : entry.media) === null || _a === void 0 ? void 0 : _a.id,
377
+ });
378
+ }),
379
+ pageSize: 10,
380
+ },
381
+ ]);
382
+ const { selectedListType } = yield inquirer.prompt([
383
+ {
384
+ type: "list",
385
+ name: "selectedListType",
386
+ message: "Select the list where you want to save this manga:",
387
+ choices: [
388
+ { name: "Planning", value: "PLANNING" },
389
+ { name: "Reading", value: "CURRENT" },
390
+ { name: "Completed", value: "COMPLETED" },
391
+ { name: "Paused", value: "PAUSED" },
392
+ { name: "Dropped", value: "DROPPED" },
393
+ ],
394
+ },
395
+ ]);
396
+ const saveRequest = yield fetch(aniListEndpoint, {
397
+ method: "POST",
398
+ headers: {
399
+ "Content-Type": "application/json",
400
+ "Authorization": `Bearer ${token}`,
401
+ },
402
+ body: JSON.stringify({
403
+ query: addMangaToListMutation,
404
+ variables: { mediaId: selectedManga, status: selectedListType },
405
+ }),
406
+ });
407
+ const saveResponse = yield saveRequest.json();
408
+ const saved = (_c = saveResponse === null || saveResponse === void 0 ? void 0 : saveResponse.data) === null || _c === void 0 ? void 0 : _c.SaveMediaListEntry;
409
+ if (saved) {
410
+ console.log(`\nEntry ${saved.id}. Saved as ${saved.status}.`);
411
+ }
412
+ else {
413
+ console.error(`\nFailed to save the manga. ${((_e = (_d = saveResponse === null || saveResponse === void 0 ? void 0 : saveResponse.errors) === null || _d === void 0 ? void 0 : _d[0]) === null || _e === void 0 ? void 0 : _e.message) || "Unknown error"}`);
414
+ }
415
+ }
416
+ catch (error) {
417
+ console.error(`\nSomething went wrong. ${error.message}`);
418
+ }
419
+ });
420
+ }
421
+ static getTrendingAnime(count) {
422
+ return __awaiter(this, void 0, void 0, function* () {
423
+ var _a, _b, _c, _d, _e;
424
+ try {
425
+ const request = yield fetch(aniListEndpoint, {
426
+ method: "POST",
427
+ headers: {
428
+ "Content-Type": "application/json",
429
+ },
430
+ body: JSON.stringify({
431
+ query: trendingQuery,
432
+ variables: { page: 1, perPage: count },
433
+ }),
434
+ });
435
+ const { data, errors } = yield request.json();
436
+ if (request.status !== 200 || errors) {
437
+ return console.log(`\nSomething went wrong. ${((_a = errors === null || errors === void 0 ? void 0 : errors[0]) === null || _a === void 0 ? void 0 : _a.message) || "Unknown error"}`);
438
+ }
439
+ const media = (_b = data === null || data === void 0 ? void 0 : data.Page) === null || _b === void 0 ? void 0 : _b.media;
440
+ if (!media || media.length === 0) {
441
+ return console.log(`\nNo trending available at the moment.`);
442
+ }
443
+ const { selectedAnime } = yield inquirer.prompt([
444
+ {
445
+ type: "list",
446
+ name: "selectedAnime",
447
+ message: "Select anime to add to the list:",
448
+ choices: media.map((anime, idx) => ({
449
+ name: `[${idx + 1}] ${getTitle(anime === null || anime === void 0 ? void 0 : anime.title)}`,
450
+ value: anime === null || anime === void 0 ? void 0 : anime.id,
451
+ })),
452
+ pageSize: 10,
453
+ },
454
+ ]);
455
+ const { selectedListType } = yield inquirer.prompt([
456
+ {
457
+ type: "list",
458
+ name: "selectedListType",
459
+ message: "Select the list where you want to save this anime:",
460
+ choices: [
461
+ { name: "Planning", value: "PLANNING" },
462
+ { name: "Watching", value: "CURRENT" },
463
+ { name: "Completed", value: "COMPLETED" },
464
+ { name: "Paused", value: "PAUSED" },
465
+ { name: "Dropped", value: "DROPPED" },
466
+ ],
467
+ },
468
+ ]);
469
+ if (!(yield Auth.isLoggedIn())) {
470
+ return console.error(`\nPlease log in first to use this feature.`);
471
+ }
472
+ const variables = { mediaId: selectedAnime, status: selectedListType };
473
+ const saveResponse = yield fetcher(addAnimeToListMutation, variables);
474
+ const saved = (_c = saveResponse === null || saveResponse === void 0 ? void 0 : saveResponse.data) === null || _c === void 0 ? void 0 : _c.SaveMediaListEntry;
475
+ if (saved) {
476
+ console.log(`\nEntry ${saved.id}. Saved as ${saved.status}.`);
477
+ }
478
+ else {
479
+ console.error(`\nFailed to save the anime. ${((_e = (_d = saveResponse === null || saveResponse === void 0 ? void 0 : saveResponse.errors) === null || _d === void 0 ? void 0 : _d[0]) === null || _e === void 0 ? void 0 : _e.message) || "Unknown error"}`);
480
+ }
481
+ }
482
+ catch (error) {
483
+ console.error(`\nSomething went wrong. ${error.message}`);
484
+ }
485
+ });
486
+ }
487
+ static getPopularAnime(count) {
488
+ return __awaiter(this, void 0, void 0, function* () {
489
+ var _a, _b, _c, _d, _e;
490
+ try {
491
+ const request = yield fetch(aniListEndpoint, {
492
+ method: "POST",
493
+ headers: {
494
+ "Content-Type": "application/json",
495
+ },
496
+ body: JSON.stringify({
497
+ query: popularQuery,
498
+ variables: { page: 1, perPage: count },
499
+ }),
500
+ });
501
+ const { data, errors } = yield request.json();
502
+ if (request.status !== 200 || errors) {
503
+ return console.log(`\nSomething went wrong. ${((_a = errors === null || errors === void 0 ? void 0 : errors[0]) === null || _a === void 0 ? void 0 : _a.message) || "Unknown error"}`);
504
+ }
505
+ const media = (_b = data === null || data === void 0 ? void 0 : data.Page) === null || _b === void 0 ? void 0 : _b.media;
506
+ if (!media || media.length === 0) {
507
+ return console.log(`\nNo popular anime available at the moment.`);
508
+ }
509
+ const { selectedAnime } = yield inquirer.prompt([
510
+ {
511
+ type: "list",
512
+ name: "selectedAnime",
513
+ message: "Select anime to add to the list:",
514
+ choices: media.map((anime, idx) => ({
515
+ name: `[${idx + 1}] ${getTitle(anime === null || anime === void 0 ? void 0 : anime.title)}`,
516
+ value: anime === null || anime === void 0 ? void 0 : anime.id,
517
+ })),
518
+ pageSize: 10,
519
+ },
520
+ ]);
521
+ const { selectedListType } = yield inquirer.prompt([
522
+ {
523
+ type: "list",
524
+ name: "selectedListType",
525
+ message: "Select the list where you want to save this anime:",
526
+ choices: [
527
+ { name: "Planning", value: "PLANNING" },
528
+ { name: "Watching", value: "CURRENT" },
529
+ { name: "Completed", value: "COMPLETED" },
530
+ { name: "Paused", value: "PAUSED" },
531
+ { name: "Dropped", value: "DROPPED" },
532
+ ],
533
+ },
534
+ ]);
535
+ if (!(yield Auth.isLoggedIn())) {
536
+ return console.error(`\nPlease log in first to use this feature.`);
537
+ }
538
+ const variables = { mediaId: selectedAnime, status: selectedListType };
539
+ const saveResponse = yield fetcher(addAnimeToListMutation, variables);
540
+ const saved = (_c = saveResponse === null || saveResponse === void 0 ? void 0 : saveResponse.data) === null || _c === void 0 ? void 0 : _c.SaveMediaListEntry;
541
+ if (saved) {
542
+ console.log(`\nEntry ${saved.id}. Saved as ${saved.status}.`);
543
+ }
544
+ else {
545
+ console.error(`\nFailed to save the anime. ${((_e = (_d = saveResponse === null || saveResponse === void 0 ? void 0 : saveResponse.errors) === null || _d === void 0 ? void 0 : _d[0]) === null || _e === void 0 ? void 0 : _e.message) || "Unknown error"}`);
546
+ }
547
+ }
548
+ catch (error) {
549
+ console.error(`\nSomething went wrong. ${error.message}`);
550
+ }
551
+ });
552
+ }
553
+ static getUpcomingAnime(count) {
554
+ return __awaiter(this, void 0, void 0, function* () {
555
+ var _a, _b, _c, _d, _e, _f;
556
+ try {
557
+ const { nextSeason, nextYear } = getNextSeasonAndYear();
558
+ const request = yield fetcher(upcomingAnimesQuery, {
559
+ nextSeason,
560
+ nextYear,
561
+ perPage: count,
562
+ });
563
+ if (!request || !request.data) {
564
+ return console.error(`\nSomething went wrong. ${((_b = (_a = request === null || request === void 0 ? void 0 : request.errors) === null || _a === void 0 ? void 0 : _a[0]) === null || _b === void 0 ? void 0 : _b.message) || "Unknown error"}`);
565
+ }
566
+ const upcoming = (_c = request.data.Page.media) !== null && _c !== void 0 ? _c : [];
567
+ if (upcoming.length === 0) {
568
+ return console.log(`\nNo upcoming anime available.`);
569
+ }
570
+ const { selectedAnime } = yield inquirer.prompt([
571
+ {
572
+ type: "list",
573
+ name: "selectedAnime",
574
+ message: "Select anime to add to the list:",
575
+ choices: upcoming.map((anime, idx) => ({
576
+ name: `[${idx + 1}] ${getTitle(anime === null || anime === void 0 ? void 0 : anime.title)}`,
577
+ value: anime === null || anime === void 0 ? void 0 : anime.id,
578
+ })),
579
+ pageSize: 10,
580
+ },
581
+ ]);
582
+ const { selectedListType } = yield inquirer.prompt([
583
+ {
584
+ type: "list",
585
+ name: "selectedListType",
586
+ message: "Select the list where you want to save this anime:",
587
+ choices: [
588
+ { name: "Planning", value: "PLANNING" },
589
+ { name: "Watching", value: "CURRENT" },
590
+ { name: "Completed", value: "COMPLETED" },
591
+ { name: "Paused", value: "PAUSED" },
592
+ { name: "Dropped", value: "DROPPED" },
593
+ ],
594
+ },
595
+ ]);
596
+ if (!(yield Auth.isLoggedIn())) {
597
+ return console.error(`\nPlease log in first to use this feature.`);
598
+ }
599
+ const variables = { mediaId: selectedAnime, status: selectedListType };
600
+ const saveResponse = yield fetcher(addAnimeToListMutation, variables);
601
+ const saved = (_d = saveResponse === null || saveResponse === void 0 ? void 0 : saveResponse.data) === null || _d === void 0 ? void 0 : _d.SaveMediaListEntry;
602
+ if (saved) {
603
+ console.log(`\nEntry ${saved.id}. Saved as ${saved.status}.`);
604
+ }
605
+ else {
606
+ console.error(`\nFailed to save the anime. ${((_f = (_e = saveResponse === null || saveResponse === void 0 ? void 0 : saveResponse.errors) === null || _e === void 0 ? void 0 : _e[0]) === null || _f === void 0 ? void 0 : _f.message) || "Unknown error"}`);
607
+ }
608
+ }
609
+ catch (error) {
610
+ console.error(`\nError getting upcoming animes. ${error.message}`);
611
+ }
612
+ });
613
+ }
614
+ static getUserByUsername(username) {
615
+ return __awaiter(this, void 0, void 0, function* () {
616
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v;
617
+ try {
618
+ const headers = {
619
+ "Content-Type": "application/json",
620
+ };
621
+ if (yield Auth.isLoggedIn()) {
622
+ headers["Authorization"] = `Bearer ${yield Auth.RetriveAccessToken()}`;
623
+ }
624
+ const request = yield fetch(aniListEndpoint, {
625
+ method: "POST",
626
+ headers,
627
+ body: JSON.stringify({ query: userQuery, variables: { username } }),
628
+ });
629
+ const response = yield request.json();
630
+ if (request.status !== 200 || !((_a = response === null || response === void 0 ? void 0 : response.data) === null || _a === void 0 ? void 0 : _a.User)) {
631
+ return console.error(`\n${request.status} ${((_c = (_b = response === null || response === void 0 ? void 0 : response.errors) === null || _b === void 0 ? void 0 : _b[0]) === null || _c === void 0 ? void 0 : _c.message) || "Unknown error"}`);
632
+ }
633
+ const user = response.data.User;
634
+ const userActivityResponse = yield fetcher(userActivityQuery, {
635
+ id: user.id,
636
+ page: 1,
637
+ perPage: 10,
638
+ });
639
+ const activities = (_f = (_e = (_d = userActivityResponse === null || userActivityResponse === void 0 ? void 0 : userActivityResponse.data) === null || _d === void 0 ? void 0 : _d.Page) === null || _e === void 0 ? void 0 : _e.activities) !== null && _f !== void 0 ? _f : [];
640
+ console.log(`\nID:\t\t${user.id}`);
641
+ console.log(`Name:\t\t${user.name}`);
642
+ console.log(`Site URL:\t${user.siteUrl}`);
643
+ console.log(`Donator Tier:\t${user.donatorTier}`);
644
+ console.log(`Donator Badge:\t${user.donatorBadge}`);
645
+ console.log(`Account Created:\t${user.createdAt ? new Date(user.createdAt * 1000).toUTCString() : "N/A"}`);
646
+ console.log(`Account Updated:\t${user.updatedAt ? new Date(user.updatedAt * 1000).toUTCString() : "N/A"}`);
647
+ console.log(`Blocked:\t${user.isBlocked}`);
648
+ console.log(`Follower:\t${user.isFollower}`);
649
+ console.log(`Following:\t${user.isFollowing}`);
650
+ console.log(`Profile Color:\t${(_g = user.options) === null || _g === void 0 ? void 0 : _g.profileColor}`);
651
+ console.log(`Timezone:\t${(_h = user.options) === null || _h === void 0 ? void 0 : _h.timezone}`);
652
+ console.log(`\nStatistics (Anime)\nCount: ${((_k = (_j = user.statistics) === null || _j === void 0 ? void 0 : _j.anime) === null || _k === void 0 ? void 0 : _k.count) || 0} Episodes Watched: ${((_m = (_l = user.statistics) === null || _l === void 0 ? void 0 : _l.anime) === null || _m === void 0 ? void 0 : _m.episodesWatched) || 0} Minutes Watched: ${((_p = (_o = user.statistics) === null || _o === void 0 ? void 0 : _o.anime) === null || _p === void 0 ? void 0 : _p.minutesWatched) || 0}`);
653
+ console.log(`Statistics (Manga)\nCount: ${((_r = (_q = user.statistics) === null || _q === void 0 ? void 0 : _q.manga) === null || _r === void 0 ? void 0 : _r.count) || 0} Chapters Read: ${((_t = (_s = user.statistics) === null || _s === void 0 ? void 0 : _s.manga) === null || _t === void 0 ? void 0 : _t.chaptersRead) || 0} Volumes Read: ${((_v = (_u = user.statistics) === null || _u === void 0 ? void 0 : _u.manga) === null || _v === void 0 ? void 0 : _v.volumesRead) || 0}`);
654
+ if (activities.length > 0) {
655
+ console.log(`\nRecent Activities:`);
656
+ activities.forEach(({ status, progress, media }) => {
657
+ console.log(`${status} ${progress ? `${progress} of ` : ""}${getTitle(media === null || media === void 0 ? void 0 : media.title)}`);
658
+ });
659
+ }
660
+ else {
661
+ console.log("\nNo recent activities.");
662
+ }
663
+ }
664
+ catch (error) {
665
+ console.error(`\nSomething went wrong. ${error.message}`);
666
+ }
667
+ });
668
+ }
669
+ static getAnimeDetailsByID(anilistID) {
670
+ return __awaiter(this, void 0, void 0, function* () {
671
+ var _a;
672
+ const query = animeDetailsQuery;
673
+ const variables = { id: anilistID };
674
+ const details = yield fetcher(query, variables);
675
+ if ((_a = details === null || details === void 0 ? void 0 : details.data) === null || _a === void 0 ? void 0 : _a.Media) {
676
+ const { id, title, description, duration, startDate, endDate, countryOfOrigin, isAdult, status, season, format, genres, siteUrl, } = details.data.Media;
677
+ console.log(`\nID: ${id}`);
678
+ console.log(`Title: ${(title === null || title === void 0 ? void 0 : title.userPreferred) || getTitle(title)}`);
679
+ console.log(`Description: ${removeHtmlAndMarkdown(description)}`);
680
+ console.log(`Episode Duration: ${duration || "Unknown"} min`);
681
+ console.log(`Origin: ${countryOfOrigin || "N/A"}`);
682
+ console.log(`Status: ${status || "N/A"}`);
683
+ console.log(`Format: ${format || "N/A"}`);
684
+ console.log(`Genres: ${genres.length ? genres.join(", ") : "N/A"}`);
685
+ console.log(`Season: ${season || "N/A"}`);
686
+ console.log(`Url: ${siteUrl || "N/A"}`);
687
+ console.log(`isAdult: ${isAdult ? "Yes" : "No"}`);
688
+ console.log(`Released: ${formatDateObject(startDate) || "Unknown"}`);
689
+ console.log(`Finished: ${formatDateObject(endDate) || "Ongoing"}`);
690
+ }
691
+ });
692
+ }
693
+ static searchAnime(search, count) {
694
+ return __awaiter(this, void 0, void 0, function* () {
695
+ var _a, _b, _c;
696
+ const query = animeSearchQuery;
697
+ const variables = { search, page: 1, perPage: count };
698
+ const searchResults = yield fetcher(query, variables);
699
+ if (searchResults) {
700
+ const results = (_b = (_a = searchResults === null || searchResults === void 0 ? void 0 : searchResults.data) === null || _a === void 0 ? void 0 : _a.Page) === null || _b === void 0 ? void 0 : _b.media;
701
+ if (results.length > 0) {
110
702
  const { selectedAnime } = yield inquirer.prompt([
111
703
  {
112
704
  type: "list",
113
705
  name: "selectedAnime",
114
- message: "Select anime to add to the list:",
115
- choices: media.map((upx, idx) => ({
116
- name: `[${idx + 1}] ${getTitle(upx === null || upx === void 0 ? void 0 : upx.title)}`,
117
- value: upx === null || upx === void 0 ? void 0 : upx.id,
706
+ message: "Select anime to add to your list:",
707
+ choices: results.map((res, idx) => ({
708
+ name: `[${idx + 1}] ${getTitle(res === null || res === void 0 ? void 0 : res.title)}`,
709
+ value: res === null || res === void 0 ? void 0 : res.id,
118
710
  })),
119
711
  pageSize: 10,
120
712
  },
121
713
  ]);
122
- // Where to save
123
714
  const { selectedListType } = yield inquirer.prompt([
124
715
  {
125
716
  type: "list",
@@ -134,14 +725,14 @@ function getPopular(count) {
134
725
  ],
135
726
  },
136
727
  ]);
137
- // Lets save to the list now
138
- if (yield isLoggedIn()) {
139
- const query = addAnimeToListMutation;
140
- const variables = {
728
+ // Save selected anime to chosen list type
729
+ if (yield Auth.isLoggedIn()) {
730
+ const saveQuery = addAnimeToListMutation;
731
+ const saveVariables = {
141
732
  mediaId: selectedAnime,
142
733
  status: selectedListType,
143
734
  };
144
- const response = yield fetcher(query, variables);
735
+ const response = yield fetcher(saveQuery, saveVariables);
145
736
  if (response) {
146
737
  const saved = (_c = response === null || response === void 0 ? void 0 : response.data) === null || _c === void 0 ? void 0 : _c.SaveMediaListEntry;
147
738
  console.log(`\nEntry ${saved === null || saved === void 0 ? void 0 : saved.id}. Saved as ${saved === null || saved === void 0 ? void 0 : saved.status}.`);
@@ -152,493 +743,281 @@ function getPopular(count) {
152
743
  }
153
744
  }
154
745
  else {
155
- console.log(`\nNo popular available at this moment.`);
746
+ console.log(`\nNo search results found.`);
156
747
  }
157
748
  }
158
749
  else {
159
- console.log(`\nSomething went wrong. ${(_d = response === null || response === void 0 ? void 0 : response.errors[0]) === null || _d === void 0 ? void 0 : _d.message}`);
750
+ console.error(`\nSomething went wrong.`);
160
751
  }
161
- }
162
- catch (error) {
163
- console.log(`\nSomething went wrong. ${error.message}`);
164
- }
165
- });
166
- }
167
- function loggedInUsersAnimeLists() {
168
- return __awaiter(this, void 0, void 0, function* () {
169
- var _a, _b, _c, _d, _e;
170
- try {
171
- if (yield isLoggedIn()) {
172
- if (yield currentUsersId()) {
173
- const request = yield fetch(aniListEndpoint, {
174
- method: "POST",
175
- headers: {
176
- "content-type": "application/json",
177
- "Authorization": `Bearer ${yield retriveAccessToken()}`,
178
- },
179
- body: JSON.stringify({
180
- query: currentUserAnimeList,
181
- variables: { id: yield currentUsersId() },
182
- }),
183
- });
184
- const response = yield request.json();
185
- if (request.status === 200) {
186
- const lists = (_b = (_a = response === null || response === void 0 ? void 0 : response.data) === null || _a === void 0 ? void 0 : _a.MediaListCollection) === null || _b === void 0 ? void 0 : _b.lists;
187
- if (lists.length > 0) {
188
- const { selectedList } = yield inquirer.prompt([
189
- {
190
- type: "list",
191
- name: "selectedList",
192
- message: "Select an anime list:",
193
- choices: lists.map((list) => list.name),
194
- },
195
- ]);
196
- const selectedEntries = lists.find((list) => list.name === selectedList);
197
- if (selectedEntries) {
198
- console.log(`\nEntries for '${selectedEntries.name}':`);
199
- if (((_c = selectedEntries === null || selectedEntries === void 0 ? void 0 : selectedEntries.entries) === null || _c === void 0 ? void 0 : _c.length) > 0) {
200
- const { selectedAnime } = yield inquirer.prompt([
201
- {
202
- type: "list",
203
- name: "selectedAnime",
204
- message: "Select anime to add to the list:",
205
- choices: selectedEntries === null || selectedEntries === void 0 ? void 0 : selectedEntries.entries.map((upx, idx) => {
206
- var _a, _b;
207
- return ({
208
- name: `[${idx + 1}] ${getTitle((_a = upx === null || upx === void 0 ? void 0 : upx.media) === null || _a === void 0 ? void 0 : _a.title)}`,
209
- value: (_b = upx === null || upx === void 0 ? void 0 : upx.media) === null || _b === void 0 ? void 0 : _b.id,
210
- });
211
- }),
212
- pageSize: 10,
213
- },
214
- ]);
215
- // Where to save
216
- const { selectedListType } = yield inquirer.prompt([
217
- {
218
- type: "list",
219
- name: "selectedListType",
220
- message: "Select the list where you want to save this anime:",
221
- choices: [
222
- { name: "Planning", value: "PLANNING" },
223
- { name: "Watching", value: "CURRENT" },
224
- { name: "Completed", value: "COMPLETED" },
225
- { name: "Paused", value: "PAUSED" },
226
- { name: "Dropped", value: "DROPPED" },
227
- ],
228
- },
229
- ]);
230
- // Lets save to the list now
231
- if (yield isLoggedIn()) {
232
- const query = addAnimeToListMutation;
233
- const variables = {
234
- mediaId: selectedAnime,
235
- status: selectedListType,
236
- };
237
- const response = yield fetcher(query, variables);
238
- if (response) {
239
- const saved = (_d = response === null || response === void 0 ? void 0 : response.data) === null || _d === void 0 ? void 0 : _d.SaveMediaListEntry;
240
- console.log(`\nEntry ${saved === null || saved === void 0 ? void 0 : saved.id}. Saved as ${saved === null || saved === void 0 ? void 0 : saved.status}.`);
241
- }
242
- }
243
- else {
244
- console.error(`\nPlease log in first to use this feature.`);
245
- }
246
- }
247
- else {
248
- console.log(`\nNot available at this moment.`);
249
- }
250
- }
251
- else {
252
- console.log("\nNo entries found.");
253
- }
254
- }
255
- else {
256
- console.log(`\nYou seems to have no anime(s) in your lists.`);
257
- }
258
- }
259
- else {
260
- console.log(`\nSomething went wrong. ${(_e = response === null || response === void 0 ? void 0 : response.errors[0]) === null || _e === void 0 ? void 0 : _e.message}`);
752
+ });
753
+ }
754
+ static searchManga(search, count) {
755
+ return __awaiter(this, void 0, void 0, function* () {
756
+ var _a, _b, _c;
757
+ const query = mangaSearchQuery;
758
+ const variables = { search, page: 1, perPage: count };
759
+ const mangaSearchResult = yield fetcher(query, variables);
760
+ if (mangaSearchResult) {
761
+ const results = (_b = (_a = mangaSearchResult === null || mangaSearchResult === void 0 ? void 0 : mangaSearchResult.data) === null || _a === void 0 ? void 0 : _a.Page) === null || _b === void 0 ? void 0 : _b.media;
762
+ // List of manga search results
763
+ const { selectedMangaId } = yield inquirer.prompt([
764
+ {
765
+ type: "list",
766
+ name: "selectedMangaId",
767
+ message: "Select manga to add to your list:",
768
+ choices: results.map((res, idx) => ({
769
+ name: `[${idx + 1}] ${getTitle(res === null || res === void 0 ? void 0 : res.title)}`,
770
+ value: res === null || res === void 0 ? void 0 : res.id,
771
+ })),
772
+ pageSize: 10,
773
+ },
774
+ ]);
775
+ // Options to save to the list
776
+ const { selectedListType } = yield inquirer.prompt([
777
+ {
778
+ type: "list",
779
+ name: "selectedListType",
780
+ message: "Select the list where you want to save this manga:",
781
+ choices: [
782
+ { name: "Planning", value: "PLANNING" },
783
+ { name: "Reading", value: "CURRENT" },
784
+ { name: "Completed", value: "COMPLETED" },
785
+ { name: "Paused", value: "PAUSED" },
786
+ { name: "Dropped", value: "DROPPED" },
787
+ ],
788
+ },
789
+ ]);
790
+ // If logged in save to the list
791
+ if (yield Auth.isLoggedIn()) {
792
+ const mutation = addMangaToListMutation;
793
+ const variables = { mediaId: selectedMangaId, status: selectedListType };
794
+ const response = yield fetcher(mutation, variables);
795
+ if (response) {
796
+ const saved = (_c = response === null || response === void 0 ? void 0 : response.data) === null || _c === void 0 ? void 0 : _c.SaveMediaListEntry;
797
+ console.log(`\nEntry ${saved === null || saved === void 0 ? void 0 : saved.id}. Saved as ${saved === null || saved === void 0 ? void 0 : saved.status}.`);
261
798
  }
262
799
  }
263
800
  else {
264
- console.log(`\nFailed getting current user Id.`);
801
+ console.error(`\nPlease log in first to use this feature.`);
265
802
  }
266
803
  }
267
804
  else {
268
- console.error(`\nPlease log in first to access your lists.`);
805
+ console.error(`\nSomething went wrong.`);
269
806
  }
270
- }
271
- catch (error) {
272
- console.log(`\nSomething went wrong. ${error.message}`);
273
- }
274
- });
807
+ });
808
+ }
275
809
  }
276
- function loggedInUsersMangaLists() {
277
- return __awaiter(this, void 0, void 0, function* () {
278
- var _a, _b, _c, _d, _e, _f;
279
- try {
280
- if (yield isLoggedIn()) {
281
- const userID = yield currentUsersId();
282
- if (userID) {
283
- const request = yield fetch(aniListEndpoint, {
284
- method: "POST",
285
- headers: {
286
- "Content-Type": "application/json",
287
- "Authorization": `Bearer ${yield retriveAccessToken()}`,
288
- },
289
- body: JSON.stringify({
290
- query: currentUserMangaList,
291
- variables: { id: userID },
292
- }),
293
- });
294
- const response = yield request.json();
295
- if (request.status === 200 && ((_a = response === null || response === void 0 ? void 0 : response.data) === null || _a === void 0 ? void 0 : _a.MediaListCollection)) {
296
- const lists = response.data.MediaListCollection.lists;
297
- if (lists && lists.length > 0) {
298
- const { selectedList } = yield inquirer.prompt([
299
- {
300
- type: "list",
301
- name: "selectedList",
302
- message: "Select a manga list:",
303
- choices: lists.map((list) => list.name),
304
- },
305
- ]);
306
- const selectedEntries = lists.find((list) => list.name === selectedList);
307
- if (selectedEntries && selectedEntries.entries.length > 0) {
308
- console.log(`\nEntries for '${selectedEntries.name}':`);
309
- const { selectedManga } = yield inquirer.prompt([
310
- {
311
- type: "list",
312
- name: "selectedManga",
313
- message: "Select a manga to add to the list:",
314
- choices: selectedEntries.entries.map((entry, idx) => {
315
- var _a;
316
- return ({
317
- name: `[${idx + 1}] ${getTitle(entry.media.title)}`,
318
- value: (_a = entry === null || entry === void 0 ? void 0 : entry.media) === null || _a === void 0 ? void 0 : _a.id,
319
- });
320
- }),
321
- pageSize: 10,
322
- },
323
- ]);
324
- // Prompt user to select list type to save to
325
- const { selectedListType } = yield inquirer.prompt([
326
- {
327
- type: "list",
328
- name: "selectedListType",
329
- message: "Select the list where you want to save this manga:",
330
- choices: [
331
- { name: "Planning", value: "PLANNING" },
332
- { name: "Reading", value: "CURRENT" },
333
- { name: "Completed", value: "COMPLETED" },
334
- { name: "Paused", value: "PAUSED" },
335
- { name: "Dropped", value: "DROPPED" },
336
- ],
337
- },
338
- ]);
339
- // Save the selected manga to the selected list type
340
- if (yield isLoggedIn()) {
341
- const query = addMangaToListMutation;
342
- const variables = {
343
- mediaId: selectedManga,
344
- status: selectedListType,
345
- };
346
- const saveRequest = yield fetch(aniListEndpoint, {
347
- method: "POST",
348
- headers: {
349
- "Content-Type": "application/json",
350
- "Authorization": `Bearer ${yield retriveAccessToken()}`,
351
- },
352
- body: JSON.stringify({ query, variables }),
810
+ class MyAnimeList {
811
+ static importAnime() {
812
+ return __awaiter(this, void 0, void 0, function* () {
813
+ var _a, _b, _c, _d, _e;
814
+ try {
815
+ const filename = yield selectFile(".xml");
816
+ const filePath = join(getDownloadFolderPath(), filename);
817
+ const fileContent = yield readFile(filePath, "utf8");
818
+ const parser = new XMLParser();
819
+ if (fileContent) {
820
+ const XMLObject = parser.parse(fileContent);
821
+ const animeList = (_a = XMLObject === null || XMLObject === void 0 ? void 0 : XMLObject.myanimelist) === null || _a === void 0 ? void 0 : _a.anime;
822
+ if ((animeList === null || animeList === void 0 ? void 0 : animeList.length) > 0) {
823
+ let count = 0;
824
+ const statusMap = {
825
+ "On-Hold": AniListMediaStatus.PAUSED,
826
+ "Dropped": AniListMediaStatus.DROPPED,
827
+ "Completed": AniListMediaStatus.COMPLETED,
828
+ "Watching": AniListMediaStatus.CURRENT,
829
+ "Plan to Watch": AniListMediaStatus.PLANNING,
830
+ };
831
+ for (const anime of animeList) {
832
+ const malId = anime.series_animedb_id;
833
+ const progress = anime.my_watched_episodes;
834
+ const status = statusMap[anime.my_status];
835
+ try {
836
+ // Fetch AniList ID using MAL ID
837
+ const anilistResponse = yield fetcher(malIdToAnilistAnimeId, { malId });
838
+ const anilistId = (_c = (_b = anilistResponse === null || anilistResponse === void 0 ? void 0 : anilistResponse.data) === null || _b === void 0 ? void 0 : _b.Media) === null || _c === void 0 ? void 0 : _c.id;
839
+ if (anilistId) {
840
+ // Save anime entry with progress
841
+ const saveResponse = yield fetcher(saveAnimeWithProgressMutation, {
842
+ mediaId: anilistId,
843
+ progress,
844
+ status,
845
+ hiddenFromStatusLists: false,
846
+ private: false,
353
847
  });
354
- const saveResponse = yield saveRequest.json();
355
- if ((_b = saveResponse === null || saveResponse === void 0 ? void 0 : saveResponse.data) === null || _b === void 0 ? void 0 : _b.SaveMediaListEntry) {
356
- const saved = saveResponse.data.SaveMediaListEntry;
357
- console.log(`\nEntry ${saved.id}. Saved as ${saved.status}.`);
358
- }
359
- else {
360
- console.error(`\nFailed to save the manga. ${((_d = (_c = saveResponse === null || saveResponse === void 0 ? void 0 : saveResponse.errors) === null || _c === void 0 ? void 0 : _c[0]) === null || _d === void 0 ? void 0 : _d.message) || "Unknown error"}`);
848
+ const entryId = (_e = (_d = saveResponse === null || saveResponse === void 0 ? void 0 : saveResponse.data) === null || _d === void 0 ? void 0 : _d.SaveMediaListEntry) === null || _e === void 0 ? void 0 : _e.id;
849
+ if (entryId) {
850
+ count++;
851
+ console.log(`[${count}] ${entryId} ✅`);
361
852
  }
853
+ // Rate limit each API call to avoid server overload
854
+ yield new Promise((resolve) => setTimeout(resolve, 1100));
362
855
  }
363
856
  else {
364
- console.error(`\nPlease log in first to use this feature.`);
857
+ console.error(`Could not retrieve AniList ID for MAL ID ${malId}`);
365
858
  }
366
859
  }
367
- else {
368
- console.log("\nNo manga entries found in the selected list.");
860
+ catch (error) {
861
+ console.error(`Error processing MAL ID ${malId}: ${error.message}`);
369
862
  }
370
863
  }
371
- else {
372
- console.log("\nYou don't seem to have any manga in your lists.");
373
- }
864
+ console.log(`\nTotal Entries Processed: ${count}`);
374
865
  }
375
866
  else {
376
- console.error(`\nFailed to fetch manga lists. ${((_f = (_e = response === null || response === void 0 ? void 0 : response.errors) === null || _e === void 0 ? void 0 : _e[0]) === null || _f === void 0 ? void 0 : _f.message) || "Unknown error"}`);
867
+ console.log(`\nNo anime list found in the file.`);
377
868
  }
378
869
  }
379
- else {
380
- console.error(`\nFailed to get the current user ID.`);
381
- }
382
870
  }
383
- else {
384
- console.error(`\nPlease log in first to access your lists.`);
871
+ catch (error) {
872
+ console.error(`\nError in MAL import process: ${error.message}`);
385
873
  }
386
- }
387
- catch (error) {
388
- console.error(`\nSomething went wrong. ${error.message}`);
389
- }
390
- });
391
- }
392
- function deleteAnimeCollection() {
393
- return __awaiter(this, void 0, void 0, function* () {
394
- var _a, _b, _c, _d;
395
- if (yield isLoggedIn()) {
396
- const userID = yield currentUsersId();
397
- if (userID) {
398
- const request = yield fetch(aniListEndpoint, {
399
- method: "POST",
400
- headers: {
401
- "content-type": "application/json",
402
- "Authorization": `Bearer ${yield retriveAccessToken()}`,
403
- },
404
- body: JSON.stringify({
405
- query: currentUserAnimeList,
406
- variables: { id: userID },
407
- }),
408
- });
409
- const response = yield request.json();
410
- if (request.status === 200) {
411
- const lists = (_b = (_a = response === null || response === void 0 ? void 0 : response.data) === null || _a === void 0 ? void 0 : _a.MediaListCollection) === null || _b === void 0 ? void 0 : _b.lists;
412
- if (lists.length > 0) {
413
- const { selectedList } = yield inquirer.prompt([
414
- {
415
- type: "list",
416
- name: "selectedList",
417
- message: "Select an anime list:",
418
- choices: lists.map((list) => list.name),
419
- pageSize: 10,
420
- },
421
- ]);
422
- const selectedEntries = lists.find((list) => list.name === selectedList);
423
- if (selectedEntries) {
424
- console.log(`\nDeleting entries of '${selectedEntries.name}':`);
425
- for (const [_, entry] of selectedEntries.entries.entries()) {
426
- if (entry === null || entry === void 0 ? void 0 : entry.id) {
427
- yield deleteAnimeByAnimeId(entry === null || entry === void 0 ? void 0 : entry.id, (_c = entry === null || entry === void 0 ? void 0 : entry.media) === null || _c === void 0 ? void 0 : _c.title);
428
- yield new Promise((resolve) => setTimeout(resolve, 2000));
874
+ });
875
+ }
876
+ static importManga() {
877
+ return __awaiter(this, void 0, void 0, function* () {
878
+ var _a, _b, _c, _d, _e;
879
+ try {
880
+ const filename = yield selectFile(".xml");
881
+ const filePath = join(getDownloadFolderPath(), filename);
882
+ const fileContent = yield readFile(filePath, "utf8");
883
+ const parser = new XMLParser();
884
+ if (fileContent) {
885
+ const XMLObject = parser.parse(fileContent);
886
+ const mangas = (_a = XMLObject === null || XMLObject === void 0 ? void 0 : XMLObject.myanimelist) === null || _a === void 0 ? void 0 : _a.manga;
887
+ if ((mangas === null || mangas === void 0 ? void 0 : mangas.length) > 0) {
888
+ let count = 0;
889
+ const statusMap = {
890
+ "On-Hold": AniListMediaStatus.PAUSED,
891
+ "Dropped": AniListMediaStatus.DROPPED,
892
+ "Completed": AniListMediaStatus.COMPLETED,
893
+ "Reading": AniListMediaStatus.CURRENT,
894
+ "Plan to Read": AniListMediaStatus.PLANNING,
895
+ };
896
+ for (const manga of mangas) {
897
+ const malId = manga.manga_mangadb_id;
898
+ const progress = manga.my_read_chapters;
899
+ const status = statusMap[manga.my_status];
900
+ try {
901
+ // Fetch AniList ID using MAL ID
902
+ const anilistResponse = yield fetcher(malIdToAnilistMangaId, { malId });
903
+ const anilistId = (_c = (_b = anilistResponse === null || anilistResponse === void 0 ? void 0 : anilistResponse.data) === null || _b === void 0 ? void 0 : _b.Media) === null || _c === void 0 ? void 0 : _c.id;
904
+ if (anilistId) {
905
+ // Save manga entry with progress
906
+ const saveResponse = yield fetcher(saveMangaWithProgressMutation, {
907
+ mediaId: anilistId,
908
+ progress,
909
+ status,
910
+ hiddenFromStatusLists: false,
911
+ private: false,
912
+ });
913
+ const entryId = (_e = (_d = saveResponse === null || saveResponse === void 0 ? void 0 : saveResponse.data) === null || _d === void 0 ? void 0 : _d.SaveMediaListEntry) === null || _e === void 0 ? void 0 : _e.id;
914
+ if (entryId) {
915
+ count++;
916
+ console.log(`[${count}] ${entryId} ✅`);
917
+ }
918
+ else {
919
+ console.error(`Failed to save entry for ${malId}`);
920
+ }
429
921
  }
430
922
  else {
431
- console.log(`No id in entry.`);
432
- console.log(entry);
923
+ console.error(`Could not retrieve AniList ID for MAL ID ${malId}`);
433
924
  }
434
925
  }
926
+ catch (error) {
927
+ console.error(`Error processing MAL ID ${malId}: ${error.message}`);
928
+ }
435
929
  }
436
- else {
437
- console.log("No entries found.");
438
- }
930
+ console.log(`\nTotal Entries Processed: ${count}`);
439
931
  }
440
932
  else {
441
- console.log(`\nNo anime(s) found in any list.`);
933
+ console.log(`\nNo manga list seems to be found.`);
442
934
  }
443
935
  }
444
- else {
445
- console.log(`\nSomething went wrong. ${(_d = response === null || response === void 0 ? void 0 : response.errors[0]) === null || _d === void 0 ? void 0 : _d.message}`);
446
- }
447
- }
448
- else {
449
- console.log(`\nFailed getting current user Id.`);
450
936
  }
451
- }
452
- else {
453
- console.error(`\nPlease log in first to delete your lists.`);
454
- }
455
- });
456
- }
457
- function deleteAnimeByAnimeId(id, title) {
458
- return __awaiter(this, void 0, void 0, function* () {
459
- var _a, _b, _c;
460
- try {
461
- const request = yield fetch(aniListEndpoint, {
462
- method: "POST",
463
- headers: {
464
- "content-type": "application/json",
465
- "Authorization": `Bearer ${yield retriveAccessToken()}`,
466
- },
467
- body: JSON.stringify({
468
- query: deleteMediaEntryMutation,
469
- variables: { id },
470
- }),
471
- });
472
- const response = yield request.json();
473
- if (request.status === 200) {
474
- const deleted = (_b = (_a = response === null || response === void 0 ? void 0 : response.data) === null || _a === void 0 ? void 0 : _a.DeleteMediaListEntry) === null || _b === void 0 ? void 0 : _b.deleted;
475
- console.log(`del ${title ? getTitle(title) : ""} ${deleted ? "✅" : "❌"}`);
476
- }
477
- else {
478
- console.log(`\nError deleting anime. ${(_c = response === null || response === void 0 ? void 0 : response.errors[0]) === null || _c === void 0 ? void 0 : _c.message}`);
479
- console.log(response);
937
+ catch (error) {
938
+ console.error(`\nError from MAL import: ${error.message}`);
480
939
  }
481
- }
482
- catch (error) {
483
- console.log(`\nError deleting anime. ${id} ${error.message}`);
484
- }
485
- });
486
- }
487
- function deleteMangaCollection() {
488
- return __awaiter(this, void 0, void 0, function* () {
489
- var _a, _b, _c, _d;
490
- if (yield isLoggedIn()) {
491
- const userID = yield currentUsersId();
492
- if (userID) {
493
- const request = yield fetch(aniListEndpoint, {
494
- method: "POST",
495
- headers: {
496
- "content-type": "application/json",
497
- "Authorization": `Bearer ${yield retriveAccessToken()}`,
498
- },
499
- body: JSON.stringify({
500
- query: currentUserMangaList,
501
- variables: { id: userID },
502
- }),
503
- });
504
- const response = yield request.json();
505
- if (request.status === 200) {
506
- const lists = (_b = (_a = response === null || response === void 0 ? void 0 : response.data) === null || _a === void 0 ? void 0 : _a.MediaListCollection) === null || _b === void 0 ? void 0 : _b.lists;
507
- if (lists.length > 0) {
508
- const { selectedList } = yield inquirer.prompt([
509
- {
510
- type: "list",
511
- name: "selectedList",
512
- message: "Select a manga list:",
513
- choices: lists.map((list) => list.name),
514
- pageSize: 10,
515
- },
516
- ]);
517
- const selectedEntries = lists.find((list) => list.name === selectedList);
518
- if (selectedEntries) {
519
- console.log(`\nDeleting entries of '${selectedEntries.name}':`);
520
- for (const [_, entry] of selectedEntries.entries.entries()) {
521
- if (entry === null || entry === void 0 ? void 0 : entry.id) {
522
- yield deleteMangaByMangaId(entry === null || entry === void 0 ? void 0 : entry.id, (_c = entry === null || entry === void 0 ? void 0 : entry.media) === null || _c === void 0 ? void 0 : _c.title);
523
- yield new Promise((resolve) => setTimeout(resolve, 2000));
524
- }
525
- else {
526
- console.log(`No id in entry.`);
527
- console.log(entry);
528
- }
529
- }
530
- }
531
- else {
532
- console.error("\nNo entries found.");
533
- }
940
+ });
941
+ }
942
+ static exportAnime() {
943
+ return __awaiter(this, void 0, void 0, function* () {
944
+ var _a, _b, _c, _d;
945
+ try {
946
+ if (yield Auth.isLoggedIn()) {
947
+ const animeList = yield fetcher(currentUserAnimeList, {
948
+ id: yield Auth.MyUserId(),
949
+ });
950
+ if (((_b = (_a = animeList === null || animeList === void 0 ? void 0 : animeList.data) === null || _a === void 0 ? void 0 : _a.MediaListCollection) === null || _b === void 0 ? void 0 : _b.lists.length) > 0) {
951
+ const lists = (_d = (_c = animeList === null || animeList === void 0 ? void 0 : animeList.data) === null || _c === void 0 ? void 0 : _c.MediaListCollection) === null || _d === void 0 ? void 0 : _d.lists;
952
+ const mediaWithProgress = lists.flatMap((list) => list.entries.map((entry) => {
953
+ var _a, _b, _c, _d, _e;
954
+ return ({
955
+ id: (_a = entry === null || entry === void 0 ? void 0 : entry.media) === null || _a === void 0 ? void 0 : _a.id,
956
+ malId: (_b = entry === null || entry === void 0 ? void 0 : entry.media) === null || _b === void 0 ? void 0 : _b.idMal,
957
+ title: (_c = entry === null || entry === void 0 ? void 0 : entry.media) === null || _c === void 0 ? void 0 : _c.title,
958
+ episodes: (_d = entry === null || entry === void 0 ? void 0 : entry.media) === null || _d === void 0 ? void 0 : _d.episodes,
959
+ siteUrl: (_e = entry === null || entry === void 0 ? void 0 : entry.media) === null || _e === void 0 ? void 0 : _e.siteUrl,
960
+ progress: entry.progress,
961
+ status: entry === null || entry === void 0 ? void 0 : entry.status,
962
+ hiddenFromStatusLists: false,
963
+ });
964
+ }));
965
+ const xmlContent = createAnimeListXML(mediaWithProgress);
966
+ const path = join(getDownloadFolderPath(), `${yield Auth.MyUserName()}@irfanshadikrishad-anilist-myanimelist(anime)-${getFormattedDate()}.xml`);
967
+ yield writeFile(path, yield xmlContent, "utf8");
968
+ console.log(`Generated XML for MyAnimeList.`);
969
+ open(getDownloadFolderPath());
534
970
  }
535
971
  else {
536
- console.error(`\nNo manga(s) found in any list.`);
972
+ console.log(`\nHey, ${yield Auth.MyUserName()}. Your anime list seems to be empty.`);
537
973
  }
538
974
  }
539
- else {
540
- console.error(`\nSomething went wrong. ${(_d = response === null || response === void 0 ? void 0 : response.errors[0]) === null || _d === void 0 ? void 0 : _d.message}`);
541
- }
542
975
  }
543
- else {
544
- console.error(`\nFailed getting current user Id.`);
545
- }
546
- }
547
- else {
548
- console.error(`\nPlease log in first to delete your lists.`);
549
- }
550
- });
551
- }
552
- function deleteMangaByMangaId(id, title) {
553
- return __awaiter(this, void 0, void 0, function* () {
554
- var _a, _b;
555
- try {
556
- const request = yield fetch(aniListEndpoint, {
557
- method: "POST",
558
- headers: {
559
- "Content-Type": "application/json",
560
- "Authorization": `Bearer ${yield retriveAccessToken()}`,
561
- },
562
- body: JSON.stringify({
563
- query: deleteMangaEntryMutation,
564
- variables: { id },
565
- }),
566
- });
567
- const { data, errors } = yield request.json();
568
- const statusMessage = title ? getTitle(title) : "";
569
- if (request.ok) {
570
- const deleted = (_a = data === null || data === void 0 ? void 0 : data.DeleteMediaListEntry) === null || _a === void 0 ? void 0 : _a.deleted;
571
- console.log(`del ${statusMessage} ${deleted ? "✅" : "❌"}`);
572
- }
573
- else {
574
- console.error(`Error deleting manga. ${(_b = errors === null || errors === void 0 ? void 0 : errors[0]) === null || _b === void 0 ? void 0 : _b.message}`);
976
+ catch (error) {
977
+ console.error(`\nError from MALexport. ${error.message}`);
575
978
  }
576
- }
577
- catch (error) {
578
- console.error(`Error deleting manga. ${id} ${error instanceof Error ? error.message : error}`);
579
- }
580
- });
581
- }
582
- function getUpcomingAnimes(count) {
583
- return __awaiter(this, void 0, void 0, function* () {
584
- var _a, _b, _c, _d, _e;
585
- try {
586
- const { nextSeason, nextYear } = getNextSeasonAndYear();
587
- const request = yield fetcher(upcomingAnimesQuery, {
588
- nextSeason,
589
- nextYear,
590
- perPage: count,
591
- });
592
- if (request) {
593
- const upcoming = (_c = (_b = (_a = request === null || request === void 0 ? void 0 : request.data) === null || _a === void 0 ? void 0 : _a.Page) === null || _b === void 0 ? void 0 : _b.media) !== null && _c !== void 0 ? _c : [];
594
- const { selectedAnime } = yield inquirer.prompt([
595
- {
596
- type: "list",
597
- name: "selectedAnime",
598
- message: "Select anime to add to the list:",
599
- choices: upcoming.map((upx, idx) => ({
600
- name: `[${idx + 1}] ${getTitle(upx === null || upx === void 0 ? void 0 : upx.title)}`,
601
- value: upx === null || upx === void 0 ? void 0 : upx.id,
602
- })),
603
- pageSize: 10,
604
- },
605
- ]);
606
- // Where to save
607
- const { selectedListType } = yield inquirer.prompt([
608
- {
609
- type: "list",
610
- name: "selectedListType",
611
- message: "Select the list where you want to save this anime:",
612
- choices: [
613
- { name: "Planning", value: "PLANNING" },
614
- { name: "Watching", value: "CURRENT" },
615
- { name: "Completed", value: "COMPLETED" },
616
- { name: "Paused", value: "PAUSED" },
617
- { name: "Dropped", value: "DROPPED" },
618
- ],
619
- },
620
- ]);
621
- // Lets save to the list now
622
- if (yield isLoggedIn()) {
623
- const query = addAnimeToListMutation;
624
- const variables = { mediaId: selectedAnime, status: selectedListType };
625
- const response = yield fetcher(query, variables);
626
- if (response) {
627
- const saved = (_d = response === null || response === void 0 ? void 0 : response.data) === null || _d === void 0 ? void 0 : _d.SaveMediaListEntry;
628
- console.log(`\nEntry ${saved === null || saved === void 0 ? void 0 : saved.id}. Saved as ${saved === null || saved === void 0 ? void 0 : saved.status}.`);
629
- }
979
+ });
980
+ }
981
+ static exportManga() {
982
+ return __awaiter(this, void 0, void 0, function* () {
983
+ var _a, _b, _c, _d;
984
+ try {
985
+ if (!(yield Auth.isLoggedIn())) {
986
+ console.log(`\nPlease login to use this feature.`);
987
+ return;
988
+ }
989
+ const mangaList = yield fetcher(currentUserMangaList, {
990
+ id: yield Auth.MyUserId(),
991
+ });
992
+ if (mangaList && ((_b = (_a = mangaList === null || mangaList === void 0 ? void 0 : mangaList.data) === null || _a === void 0 ? void 0 : _a.MediaListCollection) === null || _b === void 0 ? void 0 : _b.lists.length) > 0) {
993
+ const lists = (_d = (_c = mangaList === null || mangaList === void 0 ? void 0 : mangaList.data) === null || _c === void 0 ? void 0 : _c.MediaListCollection) === null || _d === void 0 ? void 0 : _d.lists;
994
+ const mediaWithProgress = lists.flatMap((list) => list.entries.map((entry) => {
995
+ var _a, _b, _c;
996
+ return ({
997
+ id: (_a = entry === null || entry === void 0 ? void 0 : entry.media) === null || _a === void 0 ? void 0 : _a.id,
998
+ malId: (_b = entry === null || entry === void 0 ? void 0 : entry.media) === null || _b === void 0 ? void 0 : _b.idMal,
999
+ title: (_c = entry === null || entry === void 0 ? void 0 : entry.media) === null || _c === void 0 ? void 0 : _c.title,
1000
+ private: entry.private,
1001
+ chapters: entry.media.chapters,
1002
+ progress: entry.progress,
1003
+ status: entry === null || entry === void 0 ? void 0 : entry.status,
1004
+ hiddenFromStatusLists: entry.hiddenFromStatusLists,
1005
+ });
1006
+ }));
1007
+ const XMLContent = createMangaListXML(mediaWithProgress);
1008
+ const path = join(getDownloadFolderPath(), `${yield Auth.MyUserName()}@irfanshadikrishad-anilist-myanimelist(manga)-${getFormattedDate()}.xml`);
1009
+ yield writeFile(path, yield XMLContent, "utf8");
1010
+ console.log(`Generated XML for MyAnimeList.`);
1011
+ open(getDownloadFolderPath());
630
1012
  }
631
1013
  else {
632
- console.error(`\nPlease log in first to use this feature.`);
1014
+ console.log(`\nHey, ${yield Auth.MyUserName()}. Your anime list seems to be empty.`);
633
1015
  }
634
1016
  }
635
- else {
636
- console.error(`\nSomething went wrong. ${(_e = request === null || request === void 0 ? void 0 : request.errors[0]) === null || _e === void 0 ? void 0 : _e.message}`);
1017
+ catch (error) {
1018
+ console.error(`\nError from MALexport. ${error.message}`);
637
1019
  }
638
- }
639
- catch (error) {
640
- console.error(`\nError getting upcoming animes. ${error.message}`);
641
- }
642
- });
1020
+ });
1021
+ }
643
1022
  }
644
- export { deleteAnimeCollection, deleteMangaCollection, getPopular, getTrending, getUpcomingAnimes, loggedInUsersAnimeLists, loggedInUsersMangaLists, };
1023
+ export { AniList, MyAnimeList };