Compare commits
14 Commits
1a083deb54
...
0.1.7
Author | SHA1 | Date | |
---|---|---|---|
f3a1536953 | |||
dc01aa314c | |||
baed9a4a67 | |||
0e00120778 | |||
697692c277 | |||
3e82677c2c | |||
b81549e5a6 | |||
fd806df0a9 | |||
26f85dd412 | |||
4d9c54a116 | |||
068e568ec6 | |||
4e6f910e74 | |||
b39f19f03a | |||
0475d39c6c |
5
.gitignore
vendored
5
.gitignore
vendored
@ -29,4 +29,7 @@ package.json.md5
|
|||||||
package-lock.json
|
package-lock.json
|
||||||
.idea
|
.idea
|
||||||
.env
|
.env
|
||||||
environment.go
|
environment.go
|
||||||
|
|
||||||
|
# REST (http files)
|
||||||
|
http-client.private.env.json
|
||||||
|
@ -202,7 +202,7 @@ func (a *App) AniListSearch(query string) any {
|
|||||||
perPage
|
perPage
|
||||||
}
|
}
|
||||||
media (search: $search, type: $listType) {
|
media (search: $search, type: $listType) {
|
||||||
id
|
id
|
||||||
idMal
|
idMal
|
||||||
title {
|
title {
|
||||||
romaji
|
romaji
|
||||||
@ -415,8 +415,8 @@ func (a *App) AniListUpdateEntry(updateBody AniListUpdateVariables) AniListGetSi
|
|||||||
}{
|
}{
|
||||||
Query: `
|
Query: `
|
||||||
mutation(
|
mutation(
|
||||||
$mediaId:Int,
|
$mediaId:Int,
|
||||||
$progress:Int,
|
$progress:Int,
|
||||||
$status:MediaListStatus,
|
$status:MediaListStatus,
|
||||||
$score:Float,
|
$score:Float,
|
||||||
$repeat:Int,
|
$repeat:Int,
|
||||||
@ -425,15 +425,15 @@ func (a *App) AniListUpdateEntry(updateBody AniListUpdateVariables) AniListGetSi
|
|||||||
$completedAt:FuzzyDateInput,
|
$completedAt:FuzzyDateInput,
|
||||||
){
|
){
|
||||||
SaveMediaListEntry(
|
SaveMediaListEntry(
|
||||||
mediaId:$mediaId,
|
mediaId:$mediaId,
|
||||||
progress:$progress,
|
progress:$progress,
|
||||||
status:$status,
|
status:$status,
|
||||||
score:$score,
|
score:$score,
|
||||||
repeat:$repeat,
|
repeat:$repeat,
|
||||||
notes:$notes,
|
notes:$notes,
|
||||||
startedAt:$startedAt
|
startedAt:$startedAt
|
||||||
completedAt:$completedAt
|
completedAt:$completedAt
|
||||||
){
|
){
|
||||||
id
|
id
|
||||||
mediaId
|
mediaId
|
||||||
userId
|
userId
|
||||||
@ -528,7 +528,7 @@ func (a *App) AniListDeleteEntry(mediaListId int) DeleteAniListReturn {
|
|||||||
){
|
){
|
||||||
DeleteMediaListEntry(
|
DeleteMediaListEntry(
|
||||||
id:$id,
|
id:$id,
|
||||||
){
|
){
|
||||||
deleted
|
deleted
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -25,6 +25,7 @@ body:graphql {
|
|||||||
media {
|
media {
|
||||||
id
|
id
|
||||||
idMal
|
idMal
|
||||||
|
genres
|
||||||
tags {
|
tags {
|
||||||
id
|
id
|
||||||
name
|
name
|
||||||
|
@ -481,10 +481,10 @@
|
|||||||
data-input-counter-decrement="quantity-input"
|
data-input-counter-decrement="quantity-input"
|
||||||
on:click={() =>
|
on:click={() =>
|
||||||
(currentAniListAnime.data.MediaList.progress -= 1)}
|
(currentAniListAnime.data.MediaList.progress -= 1)}
|
||||||
class="bg-gray-100 dark:bg-gray-700 dark:hover:bg-gray-600 dark:border-gray-600 hover:bg-gray-200 border border-gray-300 rounded-s-lg p-3 h-11 focus:ring-gray-100 dark:focus:ring-gray-700 focus:ring-2 focus:outline-none"
|
class="bg-gray-700 hover:bg-gray-600 border-gray-600 border rounded-s-lg p-3 h-11 focus:ring-gray-700 focus:ring-2 focus:outline-none"
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
class="w-3 h-3 text-gray-900 dark:text-white"
|
class="w-3 h-3 text-white"
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
fill="none"
|
fill="none"
|
||||||
@ -531,10 +531,10 @@
|
|||||||
data-input-counter-increment="quantity-input"
|
data-input-counter-increment="quantity-input"
|
||||||
on:click={() =>
|
on:click={() =>
|
||||||
(currentAniListAnime.data.MediaList.progress += 1)}
|
(currentAniListAnime.data.MediaList.progress += 1)}
|
||||||
class="bg-gray-100 dark:bg-gray-700 dark:hover:bg-gray-600 dark:border-gray-600 hover:bg-gray-200 border border-gray-300 rounded-e-lg p-3 h-11 focus:ring-gray-100 dark:focus:ring-gray-700 focus:ring-2 focus:outline-none"
|
class="bg-gray-700 hover:bg-gray-600 border-gray-600 border rounded-e-lg p-3 h-11 focus:ring-gray-700 focus:ring-2 focus:outline-none"
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
class="w-3 h-3 text-gray-900 dark:text-white"
|
class="w-3 h-3 text-white"
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
fill="none"
|
fill="none"
|
||||||
@ -565,25 +565,7 @@
|
|||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
|
||||||
<label
|
|
||||||
for="status"
|
|
||||||
class="text-left block mb-2 text-sm font-medium text-gray-900 dark:text-white"
|
|
||||||
>Status</label
|
|
||||||
>
|
|
||||||
<select
|
|
||||||
id="status"
|
|
||||||
name="status"
|
|
||||||
class="border text-sm rounded-lg
|
|
||||||
block p-2.5 bg-gray-700 border-gray-600 placeholder-gray-400
|
|
||||||
text-white focus:ring-blue-500 focus:border-blue-500"
|
|
||||||
bind:value={startingAnilistStatusOption}
|
|
||||||
>
|
|
||||||
{#each statusOptions as option}
|
|
||||||
<option value={option}>{option.aniList}</option>
|
|
||||||
{/each}
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="flex flex-col md:flex-row md:pl-10 md:pr-10 pt-5 pb-5 justify-center md:gap-x-16 lg:gap-x-36"
|
class="flex flex-col md:flex-row md:pl-10 md:pr-10 pt-5 pb-5 justify-center md:gap-x-16 lg:gap-x-36"
|
||||||
@ -671,8 +653,8 @@
|
|||||||
disabled={isSubmitting}
|
disabled={isSubmitting}
|
||||||
id="sync-button"
|
id="sync-button"
|
||||||
class="text-white {$submitSuccess
|
class="text-white {$submitSuccess
|
||||||
? 'bg-green-600 dark:bg-green-600 hover:bg-green-700 dark:hover:bg-green-700 focus:ring-4 focus:ring-green-800 dark:focus:ring-green-800'
|
? 'bg-green-600 hover:bg-green-700 focus:ring-4 focus:ring-green-800'
|
||||||
: 'bg-blue-600 dark:bg-blue-600 hover:bg-blue-700 dark:hover:bg-blue-700 focus:ring-4 focus:ring-blue-800 dark:focus:ring-blue-800'} font-medium rounded-lg text-sm px-5 py-2.5 me-2 mb-2 focus:outline-none"
|
: 'bg-blue-600 hover:bg-blue-700 focus:ring-4 focus:ring-blue-800'} font-medium rounded-lg text-sm px-5 py-2.5 me-2 mb-2 focus:outline-none"
|
||||||
type="submit"
|
type="submit"
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
@ -699,8 +681,8 @@
|
|||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
class="text-white bg-gray-800 border border-gray-600 focus:outline-none hover:bg-gray-700 focus:ring-4
|
class="text-white bg-gray-800 border border-gray-600 focus:outline-none hover:bg-gray-700 focus:ring-4
|
||||||
focus:ring-gray-700 font-medium rounded-lg text-sm px-5 py-2.5 me-2 mb-2 dark:bg-gray-800 dark:text-white
|
focus:ring-gray-700 font-medium rounded-lg text-sm px-5 py-2.5 me-2 mb-2
|
||||||
dark:border-gray-600 dark:hover:bg-gray-700 dark:hover:border-gray-600 dark:focus:ring-gray-700"
|
hover:border-gray-600"
|
||||||
on:click={async () => {
|
on:click={async () => {
|
||||||
await CheckIfAniListLoggedInAndLoadWatchList();
|
await CheckIfAniListLoggedInAndLoadWatchList();
|
||||||
return push("/");
|
return push("/");
|
||||||
@ -720,8 +702,8 @@
|
|||||||
disabled={isSubmitting}
|
disabled={isSubmitting}
|
||||||
id="delete-button"
|
id="delete-button"
|
||||||
class="text-white bg-red-700 {$submitSuccess
|
class="text-white bg-red-700 {$submitSuccess
|
||||||
? 'bg-green-600 dark:bg-green-600 hover:bg-green-700 dark:hover:bg-green-700 focus:ring-4 focus:ring-green-800 dark:focus:ring-green-800'
|
? 'bg-green-600 hover:bg-green-700 focus:ring-4 focus:ring-green-800'
|
||||||
: 'bg-red-600 dark:bg-red-600 hover:bg-red-700 dark:hover:bg-red-700 focus:ring-4 focus:ring-red-800 dark:focus:ring-red-800'} font-medium rounded-lg text-sm px-5 py-2.5 me-2 mb-2 focus:outline-none"
|
: 'bg-red-600 hover:bg-red-700 focus:ring-4 focus:ring-red-800'} font-medium rounded-lg text-sm px-5 py-2.5 me-2 mb-2 focus:outline-none"
|
||||||
on:click={deleteEntries}
|
on:click={deleteEntries}
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
@ -754,8 +736,8 @@
|
|||||||
disabled={isSubmitting}
|
disabled={isSubmitting}
|
||||||
id="sync-button"
|
id="sync-button"
|
||||||
class="text-white {$submitSuccess
|
class="text-white {$submitSuccess
|
||||||
? 'bg-green-600 dark:bg-green-600 hover:bg-green-700 dark:hover:bg-green-700 focus:ring-4 focus:ring-green-800 dark:focus:ring-green-800'
|
? 'bg-green-600 hover:bg-green-700 focus:ring-4 focus:ring-green-800'
|
||||||
: 'bg-blue-600 dark:bg-blue-600 hover:bg-blue-700 dark:hover:bg-blue-700 focus:ring-4 focus:ring-blue-800 dark:focus:ring-blue-800'} font-medium rounded-lg text-sm px-5 py-2.5 me-2 mb-2 focus:outline-none"
|
: 'bg-blue-600 hover:bg-blue-700 focus:ring-4 focus:ring-blue-800'} font-medium rounded-lg text-sm px-5 py-2.5 me-2 mb-2 focus:outline-none"
|
||||||
type="submit"
|
type="submit"
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
@ -782,8 +764,8 @@
|
|||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
class="text-white bg-gray-800 border border-gray-600 focus:outline-none hover:bg-gray-700 focus:ring-4
|
class="text-white bg-gray-800 border border-gray-600 focus:outline-none hover:bg-gray-700 focus:ring-4
|
||||||
focus:ring-gray-700 font-medium rounded-lg text-sm px-5 py-2.5 me-2 mb-2 dark:bg-gray-800 dark:text-white
|
focus:ring-gray-700 font-medium rounded-lg text-sm px-5 py-2.5 me-2 mb-2
|
||||||
dark:border-gray-600 dark:hover:bg-gray-700 dark:hover:border-gray-600 dark:focus:ring-gray-700"
|
hover:border-gray-600"
|
||||||
on:click={async () => {
|
on:click={async () => {
|
||||||
await CheckIfAniListLoggedInAndLoadWatchList();
|
await CheckIfAniListLoggedInAndLoadWatchList();
|
||||||
return push("/");
|
return push("/");
|
||||||
|
@ -50,19 +50,19 @@
|
|||||||
function getFocusRingClass(color: Button["color"]): string {
|
function getFocusRingClass(color: Button["color"]): string {
|
||||||
switch (color) {
|
switch (color) {
|
||||||
case "primary":
|
case "primary":
|
||||||
return "focus:ring-2 focus:ring-primary-500 dark:focus:ring-primary-400";
|
return "focus:ring-2 focus:ring-primary-400";
|
||||||
case "blue":
|
case "blue":
|
||||||
return "focus:ring-2 focus:ring-blue-500 dark:focus:ring-blue-400";
|
return "focus:ring-2 focus:ring-blue-400";
|
||||||
case "red":
|
case "red":
|
||||||
return "focus:ring-2 focus:ring-red-500 dark:focus:ring-red-400";
|
return "focus:ring-2 focus:ring-red-400";
|
||||||
case "green":
|
case "green":
|
||||||
return "focus:ring-2 focus:ring-green-500 dark:focus:ring-green-400";
|
return "focus:ring-2 focus:ring-green-400";
|
||||||
case "yellow":
|
case "yellow":
|
||||||
return "focus:ring-2 focus:ring-yellow-500 dark:focus:ring-yellow-400";
|
return "focus:ring-2 focus:ring-yellow-400";
|
||||||
case "purple":
|
case "purple":
|
||||||
return "focus:ring-2 focus:ring-purple-500 dark:focus:ring-purple-400";
|
return "focus:ring-2 focus:ring-purple-400";
|
||||||
case "slate":
|
case "slate":
|
||||||
return "focus:ring-2 focus:ring-slate-500 dark:focus:ring-slate-400";
|
return "focus:ring-2 focus:ring-slate-400";
|
||||||
default:
|
default:
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
@ -71,19 +71,19 @@
|
|||||||
function getRangeBackgroundClass(color: Button["color"]): string {
|
function getRangeBackgroundClass(color: Button["color"]): string {
|
||||||
switch (color) {
|
switch (color) {
|
||||||
case "primary":
|
case "primary":
|
||||||
return "bg-primary-100 dark:bg-primary-900";
|
return "bg-primary-900";
|
||||||
case "blue":
|
case "blue":
|
||||||
return "bg-blue-100 dark:bg-blue-900";
|
return "bg-blue-900";
|
||||||
case "red":
|
case "red":
|
||||||
return "bg-red-100 dark:bg-red-900";
|
return "bg-red-900";
|
||||||
case "green":
|
case "green":
|
||||||
return "bg-green-100 dark:bg-green-900";
|
return "bg-green-900";
|
||||||
case "yellow":
|
case "yellow":
|
||||||
return "bg-yellow-100 dark:bg-yellow-900";
|
return "bg-yellow-900";
|
||||||
case "purple":
|
case "purple":
|
||||||
return "bg-purple-100 dark:bg-purple-900";
|
return "bg-purple-900";
|
||||||
case "slate":
|
case "slate":
|
||||||
return "bg-slate-100 dark:bg-slate-900";
|
return "bg-slate-900";
|
||||||
default:
|
default:
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
@ -297,7 +297,7 @@
|
|||||||
<input
|
<input
|
||||||
bind:this={inputElement}
|
bind:this={inputElement}
|
||||||
type="text"
|
type="text"
|
||||||
class="w-full px-4 py-3 text-sm border rounded-md focus:outline-none dark:bg-gray-700 dark:text-white dark:border-gray-600 {getFocusRingClass(
|
class="w-full px-4 py-3 text-sm border rounded-md focus:outline-none bg-gray-700 text-white border-gray-600 {getFocusRingClass(
|
||||||
color,
|
color,
|
||||||
)} {inputClass}"
|
)} {inputClass}"
|
||||||
{placeholder}
|
{placeholder}
|
||||||
@ -313,13 +313,13 @@
|
|||||||
/>
|
/>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
class="absolute inset-y-0 right-0 flex items-center px-3 text-gray-500 dark:text-gray-400 focus:outline-none"
|
class="absolute inset-y-0 right-0 flex items-center px-3 text-gray-400 focus:outline-none"
|
||||||
on:click={() => (isOpen = !isOpen)}
|
on:click={() => (isOpen = !isOpen)}
|
||||||
{disabled}
|
{disabled}
|
||||||
aria-label={isOpen ? "Close date picker" : "Open date picker"}
|
aria-label={isOpen ? "Close date picker" : "Open date picker"}
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
class="w-4 h-4 text-gray-500 dark:text-gray-400"
|
class="w-4 h-4 text-gray-400"
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
fill="currentColor"
|
fill="currentColor"
|
||||||
@ -339,14 +339,14 @@
|
|||||||
id="datepicker-dropdown"
|
id="datepicker-dropdown"
|
||||||
class="
|
class="
|
||||||
{inline ? '' : 'absolute z-10 mt-1'}
|
{inline ? '' : 'absolute z-10 mt-1'}
|
||||||
bg-white dark:bg-gray-800 rounded-md shadow-lg"
|
bg-gray-800 rounded-md shadow-lg"
|
||||||
transition:fade={{ duration: 100 }}
|
transition:fade={{ duration: 100 }}
|
||||||
role="dialog"
|
role="dialog"
|
||||||
aria-label="Calendar"
|
aria-label="Calendar"
|
||||||
>
|
>
|
||||||
<div class="p-4" role="application">
|
<div class="p-4" role="application">
|
||||||
{#if title}
|
{#if title}
|
||||||
<h2 class="text-lg font-semibold mb-4 dark:text-white">
|
<h2 class="text-lg font-semibold mb-4 text-white">
|
||||||
{title}
|
{title}
|
||||||
</h2>
|
</h2>
|
||||||
{/if}
|
{/if}
|
||||||
@ -358,7 +358,7 @@
|
|||||||
aria-label="Previous month"
|
aria-label="Previous month"
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
class="w-3 h-3 rtl:rotate-180 text-white dark:text-white"
|
class="w-3 h-3 rtl:rotate-180 text-white"
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
fill="none"
|
fill="none"
|
||||||
@ -373,7 +373,7 @@
|
|||||||
>
|
>
|
||||||
</Button>
|
</Button>
|
||||||
<h3
|
<h3
|
||||||
class="text-lg font-semibold dark:text-white"
|
class="text-lg font-semibold text-white"
|
||||||
aria-live="polite"
|
aria-live="polite"
|
||||||
>
|
>
|
||||||
{currentMonth.toLocaleString(locale, {
|
{currentMonth.toLocaleString(locale, {
|
||||||
@ -388,7 +388,7 @@
|
|||||||
aria-label="Next month"
|
aria-label="Next month"
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
class="w-3 h-3 rtl:rotate-180 text-white dark:text-white"
|
class="w-3 h-3 rtl:rotate-180 text-white"
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
fill="none"
|
fill="none"
|
||||||
@ -406,7 +406,7 @@
|
|||||||
<div class="grid grid-cols-7 gap-1" role="grid">
|
<div class="grid grid-cols-7 gap-1" role="grid">
|
||||||
{#each weekdays as day}
|
{#each weekdays as day}
|
||||||
<div
|
<div
|
||||||
class="text-center text-sm font-medium text-gray-500 dark:text-gray-400"
|
class="text-center text-sm font-medium text-gray-400"
|
||||||
role="columnheader"
|
role="columnheader"
|
||||||
>
|
>
|
||||||
{day}
|
{day}
|
||||||
@ -418,7 +418,7 @@
|
|||||||
size="sm"
|
size="sm"
|
||||||
class="w-full h-8 {day.getMonth() !==
|
class="w-full h-8 {day.getMonth() !==
|
||||||
currentMonth.getMonth()
|
currentMonth.getMonth()
|
||||||
? 'text-gray-300 dark:text-gray-600'
|
? 'text-gray-600'
|
||||||
: ''} {isToday(day)
|
: ''} {isToday(day)
|
||||||
? 'font-bold'
|
? 'font-bold'
|
||||||
: ''} {isInRange(day)
|
: ''} {isInRange(day)
|
||||||
|
6
go.mod
6
go.mod
@ -1,11 +1,11 @@
|
|||||||
module AniTrack
|
module AniTrack
|
||||||
|
|
||||||
go 1.24
|
go 1.24.0
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/99designs/keyring v1.2.2
|
github.com/99designs/keyring v1.2.2
|
||||||
github.com/tidwall/gjson v1.18.0
|
github.com/tidwall/gjson v1.18.0
|
||||||
github.com/wailsapp/wails/v2 v2.10.0
|
github.com/wailsapp/wails/v2 v2.10.1
|
||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
@ -39,7 +39,7 @@ require (
|
|||||||
github.com/valyala/fasttemplate v1.2.2 // indirect
|
github.com/valyala/fasttemplate v1.2.2 // indirect
|
||||||
github.com/wailsapp/go-webview2 v1.0.19 // indirect
|
github.com/wailsapp/go-webview2 v1.0.19 // indirect
|
||||||
github.com/wailsapp/mimetype v1.4.1 // indirect
|
github.com/wailsapp/mimetype v1.4.1 // indirect
|
||||||
golang.org/x/crypto v0.33.0 // indirect
|
golang.org/x/crypto v0.35.0 // indirect
|
||||||
golang.org/x/net v0.35.0 // indirect
|
golang.org/x/net v0.35.0 // indirect
|
||||||
golang.org/x/sys v0.30.0 // indirect
|
golang.org/x/sys v0.30.0 // indirect
|
||||||
golang.org/x/term v0.29.0 // indirect
|
golang.org/x/term v0.29.0 // indirect
|
||||||
|
8
go.sum
8
go.sum
@ -83,10 +83,10 @@ github.com/wailsapp/go-webview2 v1.0.19 h1:7U3QcDj1PrBPaxJNCui2k1SkWml+Q5kvFUFyT
|
|||||||
github.com/wailsapp/go-webview2 v1.0.19/go.mod h1:qJmWAmAmaniuKGZPWwne+uor3AHMB5PFhqiK0Bbj8kc=
|
github.com/wailsapp/go-webview2 v1.0.19/go.mod h1:qJmWAmAmaniuKGZPWwne+uor3AHMB5PFhqiK0Bbj8kc=
|
||||||
github.com/wailsapp/mimetype v1.4.1 h1:pQN9ycO7uo4vsUUuPeHEYoUkLVkaRntMnHJxVwYhwHs=
|
github.com/wailsapp/mimetype v1.4.1 h1:pQN9ycO7uo4vsUUuPeHEYoUkLVkaRntMnHJxVwYhwHs=
|
||||||
github.com/wailsapp/mimetype v1.4.1/go.mod h1:9aV5k31bBOv5z6u+QP8TltzvNGJPmNJD4XlAL3U+j3o=
|
github.com/wailsapp/mimetype v1.4.1/go.mod h1:9aV5k31bBOv5z6u+QP8TltzvNGJPmNJD4XlAL3U+j3o=
|
||||||
github.com/wailsapp/wails/v2 v2.10.0 h1:kfpWnfdNL1nXq0PyqAVPPDQY2pxkqcqWab01NGh3a6w=
|
github.com/wailsapp/wails/v2 v2.10.1 h1:QWHvWMXII2nI/nXz77gpPG8P3ehl6zKe+u4su5BWIns=
|
||||||
github.com/wailsapp/wails/v2 v2.10.0/go.mod h1:zrebnFV6MQf9kx8HI4iAv63vsR5v67oS7GTEZ7Pz1TY=
|
github.com/wailsapp/wails/v2 v2.10.1/go.mod h1:zrebnFV6MQf9kx8HI4iAv63vsR5v67oS7GTEZ7Pz1TY=
|
||||||
golang.org/x/crypto v0.33.0 h1:IOBPskki6Lysi0lo9qQvbxiQ+FvsCC/YWOecCHAixus=
|
golang.org/x/crypto v0.35.0 h1:b15kiHdrGCHrP6LvwaQ3c03kgNhhiMgvlhxHQhmg2Xs=
|
||||||
golang.org/x/crypto v0.33.0/go.mod h1:bVdXmD7IV/4GdElGPozy6U7lWdRXA4qyRVGJV57uQ5M=
|
golang.org/x/crypto v0.35.0/go.mod h1:dy7dXNW32cAb/6/PRuTNsix8T+vJAqvuIy5Bli/x0YQ=
|
||||||
golang.org/x/net v0.0.0-20210505024714-0287a6fb4125/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
|
golang.org/x/net v0.0.0-20210505024714-0287a6fb4125/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
|
||||||
golang.org/x/net v0.35.0 h1:T5GQRQb2y08kTAByq9L4/bz8cipCdA8FbRTXewonqY8=
|
golang.org/x/net v0.35.0 h1:T5GQRQb2y08kTAByq9L4/bz8cipCdA8FbRTXewonqY8=
|
||||||
golang.org/x/net v0.35.0/go.mod h1:EglIi67kWsHKlRzzVMUD93VMSWGFOMSZgxFjparz1Qk=
|
golang.org/x/net v0.35.0/go.mod h1:EglIi67kWsHKlRzzVMUD93VMSWGFOMSZgxFjparz1Qk=
|
||||||
|
79
rest/AniTrack/Get Items/AniChart.http
Normal file
79
rest/AniTrack/Get Items/AniChart.http
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
# @name AniChart
|
||||||
|
|
||||||
|
POST https://graphql.anilist.co
|
||||||
|
Accept: applicaton/json
|
||||||
|
X-REQUEST-TYPE: Graphql
|
||||||
|
|
||||||
|
query ($page: Int, $perPage: Int, $airingAt_greater:Int) {
|
||||||
|
Page(page: $page, perPage: $perPage) {
|
||||||
|
pageInfo {
|
||||||
|
total
|
||||||
|
perPage
|
||||||
|
currentPage
|
||||||
|
lastPage
|
||||||
|
hasNextPage
|
||||||
|
}
|
||||||
|
airingSchedules(airingAt_greater:$airingAt_greater){
|
||||||
|
id
|
||||||
|
airingAt
|
||||||
|
timeUntilAiring
|
||||||
|
episode
|
||||||
|
mediaId
|
||||||
|
media{
|
||||||
|
id
|
||||||
|
title{
|
||||||
|
english
|
||||||
|
romaji
|
||||||
|
native
|
||||||
|
}
|
||||||
|
type
|
||||||
|
format
|
||||||
|
status
|
||||||
|
startDate{
|
||||||
|
year
|
||||||
|
month
|
||||||
|
day
|
||||||
|
}
|
||||||
|
endDate{
|
||||||
|
year
|
||||||
|
month
|
||||||
|
day
|
||||||
|
}
|
||||||
|
season
|
||||||
|
seasonYear
|
||||||
|
episodes
|
||||||
|
duration
|
||||||
|
coverImage{
|
||||||
|
medium
|
||||||
|
large
|
||||||
|
color
|
||||||
|
extraLarge
|
||||||
|
}
|
||||||
|
bannerImage
|
||||||
|
genres
|
||||||
|
averageScore
|
||||||
|
meanScore
|
||||||
|
popularity
|
||||||
|
trending
|
||||||
|
favourites
|
||||||
|
tags{
|
||||||
|
id
|
||||||
|
name
|
||||||
|
description
|
||||||
|
category
|
||||||
|
rank
|
||||||
|
isGeneralSpoiler
|
||||||
|
isMediaSpoiler
|
||||||
|
isAdult
|
||||||
|
}
|
||||||
|
isAdult
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
"page": 50,
|
||||||
|
"perPage": 20,
|
||||||
|
"airingAt_greater": 1730260800
|
||||||
|
}
|
83
rest/AniTrack/Get Items/AniList Item.http
Normal file
83
rest/AniTrack/Get Items/AniList Item.http
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
# @name AniList Item
|
||||||
|
|
||||||
|
POST https://graphql.anilist.co
|
||||||
|
Accept: applicaton/json
|
||||||
|
X-REQUEST-TYPE: Graphql
|
||||||
|
Authorization: Bearer {{ANILIST_ACCESS_TOKEN}}
|
||||||
|
|
||||||
|
query ($userId: Int, $mediaId: Int, $listType: MediaType) {
|
||||||
|
MediaList(mediaId: $mediaId, userId: $userId, type: $listType) {
|
||||||
|
id
|
||||||
|
mediaId
|
||||||
|
userId
|
||||||
|
media {
|
||||||
|
id
|
||||||
|
idMal
|
||||||
|
tags {
|
||||||
|
id
|
||||||
|
name
|
||||||
|
description
|
||||||
|
rank
|
||||||
|
isMediaSpoiler
|
||||||
|
isAdult
|
||||||
|
}
|
||||||
|
title {
|
||||||
|
romaji
|
||||||
|
english
|
||||||
|
native
|
||||||
|
}
|
||||||
|
description
|
||||||
|
coverImage {
|
||||||
|
large
|
||||||
|
}
|
||||||
|
season
|
||||||
|
seasonYear
|
||||||
|
status
|
||||||
|
episodes
|
||||||
|
nextAiringEpisode {
|
||||||
|
airingAt
|
||||||
|
timeUntilAiring
|
||||||
|
episode
|
||||||
|
}
|
||||||
|
isAdult
|
||||||
|
}
|
||||||
|
status
|
||||||
|
startedAt {
|
||||||
|
year
|
||||||
|
month
|
||||||
|
day
|
||||||
|
}
|
||||||
|
completedAt {
|
||||||
|
year
|
||||||
|
month
|
||||||
|
day
|
||||||
|
}
|
||||||
|
notes
|
||||||
|
progress
|
||||||
|
score
|
||||||
|
repeat
|
||||||
|
user {
|
||||||
|
id
|
||||||
|
name
|
||||||
|
avatar {
|
||||||
|
large
|
||||||
|
medium
|
||||||
|
}
|
||||||
|
statistics {
|
||||||
|
anime {
|
||||||
|
count
|
||||||
|
statuses {
|
||||||
|
status
|
||||||
|
count
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
"userId": 413504,
|
||||||
|
"mediaId": 170998,
|
||||||
|
"listType": "ANIME"
|
||||||
|
}
|
70
rest/AniTrack/Get Items/AniList MediaList User Query.http
Normal file
70
rest/AniTrack/Get Items/AniList MediaList User Query.http
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
# @name AniList MediaList User Query
|
||||||
|
|
||||||
|
POST https://graphql.anilist.co
|
||||||
|
Accept: applicaton/json
|
||||||
|
X-REQUEST-TYPE: Graphql
|
||||||
|
|
||||||
|
query(
|
||||||
|
$page: Int
|
||||||
|
$perPage: Int
|
||||||
|
$userId: Int
|
||||||
|
$listType: MediaType
|
||||||
|
$status: MediaListStatus
|
||||||
|
) {
|
||||||
|
Page(page: $page, perPage: $perPage) {
|
||||||
|
pageInfo {
|
||||||
|
total
|
||||||
|
perPage
|
||||||
|
currentPage
|
||||||
|
lastPage
|
||||||
|
hasNextPage
|
||||||
|
}
|
||||||
|
mediaList(userId: $userId, type: $listType, status: $status) {
|
||||||
|
id
|
||||||
|
mediaId
|
||||||
|
userId
|
||||||
|
media {
|
||||||
|
id
|
||||||
|
idMal
|
||||||
|
title {
|
||||||
|
romaji
|
||||||
|
english
|
||||||
|
native
|
||||||
|
}
|
||||||
|
description
|
||||||
|
coverImage {
|
||||||
|
large
|
||||||
|
}
|
||||||
|
season
|
||||||
|
seasonYear
|
||||||
|
episodes
|
||||||
|
}
|
||||||
|
status
|
||||||
|
notes
|
||||||
|
progress
|
||||||
|
score
|
||||||
|
repeat
|
||||||
|
user {
|
||||||
|
id
|
||||||
|
statistics {
|
||||||
|
anime {
|
||||||
|
count
|
||||||
|
statuses {
|
||||||
|
status
|
||||||
|
count
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
"page": 1,
|
||||||
|
"perPage": 20,
|
||||||
|
"userId": 413504,
|
||||||
|
"listType": "ANIME",
|
||||||
|
"status": "CURRENT"
|
||||||
|
}
|
44
rest/AniTrack/Get Items/AniList Search.http
Normal file
44
rest/AniTrack/Get Items/AniList Search.http
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
# @name AniList Search
|
||||||
|
|
||||||
|
POST https://graphql.anilist.co
|
||||||
|
Accept: applicaton/json
|
||||||
|
X-REQUEST-TYPE: Graphql
|
||||||
|
|
||||||
|
query ($search: String!, $listType: MediaType) {
|
||||||
|
Page (page: 1, perPage: 100) {
|
||||||
|
pageInfo {
|
||||||
|
total
|
||||||
|
currentPage
|
||||||
|
lastPage
|
||||||
|
hasNextPage
|
||||||
|
perPage
|
||||||
|
}
|
||||||
|
media (search: $search, type: $listType) {
|
||||||
|
id
|
||||||
|
idMal
|
||||||
|
title {
|
||||||
|
romaji
|
||||||
|
english
|
||||||
|
native
|
||||||
|
}
|
||||||
|
description
|
||||||
|
coverImage {
|
||||||
|
large
|
||||||
|
}
|
||||||
|
season
|
||||||
|
seasonYear
|
||||||
|
status
|
||||||
|
episodes
|
||||||
|
nextAiringEpisode{
|
||||||
|
airingAt
|
||||||
|
timeUntilAiring
|
||||||
|
episode
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
"search": "dan-da-dan",
|
||||||
|
"listType": "ANIME"
|
||||||
|
}
|
93
rest/AniTrack/Get Items/GetAniListUserWatchingList.http
Normal file
93
rest/AniTrack/Get Items/GetAniListUserWatchingList.http
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
# @name GetAniListUserWatchList
|
||||||
|
|
||||||
|
POST https://graphql.anilist.co
|
||||||
|
Accept: applicaton/json
|
||||||
|
X-REQUEST-TYPE: Graphql
|
||||||
|
|
||||||
|
query (
|
||||||
|
$page: Int
|
||||||
|
$perPage: Int
|
||||||
|
$userId: Int
|
||||||
|
$listType: MediaType
|
||||||
|
$status: MediaListStatus
|
||||||
|
$sort: [MediaListSort]
|
||||||
|
) {
|
||||||
|
Page(page: $page, perPage: $perPage) {
|
||||||
|
pageInfo {
|
||||||
|
total
|
||||||
|
perPage
|
||||||
|
currentPage
|
||||||
|
lastPage
|
||||||
|
hasNextPage
|
||||||
|
}
|
||||||
|
mediaList(userId: $userId, type: $listType, status: $status, sort: $sort) {
|
||||||
|
id
|
||||||
|
mediaId
|
||||||
|
userId
|
||||||
|
media {
|
||||||
|
id
|
||||||
|
idMal
|
||||||
|
title {
|
||||||
|
romaji
|
||||||
|
english
|
||||||
|
native
|
||||||
|
}
|
||||||
|
description
|
||||||
|
coverImage {
|
||||||
|
large
|
||||||
|
}
|
||||||
|
season
|
||||||
|
seasonYear
|
||||||
|
status
|
||||||
|
episodes
|
||||||
|
nextAiringEpisode {
|
||||||
|
airingAt
|
||||||
|
timeUntilAiring
|
||||||
|
episode
|
||||||
|
}
|
||||||
|
}
|
||||||
|
status
|
||||||
|
startedAt {
|
||||||
|
year
|
||||||
|
month
|
||||||
|
day
|
||||||
|
}
|
||||||
|
completedAt {
|
||||||
|
year
|
||||||
|
month
|
||||||
|
day
|
||||||
|
}
|
||||||
|
notes
|
||||||
|
progress
|
||||||
|
score
|
||||||
|
repeat
|
||||||
|
user {
|
||||||
|
id
|
||||||
|
name
|
||||||
|
avatar {
|
||||||
|
large
|
||||||
|
medium
|
||||||
|
}
|
||||||
|
statistics {
|
||||||
|
anime {
|
||||||
|
count
|
||||||
|
statuses {
|
||||||
|
status
|
||||||
|
count
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
"page": 1,
|
||||||
|
"perPage": 20,
|
||||||
|
"userId": 413504,
|
||||||
|
"listType": "ANIME",
|
||||||
|
"status": "CURRENT",
|
||||||
|
"sort": "UPDATED_TIME_DESC"
|
||||||
|
}
|
3
rest/AniTrack/GetAuthorizationToken.http
Normal file
3
rest/AniTrack/GetAuthorizationToken.http
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# @name GetAuthorizationToken
|
||||||
|
|
||||||
|
GET https://anilist.co/api/v2/oauth/authorize?client_id={{ANILIST_APP_ID}}&redirect_uri=http://localhost:6734/callback&response_type=code
|
11
rest/AniTrack/Load AniList Oauth Page.http
Normal file
11
rest/AniTrack/Load AniList Oauth Page.http
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
# @name Load AniList Oauth Token
|
||||||
|
|
||||||
|
POST https://anilist.co/api/v2/oauth/token
|
||||||
|
Content-Type: application/x-www-form-urlencoded
|
||||||
|
Accept: application/json
|
||||||
|
|
||||||
|
grant_type=authorization_code
|
||||||
|
client_id={{ANILIST_APP_ID}}
|
||||||
|
client_secret={{ANILIST_SECRET_ID}}
|
||||||
|
redirect_uri=http://localhost:6734/callback
|
||||||
|
code={{ANILIST_CODE}}
|
76
rest/AniTrack/Set Items/AniList Change Episode Watched.http
Normal file
76
rest/AniTrack/Set Items/AniList Change Episode Watched.http
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
# @name AniList Change Episode Watched
|
||||||
|
|
||||||
|
POST https://graphql.anilist.co
|
||||||
|
Content-Type: applicaton/json
|
||||||
|
Accept: applicaton/json
|
||||||
|
X-REQUEST-TYPE: Graphql
|
||||||
|
Authorization: Bearer {{ANILIST_ACCESS_TOKEN}}
|
||||||
|
|
||||||
|
mutation($mediaId:Int, $progress:Int, $status:MediaListStatus){
|
||||||
|
SaveMediaListEntry(mediaId:$mediaId, progress:$progress, status:$status){
|
||||||
|
id
|
||||||
|
mediaId
|
||||||
|
userId
|
||||||
|
media {
|
||||||
|
id
|
||||||
|
idMal
|
||||||
|
title {
|
||||||
|
romaji
|
||||||
|
english
|
||||||
|
native
|
||||||
|
}
|
||||||
|
description
|
||||||
|
coverImage {
|
||||||
|
large
|
||||||
|
}
|
||||||
|
season
|
||||||
|
seasonYear
|
||||||
|
status
|
||||||
|
episodes
|
||||||
|
nextAiringEpisode {
|
||||||
|
airingAt
|
||||||
|
timeUntilAiring
|
||||||
|
episode
|
||||||
|
}
|
||||||
|
isAdult
|
||||||
|
}
|
||||||
|
status
|
||||||
|
startedAt{
|
||||||
|
year
|
||||||
|
month
|
||||||
|
day
|
||||||
|
}
|
||||||
|
completedAt{
|
||||||
|
year
|
||||||
|
month
|
||||||
|
day
|
||||||
|
}
|
||||||
|
notes
|
||||||
|
progress
|
||||||
|
score
|
||||||
|
repeat
|
||||||
|
user {
|
||||||
|
id
|
||||||
|
name
|
||||||
|
avatar{
|
||||||
|
large
|
||||||
|
medium
|
||||||
|
}
|
||||||
|
statistics{
|
||||||
|
anime{
|
||||||
|
count
|
||||||
|
statuses{
|
||||||
|
status
|
||||||
|
count
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
"mediaId": 169417,
|
||||||
|
"progress": 12,
|
||||||
|
"status":"COMPLETED"
|
||||||
|
}
|
19
rest/AniTrack/Set Items/AniList Change Status.http
Normal file
19
rest/AniTrack/Set Items/AniList Change Status.http
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
# @name AniList Change Status
|
||||||
|
|
||||||
|
POST https://graphql.anilist.co
|
||||||
|
Content-Type: applicaton/json
|
||||||
|
Accept: applicaton/json
|
||||||
|
X-REQUEST-TYPE: Graphql
|
||||||
|
Authorization: Bearer {{ANILIST_ACCESS_TOKEN}}
|
||||||
|
|
||||||
|
mutation($mediaId:Int, $status:MediaListStatus){
|
||||||
|
SaveMediaListEntry(mediaId:$mediaId, status:$status){
|
||||||
|
id
|
||||||
|
status
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
"mediaId": 1,
|
||||||
|
"status": "CURRENT"
|
||||||
|
}
|
65
rest/AniTrack/Set Items/Change Episode Count.http
Normal file
65
rest/AniTrack/Set Items/Change Episode Count.http
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
# @name AniList Change Count
|
||||||
|
|
||||||
|
POST https://graphql.anilist.co
|
||||||
|
Content-Type: applicaton/json
|
||||||
|
Accept: applicaton/json
|
||||||
|
X-REQUEST-TYPE: Graphql
|
||||||
|
Authorization: Bearer {{ANILIST_ACCESS_TOKEN}}
|
||||||
|
|
||||||
|
mutation (
|
||||||
|
$mediaId: Int
|
||||||
|
$progress: Int
|
||||||
|
$status: MediaListStatus
|
||||||
|
$score: Float
|
||||||
|
$repeat: Int
|
||||||
|
$notes: String
|
||||||
|
$startedAt: FuzzyDateInput
|
||||||
|
$completedAt: FuzzyDateInput
|
||||||
|
) {
|
||||||
|
SaveMediaListEntry(
|
||||||
|
mediaId: $mediaId
|
||||||
|
progress: $progress
|
||||||
|
status: $status
|
||||||
|
score: $score
|
||||||
|
repeat: $repeat
|
||||||
|
notes: $notes
|
||||||
|
startedAt: $startedAt
|
||||||
|
completedAt: $completedAt
|
||||||
|
) {
|
||||||
|
mediaId
|
||||||
|
progress
|
||||||
|
status
|
||||||
|
score
|
||||||
|
repeat
|
||||||
|
notes
|
||||||
|
startedAt {
|
||||||
|
year
|
||||||
|
month
|
||||||
|
day
|
||||||
|
}
|
||||||
|
completedAt {
|
||||||
|
year
|
||||||
|
month
|
||||||
|
day
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
"mediaId": 170998,
|
||||||
|
"progress": 5,
|
||||||
|
"status": "CURRENT",
|
||||||
|
"score": 9.0,
|
||||||
|
"repeat": 0,
|
||||||
|
"notes": ",malSync::eyJ1IjoiaHR0cHM6Ly93d3cuY3J1bmNoeXJvbGwuY29tL3Nlcmllcy9HVkRIWDg1Wk4vI3NlYXNvbj1HNjNWQzJHUUsiLCJwIjoiIn0=::",
|
||||||
|
"startedAt": {
|
||||||
|
"year": 2024,
|
||||||
|
"month": 7,
|
||||||
|
"day": 10
|
||||||
|
},
|
||||||
|
"completedAt": {
|
||||||
|
"year": 0,
|
||||||
|
"month": 0,
|
||||||
|
"day": 0
|
||||||
|
}
|
||||||
|
}
|
17
rest/AniTrack/Set Items/Delete Media.http
Normal file
17
rest/AniTrack/Set Items/Delete Media.http
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# @name AniList Delete Media
|
||||||
|
|
||||||
|
POST https://graphql.anilist.co
|
||||||
|
Content-Type: applicaton/json
|
||||||
|
Accept: applicaton/json
|
||||||
|
X-REQUEST-TYPE: Graphql
|
||||||
|
Authorization: Bearer {{ANILIST_ACCESS_TOKEN}}
|
||||||
|
|
||||||
|
mutation ($id: Int) {
|
||||||
|
DeleteMediaListEntry(id: $id) {
|
||||||
|
deleted
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
"id": 430978266
|
||||||
|
}
|
6
rest/MAL/Get AnimeList.http
Normal file
6
rest/MAL/Get AnimeList.http
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# @name Get AnimeList
|
||||||
|
|
||||||
|
GET https://api.myanimelist.net/v2/users/{{MAL_USER}}/animelist?fields=list_status&status=watching&limit=1000
|
||||||
|
Content-Type application/x-www-form-urlencoded
|
||||||
|
Accept: application/json
|
||||||
|
Authorization: Bearer {{MAL_ACCESS_TOKEN}}
|
12
rest/MAL/Get Authorization.http
Normal file
12
rest/MAL/Get Authorization.http
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
# @name Get Authorization
|
||||||
|
|
||||||
|
POST https://myanimelist.net/v1/oauth2/token
|
||||||
|
Content-Type: application/x-www-form-urlencoded
|
||||||
|
Accept: application/json
|
||||||
|
|
||||||
|
grant_type=authorization_code&
|
||||||
|
client_id={{MAL_CLIENT_ID}}&
|
||||||
|
client_secret={{MAL_CLIENT_SECRET}}&
|
||||||
|
redirect_uri=http://localhost:6734/callback&
|
||||||
|
code={{MAL_CODE}}&
|
||||||
|
code_verifier={{MAL_VERIFIER}}
|
5
rest/MAL/Get Single Anime.http
Normal file
5
rest/MAL/Get Single Anime.http
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# @name Get Single Anime
|
||||||
|
|
||||||
|
GET https://api.myanimelist.net/v2/anime/57380?fields=id,title,main_picture,alternative_titles,start_date,end_date,synopsis,mean,rank,popularity,num_list_users,num_scoring_users,nsfw,genres,created_at,updated_at,media_type,status,my_list_status,num_episodes,start_season,broadcast,source,average_episode_duration,rating,pictures,background,related_anime,recommendations,studios,statistics
|
||||||
|
Accept: application/json
|
||||||
|
Authorization: Bearer {{MAL_ACCESS_TOKEN}}
|
5
rest/MAL/MAL Oauth Page.http
Normal file
5
rest/MAL/MAL Oauth Page.http
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# @name MAL Oauth Page
|
||||||
|
|
||||||
|
GET https://myanimelist.net/v1/oauth2/authorize?response_type=code&client_id={{MAL_CLIENT_ID}}&redirect_uri={{MAL_CALLBACK_URI}}
|
||||||
|
cookie MALSESSIONID=5ad688aafb78239bfd84752752ce193f; MALHLOGSESSID=632f67c3955267b4e57fc3d74b373ebb
|
||||||
|
Accept: application/json
|
8
rest/MAL/Update Anime Status.http
Normal file
8
rest/MAL/Update Anime Status.http
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
# @name Update Anime Status
|
||||||
|
|
||||||
|
PATCH https://api.myanimelist.net/v2/anime/50205/my_list_status
|
||||||
|
Content-Type: application/x-www-form-urlencoded
|
||||||
|
Accept: application/json
|
||||||
|
Authorization: Bearer {{MAL_ACCESS_TOKEN}}
|
||||||
|
|
||||||
|
num_watched_episodes=3
|
3
rest/Simkl/Get Code.http
Normal file
3
rest/Simkl/Get Code.http
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# @name Get Code
|
||||||
|
|
||||||
|
GET https://simkl.com/oauth/authorize?response_type=code&client_id={{SIMKL_CLIENT_ID}}&redirect_uri=http://localhost:6734/callback
|
5
rest/Simkl/Get Items/Get Anime Full Info.http
Normal file
5
rest/Simkl/Get Items/Get Anime Full Info.http
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# @name Get Anime Full Info
|
||||||
|
|
||||||
|
GET https://api.simkl.com/anime/40084?extended=full
|
||||||
|
Accept application/json
|
||||||
|
simkl-api-key {{SIMKL_CLIENT_ID}}
|
7
rest/Simkl/Get Items/GetUser WatchList.http
Normal file
7
rest/Simkl/Get Items/GetUser WatchList.http
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# @name GetUser WatchList
|
||||||
|
|
||||||
|
GET https://api.simkl.com/sync/all-items/anime/
|
||||||
|
Content-Type application/json
|
||||||
|
Accept application/json
|
||||||
|
simkl-api-key {{SIMKL_CLIENT_ID}}
|
||||||
|
Authorization Bearer {{SIMKL_AUTH_TOKEN}}
|
@ -0,0 +1,5 @@
|
|||||||
|
# @name Search By MALID to Get Simkl ID
|
||||||
|
|
||||||
|
GET https://api.simkl.com/search/id?anilist=174576
|
||||||
|
Accept application/json
|
||||||
|
simkl-api-key {{SIMKL_CLIENT_ID}}
|
17
rest/Simkl/Post Items/Delete Entry.http
Normal file
17
rest/Simkl/Post Items/Delete Entry.http
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# @name Delete Entry
|
||||||
|
|
||||||
|
GET https://api.simkl.com/sync/history/remove
|
||||||
|
Content-Type application/json
|
||||||
|
Accept application/json
|
||||||
|
simkl-api-key {{SIMKL_CLIENT_ID}}
|
||||||
|
Authorization Bearer {{SIMKL_AUTH_TOKEN}}
|
||||||
|
|
||||||
|
{
|
||||||
|
"shows": [
|
||||||
|
{
|
||||||
|
"ids": {
|
||||||
|
"simkl": 909121
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
40
rest/Simkl/Post Items/Update Episode.http
Normal file
40
rest/Simkl/Post Items/Update Episode.http
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
# @name Update Episode
|
||||||
|
|
||||||
|
GET https://api.simkl.com/sync/history
|
||||||
|
Content-Type application/json
|
||||||
|
Accept application/json
|
||||||
|
simkl-api-key {{SIMKL_CLIENT_ID}}
|
||||||
|
Authorization Bearer {{SIMKL_AUTH_TOKEN}}
|
||||||
|
|
||||||
|
{
|
||||||
|
"shows": [
|
||||||
|
{
|
||||||
|
"title": "Ramen Aka Neko",
|
||||||
|
"ids": {
|
||||||
|
"simkl": 2307708,
|
||||||
|
"mal": "57325",
|
||||||
|
"anilist": "170998"
|
||||||
|
},
|
||||||
|
"episodes": [
|
||||||
|
{
|
||||||
|
"number": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"number": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"number": 3
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"number": 4
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"number": 5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"number": 6
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
12
rest/Simkl/SimklGetAuthorizationToken.http
Normal file
12
rest/Simkl/SimklGetAuthorizationToken.http
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
# @name SimklGetAuthorizationToken
|
||||||
|
|
||||||
|
POST https://api.simkl.com/oauth/token
|
||||||
|
Content-Type application/json
|
||||||
|
|
||||||
|
{
|
||||||
|
"grant_type": "authorization_code",
|
||||||
|
"client_id": "{{SIMKL_CLIENT_ID}}",
|
||||||
|
"client_secret": "{{SIMKL_CLIENT_SECRET}}",
|
||||||
|
"redirect_uri": "http://localhost:6734/callback",
|
||||||
|
"code": {{SIMKL_CODE}}
|
||||||
|
}
|
19
rest/http-client.env.json
Normal file
19
rest/http-client.env.json
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://raw.githubusercontent.com/mistweaverco/kulala.nvim/main/schemas/http-client.env.schema.json",
|
||||||
|
"dev": {
|
||||||
|
"ANILIST_ACCESS_TOKEN": "",
|
||||||
|
"ANILIST_APP_ID": "",
|
||||||
|
"ANILIST_SECRET": "",
|
||||||
|
"ANILSIT_CODE": "",
|
||||||
|
"MAL_ACCESS_TOKEN": "",
|
||||||
|
"MAL_CLIENT_ID": "",
|
||||||
|
"MAL_CLIENT_SECRET": "",
|
||||||
|
"MAL_CODE": "",
|
||||||
|
"MAL_USER": "",
|
||||||
|
"MAL_VERIFIER": "",
|
||||||
|
"SIMKL_AUTH_TOKEN": "",
|
||||||
|
"SIMKL_CODE": "",
|
||||||
|
"SIMKL_CLIENT_ID": "",
|
||||||
|
"SIMKL_CLIENT_SECRET": ""
|
||||||
|
}
|
||||||
|
}
|
@ -12,6 +12,6 @@
|
|||||||
},
|
},
|
||||||
"info": {
|
"info": {
|
||||||
"productName": "AniTrack",
|
"productName": "AniTrack",
|
||||||
"productVersion": "0.1.6"
|
"productVersion": "0.1.7"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user