miniflux
This module implements the miniflux python library.https://miniflux.app/docs/api.html
Installation
dagger install github.com/levlaz/daggerverse/miniflux@v0.5.0
Entrypoint
Return Type
Miniflux !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
host | String ! | "https://miniflux.app" | url for miniflux instance |
token | Secret ! | - | miniflux API token |
categoryId | String | - | optional, category id for blogroll, if not set will grab all feeds. |
Example
func (m *myModule) example(host string, token *Secret) *Miniflux {
return dag.
Miniflux(host, token)
}
Types
Miniflux 🔗
generateSources() 🔗
Generate sources file for openring
This function grabs all the feeds from a given category in miniflux, grabs the feed_url and then generates a sources.txt file for the purpose of feeding it into the openring module.
Return Type
File !
Example
func (m *myModule) example(host string, token *Secret) *File {
return dag.
Miniflux(host, token).
GenerateSources()
}
generateBlogroll() 🔗
Generate blogroll template
This function uses the Jinja templating library to create a blog roll list that you can embed in your own website based on the blogs you read in miniflux.
Return Type
File !
Example
func (m *myModule) example(host string, token *Secret) *File {
return dag.
Miniflux(host, token).
GenerateBlogroll()
}
generateStarred() 🔗
Generate list of starred posts
This function generates a file of links for your starred posts, by default you will get the 10 most recent.
Return Type
File !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
heading | String ! | "Recent Favorite Blog Posts" | section heading text |
direction | String ! | "desc" | Order to retrieve posts, desc or asc |
limit | Integer ! | 10 | number of posts to return |
Example
func (m *myModule) example(host string, token *Secret, heading string, direction string, limit int) *File {
return dag.
Miniflux(host, token).
GenerateStarred(heading, direction, limit)
}