Commit Graph

421 Commits

Author SHA1 Message Date
2dc22b386d Added endpoints for discover media (either movie or show), getUpcoming movies, nowPlaying (movies or shows), popular (movie or show) and search similar where the type movie/show must be defined 2017-09-03 17:02:02 +02:00
3e12cf10fb Updated tmdb to use the new endpoints 2017-09-03 16:59:52 +02:00
c64f6a861e Merge branch 'master' of github.com:kevinmidboe/seasonedShows into client_features 2017-09-02 23:16:46 +02:00
70b284380f Removed unused console.log 2017-09-02 23:16:24 +02:00
e33e7d8dc7 Removed unsued imports. 2017-09-02 23:15:30 +02:00
a5bb42f175 Merge pull request #20 from KevinMidboe/api_bugfixing
Api bugfixing and changed value of filter for tmdb search
2017-09-02 22:54:09 +02:00
dacd44a8f5 Changed the value of the filter to be vote_count >= 80 or popularity > 18 2017-09-02 22:53:04 +02:00
84a897da6e Added popularity and vote_count to movie and show object and added a new check for name and title of movie 2017-09-02 22:51:49 +02:00
d5479be563 Merge pull request #19 from KevinMidboe/api_bugfixing
Api bugfixing
2017-09-02 21:15:36 +02:00
849bc4aa5e Merge pull request #18 from KevinMidboe/app_style_update
App style update
2017-09-02 21:13:43 +02:00
17dd66e9ac Fixed a bug where if a seach query did not pass anything back when checking existance in plex, then you would get a 404 message. 2017-09-02 21:12:38 +02:00
8149c8f732 Added date_added for plex added date. 2017-09-02 20:50:19 +02:00
8652a0ee0f Rewrote for more general use. 2017-09-02 20:49:50 +02:00
101dc7d570 Changed the filter cutoff to be based on, if the show/movie has popularity over 2, vote_count over 20 and has a defined release_date/first_air_date. Also changed so that it now uses the new convertTmdbToSeaonsed insted of the old (convertTmdbToMovie) 2017-09-02 20:49:09 +02:00
3bf646483d Renamed file. Now converts to both movie and show. Also added more data that is saved to the object. 2017-09-02 18:13:51 +02:00
622e89ea50 Changed import name from convertPlexToMovie -> convertPlexToSeasoned and changed from map function to reduce to be able to filter only movies and shows to be parsed. 2017-09-02 18:13:08 +02:00
b4a005da42 Changed the name of convertPlexToMovie -> convertPlexToSeasoned 2017-09-02 18:11:59 +02:00
1a858d09bb Created a new shows class that only holds relevant information for shows. 2017-09-02 18:10:16 +02:00
a4fe5cc635 Made this a singular movie object that now only holds relevant information for movies. 2017-09-02 18:09:43 +02:00
a82dc1ae78 Added requestRep again 2017-09-02 16:36:54 +02:00
ebe09390d2 Removed unused css loaders 2017-09-02 16:32:57 +02:00
d4fdf6bdcf Updated babel node packages 2017-09-02 16:32:35 +02:00
72c4a43d2e Also has a lot of inline css, but not the search type buttons have function, but not feedback. 2017-09-02 16:30:42 +02:00
d77a4c6d9e Now it is a little messy with lots of css inline, but will clean and comment. Has now a working UI, needs more 404 handling of items. 2017-09-02 16:30:02 +02:00
e33840f1db Commented out unused elements. 2017-09-02 16:03:43 +02:00
bd3d8f385b Added link to font-awesome and google font api. Also set the margin: 0 for body. 2017-08-31 13:16:06 +02:00
5706c02a5d Updated much of the surrounding styling for the request page, still need to ble cleaned. 2017-08-31 13:14:57 +02:00
ee019f5674 Now with new styling, still need to do cleanup, but added a big bulk of the grutt. 2017-08-31 13:13:50 +02:00
56405e54f9 Downgraded from sqlite3 to sqlite because of connection function error. 2017-08-23 10:26:23 +02:00
daa1915203 Merge pull request #17 from KevinMidboe/filestructure_cleanup
Filestructure cleanup
2017-08-14 22:50:27 +02:00
ea97a0b4af Moved all python related scripts to app directory 2017-08-14 22:42:48 +02:00
d2bed84ecb Moved conf folder to seasoned_api 2017-08-14 22:42:24 +02:00
b8d01fcf1c Changed filename for moveSeasoned to include dir 2017-08-14 22:33:28 +02:00
47aa638fd8 Moved eveything related to the api to a seperate folder seasoned_api. 2017-08-06 16:45:02 +02:00
f53ab55d96 Merge pull request #16 from KevinMidboe/request_ui
Request ui
2017-08-06 09:26:22 +02:00
20a7cb0ba1 Added yarn lock files 2017-08-06 09:23:48 +02:00
10da9874fc Added yarn error log 2017-08-06 09:22:26 +02:00
bc4eff795e Added quotes to poster url 2017-08-06 09:19:39 +02:00
82add07e00 Font that is not yet in use 2017-08-05 17:27:01 +02:00
e5cb80afc8 Mostly unused style file 2017-08-05 17:26:40 +02:00
891b7ecb28 Added CSS loaders to webpack.config 2017-08-05 17:24:08 +02:00
292922c06c Added webfontloader and css-loader to package.json 2017-08-05 17:23:45 +02:00
9265b469c4 Added style to the elements of the html elements 2017-08-05 17:06:26 +02:00
c892755759 Created function for creating a HTML object that is returned to the caller. 2017-08-05 17:05:15 +02:00
d2c456305a Added style to background and main object 2017-08-05 17:04:44 +02:00
66b9c8c3db Updated webpack version 2017-08-05 17:02:38 +02:00
fbf49e4cd9 Updated to use sqlite3 instead of sqlite in api 2017-07-29 13:21:25 +02:00
a436f79770 Merge pull request #15 from KevinMidboe/submit_request
Submit request
2017-07-17 17:17:38 +02:00
6b5a2341bf Class file that creates and returns objects for the mail sender in a single place. 2017-07-16 13:47:49 +02:00
30d26d82c3 Added nodemailer to send email of the requested movie 2017-07-16 13:47:06 +02:00