Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add dataclasses for Watchlist responses #22

Draft
wants to merge 7 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
deprecated~=1.2.13
requests-oauthlib>=1.3
requests>=2.25
dataclasses; python_version<"3.7"
12 changes: 12 additions & 0 deletions tests/mock_data/users.json
Original file line number Diff line number Diff line change
Expand Up @@ -527,11 +527,17 @@
"GET": [
{
"listed_at":"2014-09-01T09:10:11.000Z",
"rank": 1,
"id": 1,
"notes": null,
"type":"movie",
"movie":{"title":"TRON: Legacy","year":2010,"ids":{"trakt":1,"slug":"tron-legacy-2010","imdb":"tt1104001","tmdb":20526}}
},
{
"listed_at":"2014-09-01T09:10:11.000Z",
"rank": 2,
"id": 6,
"notes": null,
"type":"movie",
"movie":{"title":"The Dark Knight","year":2008,"ids":{"trakt":6,"slug":"the-dark-knight-2008","imdb":"tt0468569","tmdb":155}}
}
Expand All @@ -541,11 +547,17 @@
"GET": [
{
"listed_at":"2014-09-01T09:10:11.000Z",
"rank": 1,
"id": 1,
"notes": null,
"type":"show",
"show":{"title":"Breaking Bad","year":2008,"ids":{"trakt":1,"slug":"breaking-bad","tvdb":81189,"imdb":"tt0903747","tmdb":1396,"tvrage":18164}}
},
{
"listed_at":"2014-09-01T09:10:11.000Z",
"rank": 2,
"id": 2,
"notes": null,
"type":"show",
"show":{"title":"The Walking Dead","year":2010,"ids":{"trakt":2,"slug":"the-walking-dead","tvdb":153021,"imdb":"tt1520211","tmdb":1402,"tvrage":null}}
}
Expand Down
44 changes: 37 additions & 7 deletions trakt/users.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# -*- coding: utf-8 -*-
"""Interfaces to all of the User objects offered by the Trakt.tv API"""

from collections import namedtuple
from dataclasses import dataclass
from typing import Any, Optional

from trakt.core import delete, get, post
from trakt.mixins import IdsMixin
Expand All @@ -9,8 +12,11 @@
from trakt.tv import TVEpisode, TVSeason, TVShow
from trakt.utils import slugify

__author__ = 'Jon Nappi'
__all__ = ['User', 'UserList', 'Request', 'follow', 'get_all_requests',
__author__ = 'Jon Nappi, Elan Ruusamäe'
__all__ = ['User', 'UserList',
'WatchlistMovieEntry',
'WatchlistShowEntry',
'Request', 'follow', 'get_all_requests',
'get_user_settings', 'unfollow']


Expand All @@ -26,6 +32,31 @@ def deny(self):
yield 'users/requests/{id}'.format(id=self.id)


@dataclass
class WatchlistEntry:
rank: int
id: int
listed_at: str
notes: Optional[str]
type: Literal["movies", "shows"]


@dataclass
class WatchlistMovieEntry(Movie, WatchlistEntry):
movie: Any

def __post_init__(self):
super().__init__(**self.movie)


@dataclass
class WatchlistShowEntry(TVShow, WatchlistEntry):
show: Any

def __post_init__(self):
super().__init__(**self.show)


@post
def follow(user_name):
"""Follow a user with *user_name*. If the user has a protected profile, the
Expand Down Expand Up @@ -320,9 +351,8 @@ def watchlist_shows(self):
)
self._show_watchlist = []
for show in data:
show_data = show.pop('show')
show_data.update(show)
self._show_watchlist.append(TVShow(**show_data))
wl = WatchlistShowEntry(**show)
self._show_watchlist.append(wl)
yield self._show_watchlist
yield self._show_watchlist

Expand All @@ -337,8 +367,8 @@ def watchlist_movies(self):
)
self._movie_watchlist = []
for movie in data:
mov = movie.pop('movie')
self._movie_watchlist.append(Movie(**mov))
wl = WatchlistMovieEntry(**movie)
self._movie_watchlist.append(wl)
yield self._movie_watchlist
yield self._movie_watchlist

Expand Down