Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | feed: update `Feed.Validate` | siddharth ravikumar | 2022-11-26 | 1 | -1/+1 |
| | | | | Allow "podcast" schema. | ||||
* | feed: update `Feed.unmarshal` | siddharth ravikumar | 2022-11-26 | 2 | -0/+44 |
| | | | | Add handling to unmarshal 'podcast' feeds. | ||||
* | feed/feed_test.go: TestPodcastUnmarshal: `go fmt` | siddharth ravikumar | 2022-11-26 | 1 | -4/+4 |
| | |||||
* | feed: add `podcastUnmarshal` | siddharth ravikumar | 2022-11-26 | 6 | -0/+90 |
| | |||||
* | feed: fix `go vet` warnings | siddharth ravikumar | 2022-11-25 | 1 | -4/+22 |
| | |||||
* | feed: update Process | siddharth | 2022-04-17 | 1 | -10/+23 |
| | | | | Add capability to filter entries based on title. | ||||
* | feed: update ydlv0.2.3 | siddharth | 2022-04-16 | 1 | -2/+1 |
| | | | | Don't barf out output from the ydl program. | ||||
* | feed: update ydlv0.1.0 | siddharth | 2021-11-29 | 1 | -12/+3 |
| | | | | | | Instead of 'cd'ing into the dumpdir, use the '-o' flag in youtube-dl to specify the directory under which the enttry needs to be downloaded to. | ||||
* | feed: update Feed.processEntry | siddharth | 2021-11-29 | 1 | -0/+2 |
| | | | | Barf to stdout when about to download an entry. | ||||
* | feed: update Feed.Process | siddharth | 2021-11-29 | 1 | -0/+6 |
| | | | | Display number of entries yet to be processed. | ||||
* | feed: flesh out feed.processEntry | siddharth | 2021-11-28 | 1 | -2/+32 |
| | |||||
* | feed: update Process | siddharth | 2021-11-28 | 1 | -3/+4 |
| | | | | | Make a copy of `entry` into `e` in the loop that processes all Entries. Then use `e` instead of `entry`. | ||||
* | feed: fix Validate | siddharth | 2021-11-28 | 1 | -9/+2 |
| | | | | | Don't set YDLPath and DumpDir on Feed in `Validate` function. Set it in the FeedConfig's `validate` function instead. | ||||
* | feed: add Feed.Process | siddharth | 2021-11-28 | 1 | -0/+80 |
| | | | | | | Main function that gets, parses, and downloads entries in the feed. The Feed.processEntry function is a stub for now. | ||||
* | feed: update Feed.Last | siddharth | 2021-11-28 | 1 | -1/+1 |
| | | | | Change type to `int`. | ||||
* | feed: add Feed.Last | siddharth | 2021-11-28 | 1 | -0/+6 |
| | |||||
* | feed: Feed.Object -> Feed.Entries | siddharth | 2021-11-28 | 1 | -17/+23 |
| | | | | | Also refactor nprUnmarshal and youtubeUnmarshal to return []schema.Entry. | ||||
* | feed: update feed | siddharth | 2021-11-28 | 1 | -2/+10 |
| | | | | Add YDLPath to Feed. Set it during Validate(). | ||||
* | feed: add unmarshal | siddharth | 2021-11-27 | 1 | -0/+22 |
| | | | | Unmarshals the feed and sets Feed.Object | ||||
* | feed: add youtubeUnmarshal | siddharth | 2021-11-27 | 1 | -0/+17 |
| | | | | Unmarshler for a YouTube Feed. | ||||
* | feed: add nprUnmarshal | siddharth | 2021-11-27 | 1 | -0/+23 |
| | | | | Unmarshler for a NPR Feed. | ||||
* | feed: add `get` | siddharth | 2021-11-27 | 1 | -0/+28 |
| | | | | HTTP GETs raw feed from Feed.Source | ||||
* | feed: update Feed | siddharth | 2021-11-27 | 1 | -0/+1 |
| | | | | Add `Object` field. | ||||
* | add feed package | siddharth | 2021-11-27 | 1 | -0/+55 |
Move feed type and function to its own package. |