Skip to content
Merged
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
36 changes: 29 additions & 7 deletions trakt/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
import os
import sys
import time
from collections import namedtuple
from datetime import datetime, timedelta, timezone
from functools import wraps
from json import JSONDecodeError
from typing import NamedTuple
from urllib.parse import urljoin

import requests
Expand Down Expand Up @@ -362,12 +362,34 @@ def init(*args, **kwargs):
return auth_method.get(AUTH_METHOD, PIN_AUTH)(*args, **kwargs)


Airs = namedtuple('Airs', ['day', 'time', 'timezone'])
Alias = namedtuple('Alias', ['title', 'country'])
Genre = namedtuple('Genre', ['name', 'slug'])
Comment = namedtuple('Comment', ['id', 'parent_id', 'created_at', 'comment',
'spoiler', 'review', 'replies', 'user',
'updated_at', 'likes', 'user_rating'])
class Airs(NamedTuple):
day: str
time: str
timezone: str


class Alias(NamedTuple):
title: str
country: str


class Genre(NamedTuple):
name: str
slug: str


class Comment(NamedTuple):
id: str
parent_id: str
created_at: str
comment: str
spoiler: str
review: str
replies: str
user: str
updated_at: str
likes: str
user_rating: str


def _validate_token(s):
Expand Down
31 changes: 29 additions & 2 deletions trakt/mixins.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@
__author__ = 'Jon Nappi, Elan Ruusamäe'


def data_class_factory(data_class):
"""
A Mixin for inheriting @dataclass or NamedTuple, via composition rather inheritance.
"""
class DataClassMixinClass:
def __init__(self, **kwargs):
self.data = data_class(**kwargs)

def __getattr__(self, item):
return getattr(self.data, item)

return DataClassMixinClass


DataClassMixin = data_class_factory


class IdsMixin:
"""
Provides Mixin to translate "ids" array
Expand All @@ -14,8 +31,10 @@ class IdsMixin:

__ids = ['imdb', 'slug', 'tmdb', 'trakt']

def __init__(self):
self._ids = {}
def __init__(self, ids=None):
if ids is None:
ids = {}
self._ids = ids

@property
def ids(self):
Expand Down Expand Up @@ -51,3 +70,11 @@ def tvdb(self):
@property
def tvrage(self):
return self._ids.get('tvrage', None)

@property
def slug(self):
return self._ids.get('slug', None)

@slug.setter
def slug(self, value):
self._ids['slug'] = value
19 changes: 14 additions & 5 deletions trakt/movies.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
"""Interfaces to all of the Movie objects offered by the Trakt.tv API"""
from collections import namedtuple
from typing import NamedTuple

from trakt.core import Alias, Comment, Genre, delete, get
from trakt.mixins import IdsMixin
Expand All @@ -16,8 +16,13 @@
'trending_movies', 'updated_movies', 'Release', 'Movie',
'Translation']

Translation = namedtuple('Translation', ['title', 'overview', 'tagline',
'language'])

# FIXME: same symbol in tv module
class Translation(NamedTuple):
title: str
overview: str
tagline: str
language: str


@delete
Expand Down Expand Up @@ -76,8 +81,12 @@ def updated_movies(timestamp=None):
yield to_ret


Release = namedtuple('Release', ['country', 'certification', 'release_date',
'note', 'release_type'])
class Release(NamedTuple):
country: str
certification: str
release_date: str
note: str
release_type: str


class Movie(IdsMixin):
Expand Down
8 changes: 6 additions & 2 deletions trakt/tv.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""Interfaces to all of the TV objects offered by the Trakt.tv API"""
from collections import namedtuple
from datetime import datetime, timedelta
from typing import NamedTuple
from urllib.parse import urlencode

from trakt.core import Airs, Alias, Comment, Genre, delete, get
Expand All @@ -22,7 +22,11 @@
'TVSeason', 'Translation']


Translation = namedtuple('Translation', ['title', 'overview', 'language'])
# FIXME: same symbol in movie module
class Translation(NamedTuple):
title: str
overview: str
language: str


@delete
Expand Down
45 changes: 28 additions & 17 deletions trakt/users.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# -*- coding: utf-8 -*-
"""Interfaces to all of the User objects offered by the Trakt.tv API"""
from collections import namedtuple
from typing import Any, NamedTuple

from trakt.core import delete, get, post
from trakt.mixins import IdsMixin
from trakt.mixins import DataClassMixin, IdsMixin
from trakt.movies import Movie
from trakt.people import Person
from trakt.tv import TVEpisode, TVSeason, TVShow
Expand All @@ -14,8 +14,10 @@
'get_user_settings', 'unfollow']


class Request(namedtuple('Request', ['id', 'requested_at', 'user'])):
__slots__ = ()
class Request(NamedTuple):
id: int
user: Any
requested_at: str

@post
def approve(self):
Expand Down Expand Up @@ -62,28 +64,37 @@ def unfollow(user_name):
yield 'users/{username}/follow'.format(username=slugify(user_name))


class UserList(namedtuple('UserList', ['name', 'description', 'privacy',
'share_link', 'type', 'display_numbers',
'allow_comments', 'sort_by',
'sort_how', 'created_at',
'updated_at', 'item_count',
'comment_count', 'likes', 'ids',
'user', 'creator']), IdsMixin):
class UserListTuple(NamedTuple):
name: str
description: str
privacy: str
share_link: str
type: str
display_numbers: bool
allow_comments: bool
sort_by: str
sort_how: str
created_at: str
updated_at: str
item_count: int
comment_count: int
likes: int
user: Any
creator: str


class UserList(DataClassMixin(UserListTuple), IdsMixin):
"""A list created by a Trakt.tv :class:`User`"""

def __init__(self, *args, ids=None, **kwargs):
super().__init__()
def __init__(self, ids=None, **kwargs):
super().__init__(**kwargs)
self._ids = ids
self._items = list()

def __iter__(self):
"""Iterate over the items in this user list"""
return self._items.__iter__()

@property
def slug(self):
return self._ids.get('slug', None)

@classmethod
@post
def create(cls, name, creator, description=None, privacy='private',
Expand Down