5.2.0 • Published 6 years ago

trakt.tv-images v5.2.0

Weekly downloads
309
License
MIT
Repository
github
Last release
6 years ago

Trakt.tv Images

Extends https://github.com/vankasteelj/trakt.tv node module, in order to get images for a given episode/show/movie. Image sources:

  • fanart.tv
  • tmdb (movies only)
  • tvdb (series/episodes only)
  • omdbapi

NOTICE: requires trakt.tv module! Load this plugin directly through trakt.tv module.

Install:

npm install trakt.tv trakt.tv-images --save

Load the plugin:

Trakt = require('trakt.tv');
trakt = new Trakt({
    client_id: <trakt client id>,
    client_secret: <trakt client secret>,
    plugins: {
        images: require('trakt.tv-images')
    },
    options: {
        images: {
            fanartApiKey: <fanart api key>,     // optional
            tvdbApiKey: <tvdb api key>,         // optional
            tmdbApiKey: <tmdb api key>,         // optional
            smallerImages: true                 // reduce image size, save bandwidth. defaults to false.
            cached: true                        // requires trakt.tv-cached
        }
    }
}, true);

Log in with trakt.tv, then call "images":

trakt.images.get({
    tmdb: <a tmdb id>,      // optional, recommended
    imdb: <an imdb id>,     // starts with 'tt' prefix, recommended
    tvdb: <a tvdb id>,      // optional, recommended
    type: 'movie'           // can be 'movie', 'show' or 'episode', person
})
.then(console.log)
.catch(console.log);

Note: the object argument used can be a raw object from trakt api too, like {title:'something', ids:{imdb:'tt000'}}

Example response

Object {
    background: "http://assets.fanart.tv/fanart/tv/121361/showbackground/game-of-thrones-4fd5fa8ed5e1b.jpg"
    poster: "http://thetvdb.com/banners/posters/121361-1.jpg"
}

Combine with trakt.tv-cached

Usage:

let images = await trakt.images.get(movie_object, shouldCache); //default is true

License

The MIT License (MIT) - Copyright (c) 2016 vankasteelj vankasteelj@gmail.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

5.2.0

6 years ago

5.1.1

7 years ago

5.1.0

7 years ago

5.0.0

7 years ago

1.0.0

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago