You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
c4ed0c48ba | 2 years ago | |
---|---|---|
bitcoin | 2 years ago | |
config | 6 years ago | |
db | 6 years ago | |
encoder | 6 years ago | |
export | 2 years ago | |
feeds | 2 years ago | |
filters | 2 years ago | |
github | 2 years ago | |
handlers | 2 years ago | |
logging | 6 years ago | |
posts | 2 years ago | |
static | 2 years ago | |
types | 6 years ago | |
utils | 2 years ago | |
.gitignore | 6 years ago | |
Dockerfile | 6 years ago | |
Dockerfile-sqliteweb | 6 years ago | |
LICENSE | 6 years ago | |
Makefile | 6 years ago | |
README.md | 2 years ago | |
api.go | 2 years ago | |
commands.go | 2 years ago | |
config.toml | 6 years ago | |
docker-compose.yml | 6 years ago | |
docker-entrypoint.sh | 6 years ago | |
feed_commands.go | 2 years ago | |
go.mod | 2 years ago | |
go.sum | 2 years ago | |
hugobot.pdf | 2 years ago | |
jobs.go | 2 years ago | |
main.go | 2 years ago | |
parse_test.go | 2 years ago | |
posts_test.go | 2 years ago | |
scheduler.go | 2 years ago | |
server.go | 2 years ago |
README.md
MIRRORED FROM: https://git.blob42.xyz/blob42/hugobot
HUGOBOT
hugobot is a bot that automates the fetching and aggregation of content for Hugo data-driven websites. It has the following features:
Data fetch
- Use the
feeds
table to register feeds that will be fetched periodically. - Currently, it can handle these types of feeds:
RSS
,Github Releases
,Newsletters
- To define your own feed types, implement the
JobHandler
interface (seehandlers/handlers.go
). - Hugobot automatically fetches new posts from the registered feeds.
- The database uses Sqlite for storage. It has
feeds
andposts
tables. - The scheduler can handle an unlimited number of tasks and uses leveldb for caching and resuming jobs.
Hugo export
- Data is automatically exported to the configured Hugo website path.
- It can export data as
markdown
files orjson/toml
data files. - You can customize all fields in the exported files.
- You can define custom output formats by using the
FormatHandler
interface. - You can register custom filters and post-processing for exported posts to prevent altering the raw data stored in the database.
- You can force data export using the CLI.
API
- It uses
gin-gonic
as the web framework. - hugobot also includes a webserver API that can be used with Hugo Data Driven Mode.
- You can insert and query data from the database. This feature is still a work in progress, but you can easily add the missing code on the API side to automate inserting and querying data from the database.
- For example, it can be used to automate the generation of Bitcoin addresses for new articles on bitcointechweekly.com.
Other
- Some commands are available through the CLI (
github.com/urfave/cli
), you can add your own custom commands.
Sqliteweb interface
- See the Docker files for more information.
First time usage
- The first time you run the program, it will automatically generate the database. You can add your feeds to the Sqlite database using your preferred Sqlite GUI.
Contribution
- We welcome pull requests. Our current priority is adding tests.
- Check the TODO section.
TODO:
- Add tests.
- Handle more feed formats:
tweets
,mailing-list emails
... - TLS support in the API (not a priority, can be done with a reverse proxy).