Create Movie/Series/Episode objects
- Dominant language
- JavaScript
- Stars
- 7
- Forks
- 13
- PR merge metrics
- No merged PRs in 30d
Description
> Dependencies:
>
> - [ ] back-end: Scan filesystem (#19), Load Data from API (#20)
Write a function that accepts the Output of “scan filesystem (#19)” as input, loads additional information from an external API (#20) and combines the data to create an object that includes every necessary data. The structure could look something like
```javascript
{
[{
name: "South Park",
description: "...",
imdbRating: 8.8,
imdbUrl: …,
cover: "/img/cover/southpark.jpg",
fileSytemRoots: [],
…
seasons: [
{
no: 1
started: …,
ended: …,
episodes: [
{
no: 1,
name: …
location: "\\nas1\\..."
descrption: ".."”
imdbRating: …
...
}
]
}
]
}...]
}
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.