|
|
4019d63f3b
|
Created example config and added development config to gitignore
|
2019-06-28 22:39:24 +02:00 |
|
|
|
91dcfaccb9
|
Rewrote posting request controller to handle body parameters and use new requestsRepository function istead of plexRepository functions
|
2019-06-28 22:31:52 +02:00 |
|
|
|
270a259cee
|
Request list also gets and returns total pages
|
2019-06-28 21:51:43 +02:00 |
|
|
|
162d20ae52
|
Submitting requests now use requests repository
|
2019-06-28 21:51:11 +02:00 |
|
|
|
9f1badc1b1
|
Get a request item by id and type
|
2019-06-28 19:21:54 +02:00 |
|
|
|
ac027a97d6
|
Added pagination and removed sort & filtering for requested items
|
2019-06-28 18:50:30 +02:00 |
|
|
|
127db88ded
|
Renamed function name and comment to make for sense. Also deconstruct page from query
|
2019-06-28 18:45:53 +02:00 |
|
|
|
4b07434615
|
Imported configuration with incorrect name
|
2019-06-05 00:05:54 +02:00 |
|
|
|
5d6f2baa34
|
plex hook should have post not get
|
2019-06-05 00:00:31 +02:00 |
|
|
|
1a1a7328a3
|
Map results with total_results before returing. TODO this should be mapped with all wanted list return vars
|
2019-06-04 23:54:39 +02:00 |
|
|
|
b9dec2344e
|
Added timeout to plex requests and include error in error message when unable to search
|
2019-06-04 23:53:54 +02:00 |
|
|
|
476a34fb69
|
Changed the order of execution between getting tmdb movie and searching plex for it. Now we await tmdb movie and then check if exists in plex. This is better when we miss plex request
|
2019-06-04 23:47:10 +02:00 |
|
|
|
e3ed08e8dd
|
Now a plex ip address is dynamically passed into the plexrepository, fetched from the config
|
2019-06-04 23:45:22 +02:00 |
|
|
|
70f6497404
|
All converter function from tmdb to movie, show and person takes optional cast object and maps to response
|
2019-06-04 23:35:21 +02:00 |
|
|
|
99bab3fb73
|
Movie and show can also return credits for a item. Enabled by query parameter credits=true
|
2019-06-04 23:32:38 +02:00 |
|
|
|
e6796aff8b
|
Hotfix 🧯 for returning new poster object variable
|
2019-06-04 21:41:10 +02:00 |
|
|
|
784aa2616a
|
Fetchall gets docstring
|
2018-11-12 01:20:18 +01:00 |
|
|
|
7cb55ce054
|
Fetchall uses promises smarter. Now the utils functions also return promises to be able to nicely chain the steps a request needs to go through. Promise all lets us wait for all items return in the map function. Without the map function would return immidiately and resolve before the map operation completed.
|
2018-11-10 20:26:28 +01:00 |
|
|
|
87eb6de802
|
🔨 test now requests with id in body not in query params.
|
2018-11-10 01:57:19 +01:00 |
|
|
|
840816c930
|
request returns all requested items. Optional sort, query and filter params.
|
2018-11-10 01:50:24 +01:00 |
|
|
|
91d238de7c
|
Request id is now passed as body param. Database default timestamp value changed to epoch time.
|
2018-11-09 22:13:00 +01:00 |
|
|
|
0ac17d3d0a
|
Removed unused const declaration.
|
2018-11-01 00:24:47 +01:00 |
|
|
|
87c76e3f1d
|
Tests now suppoer the new list endpoints. Also updated response for interstellar query (movieInfo).
|
2018-11-01 00:18:54 +01:00 |
|
|
|
e64c4d5d01
|
Lists are now reachable by movie or show / listname. Endpoints added & removed outdated comments.
|
2018-11-01 00:17:51 +01:00 |
|
|
|
22e57c03de
|
Controller for movie and shows. Each have multiple small export functions; one for each list search type
|
2018-11-01 00:16:56 +01:00 |
|
|
|
d80386da40
|
Implementing lists lookups for movie and shows. Add new cachetags for the lists & created a helper function for returning response with convertFunction as parameter.
|
2018-11-01 00:15:49 +01:00 |
|
|
|
e7c66af3f6
|
Merge branch 'master' into api/v2
|
2018-10-30 21:02:47 +01:00 |
|
|
|
8ece7b84c4
|
test configuration also gets plex ip parameter.
|
2018-10-30 20:38:05 +01:00 |
|
|
|
4250b1bd17
|
request endpoint finds type by body not query. Better error handling on what goes wrong if incorrect type or missing body parameter.
|
2018-10-30 20:34:26 +01:00 |
|
|
|
7e46d32e30
|
More unit tests for checking correct definition of movie. Changed some test to match update functions in tmdb.
|
2018-10-30 20:32:55 +01:00 |
|
|
|
5a48158f07
|
Request now happens at /request with id parameter and query for type selection. Only allows movie or show type and is static set in the controller. AddRequest adds tmdb item to database with time of request.
|
2018-10-30 19:20:52 +01:00 |
|
|
|
161a466ab7
|
Rewrote how local plex library is indexed and what it returns. After searching plex the response is separated into three classes by types (movie, show & episode). Plex also has a function for inputing a (tmdb)movie object and searching for matches of name & type in plex. If a match the object matchedInPlex variable is set to true.
|
2018-10-29 21:01:16 +01:00 |
|
|
|
8f5bd44e4d
|
Added endpoint for new plex search.
|
2018-10-29 20:57:22 +01:00 |
|
|
|
5d8869e042
|
Rewrote every function for searching and looking up items from tmdb library. Now there are separate functions for the four categories of search and three for info (multi, movie, show & person). Each function now has its own endpoint and matching controller. Converting tmdb results into a class has been alterted from using three classes; movie, show & person, and each have each their own convertTmdbTo function. Now the structure of the three types are more structured and no longer a single "seasoned" class object.
|
2018-10-29 20:55:18 +01:00 |
|
|
|
90b8ee005e
|
Changed moviedb package to my own fork of it. The old package had vulnerabilities and needed updating.
|
2018-10-29 20:49:21 +01:00 |
|
|
|
1b0525063f
|
New parameter in config and added axios package for new plex connect command.
|
2018-10-29 20:47:57 +01:00 |
|
|
|
41d6bba743
|
v2 endpoints added for clearer intent in endpoints. Two new controller categories; info and search.
|
2018-10-28 12:21:47 +01:00 |
|
|
|
8977a4b195
|
Merge pull request #109 from KevinMidboe/package/upgrade
Changed moviedb node package to my own fork (km-tmdb) with updated to…
|
2018-10-26 01:01:43 +02:00 |
|
|
|
7e0da028de
|
Imported new version of moviedb package
|
2018-10-26 00:59:22 +02:00 |
|
|
|
2250cf2c4b
|
Changed moviedb node package to my own fork (km-tmdb) with updated to vulnerability in the superagent package
|
2018-10-26 00:20:37 +02:00 |
|
|
|
b2bd7b6a1f
|
Update README.md
|
2018-08-27 11:58:16 +02:00 |
|
|
|
a2ad7f5628
|
Removed old content
|
2018-08-27 11:56:28 +02:00 |
|
|
|
f85d31991f
|
Removed versioneye badge
|
2018-08-27 11:54:48 +02:00 |
|
|
|
08dc2153ae
|
Updated build config for codeclimate test reporting.
|
2018-08-26 10:56:50 +02:00 |
|
|
|
bc64e69b3e
|
Fixed syntax error.
|
2018-08-13 00:01:51 +02:00 |
|
|
|
a29bca7361
|
Controller now expects three parameters for posting to addMagnet; magnet, name and tmdb_id.
|
2018-08-12 23:59:26 +02:00 |
|
|
|
d84aa5f173
|
Merge branch 'master' of github.com:KevinMidboe/seasonedShows
|
2018-08-12 23:55:40 +02:00 |
|
|
|
48ebd398bc
|
Changed name values of tables.
|
2018-08-12 23:50:07 +02:00 |
|
|
|
1b95103acd
|
Removed test that caused breaking changes.
|
2018-08-12 23:31:18 +02:00 |
|
|
|
6a1d6687eb
|
Updated gitmodules
|
2018-07-28 19:00:32 +02:00 |
|