IgnisDa / ryot

Roll your own tracker!
https://ryot.io
GNU General Public License v3.0
1.71k stars 43 forks source link

[FEATURE REQUEST] - Radarr/Sonarr integration #54

Open Nom4 opened 1 year ago

Nom4 commented 1 year ago

Hi, Regarding the exchange on Reddit, i post here an issue as requested to integrate Radarr/Sonarr in the roadmap of ryot. Best regards

IgnisDa commented 12 months ago

@Nom4 Looking into this. What exactly would an integration with Radarr/Sonarr entail?

Nom4 commented 12 months ago

Hi, if i remember (i was not using Ryot until this feature was available), the goal is to integrate Radarr/Sonarr as a media source for monitor watching. Hope i explain well.

IgnisDa commented 12 months ago

I do not think this should be a part of Ryot since it is a media tracker (not monitor). I do not use Radarr/Sonarr myself but I believe the normal flow of using them is Radarr (for monitoring) -> Plex/Jellyfin (for viewing the movie) -> Ryot (for tracking).

Is there any other way you use Radarr/Sonarr?

Nom4 commented 12 months ago

Hi,My workflow is the following :Overseerr > radarr / sonarr > PlexDid you see ryot in this workflow ?Regards Envoyé de mon iPhoneLe 12 juil. 2023 à 18:54, Diptesh Choudhuri @.***> a écrit : I do not think this should be a part of Ryot since it is a media tracker (not monitor). I do not use Radarr/Sonarr myself but I believe the normal flow of using them is Radarr (for monitoring) -> Plex/Jellyfin (for viewing the movie) -> Ryot (for tracking). Is there any other way you use Radarr/Sonarr?

—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you were mentioned.Message ID: @.***>

IgnisDa commented 12 months ago

Yes looks like you use Plex too. I think it would be better to add integration with it, yes?

Nom4 commented 12 months ago

Really good idea !Regards 🙏Envoyé de mon iPhoneLe 12 juil. 2023 à 19:28, Diptesh Choudhuri @.***> a écrit : Yes looks like you use Plex too. I think it would be better to add integration with it, yes?

—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you were mentioned.Message ID: @.***>

IgnisDa commented 12 months ago

Will create a separate issue for Plex/Jellyfin.

IgnisDa commented 12 months ago

Related to #67.

reitenth commented 9 months ago

i would like the ability to add watchlist of movies/tv to radarr/sonarr. right now any time i add something as planning in trakt it auto adds to radarr and sonarr with the use of their "lists." its the big thing keepjng me on trakt for the moment

IgnisDa commented 9 months ago

Are you aware of any open source projects that does something similar? I would like to take a look into their code and see if it is feasible for Ryot.

Moreover can you send me the trakt docs which describe this feature?

reitenth commented 9 months ago

https://wiki.servarr.com/sonarr/supported#customimport https://github.com/noggl/AniPlanrr/

aniplanrr adds shows from anilist to sonarr. they ended up implementing anilist support in sonarr so i dont use this anymore, but it is along the same lines.

IgnisDa commented 9 months ago

I will re-open this issue since it is something Ryot should support. However, I don't plan to work on it since I do not use the *arr services myself.

Maybe someone else (or a future me) can take this up if they feel like it 😝.

MikeBishop commented 6 months ago

If I understand correctly, the Plex integration doesn't send the IDs of the item you're watching, so it needs to be in the watch list already? Integration with arr would fundamentally be a way to seed that list, since the media played by Plex is almost guaranteed to be the same media available in arr.

IgnisDa commented 6 months ago

I have never used Sonarr/Radarr so I don't know what they do. That's why I haven't gotten around to integrating then.

MikeBishop commented 6 months ago

Short version: You populate them with a list of movies (Radarr) and shows (Sonarr) you're interested in, and a collection of download providers to search. They monitor available releases and download them if they see something matching your selections, either something you don't have or something in a better quality than your current version. Ryot won't care about the downloads at all, just the list of movies/shows the user either has or is interested in having.

IgnisDa commented 6 months ago

So basically Ryot will forward the "Watchlist" collection to *arr instances right?

MikeBishop commented 6 months ago

I would think the it would pull anything in the *arr library into the Watchlist collection, but I'm still trying to get Ryot set up well enough to be sure I'm using the correct terminology.

SimplicatedGamesStudio commented 6 months ago

https://www.reddit.com/r/sonarr/comments/13od1ns/custom_list_in_sonarr/

According to the discussions here, syncing lists to *arr needs an endpoint to just send a list of tvdb Ids: [{ "tvdbId": "75837" }, { "tvdbId": "77847" }, { "tvdbId": "78299" }, { "tvdbId": "72756" } ]

IgnisDa commented 6 months ago

Ryot doesn't have tvdb support (it's paid).

darthShadow commented 6 months ago

Not really, it's free for anything with less than $50k in revenue but requires attribution: https://thetvdb.com/api-information

IgnisDa commented 6 months ago

Will look into it.

Though TMdb works fine for me so i doubt I'll add tvdb support.

ertugrullKara commented 6 months ago

https://developer.themoviedb.org/reference/tv-series-external-ids

This looks promising. Sample output: { "id": 1399, "imdb_id": "tt0944947", "freebase_mid": "/m/0524b41", "freebase_id": "/en/game_of_thrones", "tvdb_id": 121361, "tvrage_id": 24493, "wikidata_id": "Q23572", "facebook_id": "GameOfThrones", "instagram_id": "gameofthrones", "twitter_id": "GameOfThrones" }

I don't know how comprehensive their data is, but should be pretty good I'm assuming.