mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-29 16:31:05 +02:00
Origin commit data
------------------
Branch: ni/coolstream
Commit: a633525ba2
Author: TangoCash <eric@loxat.de>
Date: 2019-03-03 (Sun, 03 Mar 2019)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
78 lines
2.3 KiB
C++
78 lines
2.3 KiB
C++
/*
|
|
Copyright (C) 2015 TangoCash
|
|
|
|
License: GPLv2
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation;
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#ifndef __TMDB__
|
|
#define __TMDB__
|
|
|
|
#include <string>
|
|
#include "system/helpers.h"
|
|
|
|
#define TMDB_COVER "/tmp/tmdb.jpg"
|
|
|
|
typedef struct {
|
|
std::string epgtitle;
|
|
std::string poster_path;
|
|
std::string overview;
|
|
std::string original_title;
|
|
std::string release_date;
|
|
std::string vote_average;
|
|
int vote_count;
|
|
int id;
|
|
std::string media_type;
|
|
int result;
|
|
int runtime;
|
|
std::string runtimes;
|
|
std::string genres;
|
|
int episodes;
|
|
int seasons;
|
|
std::string cast;
|
|
}tmdbinfo;
|
|
|
|
class cTmdb
|
|
{
|
|
private:
|
|
tmdbinfo minfo;
|
|
|
|
std::string key; // tmdb api key
|
|
bool GetMovieDetails(std::string lang);
|
|
|
|
public:
|
|
cTmdb();
|
|
~cTmdb();
|
|
static cTmdb* getInstance();
|
|
void setTitle(std::string epgtitle);
|
|
std::string CreateEPGText();
|
|
|
|
std::string getTitle() { return minfo.epgtitle;}
|
|
std::string getOrgTitle() { return minfo.original_title;}
|
|
std::string getReleaseDate() { return minfo.release_date;}
|
|
std::string getDescription() { return minfo.overview;}
|
|
std::string getVote() { return minfo.vote_average;}
|
|
std::string getCast() { return minfo.cast;}
|
|
std::string getCover() { return TMDB_COVER;}
|
|
bool hasCover() { return !minfo.poster_path.empty();}
|
|
bool getBigCover(std::string cover) { return downloadUrl("http://image.tmdb.org/t/p/w342" + minfo.poster_path, cover);}
|
|
bool getSmallCover(std::string cover) { return downloadUrl("http://image.tmdb.org/t/p/w185" + minfo.poster_path, cover);}
|
|
int getResults() { return minfo.result;}
|
|
int getStars() { return (int) (atof(minfo.vote_average.c_str())*10);}
|
|
void cleanup();
|
|
};
|
|
|
|
#endif
|