A hackable news processor and reader.
Go to file
kitzman af0aa6bfc3
-_-
2021-11-16 02:51:36 +02:00
build-aux added autotools (#19) 2021-07-24 13:27:21 +03:00
doc added lieferwelpe (#7) 2021-08-27 02:35:33 +03:00
examples multiple sources feature (#12), updated example 2021-06-30 19:38:03 +03:00
lieferhund -_- 2021-11-16 02:51:36 +02:00
tests added tests (#18) 2021-08-26 16:59:52 +03:00
.gitignore added tests (#18) 2021-08-26 16:59:52 +03:00
AUTHORS added autotools (#19) 2021-07-24 13:27:21 +03:00
COPYING added autotools (#19) 2021-07-24 13:27:21 +03:00
ChangeLog added autotools (#19) 2021-07-24 13:27:21 +03:00
HACKING added autotools (#19) 2021-07-24 13:27:21 +03:00
INSTALL modified INSTALL 2021-08-26 21:08:58 +03:00
LICENSE first commit 2021-06-25 10:59:50 +03:00
Makefile.am added lieferwelpe (#7) 2021-08-27 02:35:33 +03:00
NEWS added autotools (#19) 2021-07-24 13:27:21 +03:00
README added autotools (#19) 2021-07-24 13:27:21 +03:00
README.md added lieferwelpe (#7) 2021-08-27 02:35:33 +03:00
configure.ac added gnutls to configure.ac 2021-08-27 03:50:27 +03:00
guix.scm added autotools (#19) 2021-07-24 13:27:21 +03:00
hall.scm added autotools (#19) 2021-07-24 13:27:21 +03:00
lieferhund.scm version bump 2021-08-26 21:11:35 +03:00
lieferwelpe.scm fixed lieferwelpe bug 2021-11-16 02:28:49 +02:00
pre-inst-env.in added autotools (#19) 2021-07-24 13:27:21 +03:00

README.md

Synopsis

Lieferhund is a (the most?) hackable news-reading utility.

To use it, first make sure you have a configuration file in place - the default location is in $HOME/.config/lieferhund/config.scm. Then, the first step would be to pulling the news from the sources.

lieferhund -x pull
lieferhund -c $CONFIG_FILE -b $DB_FILE -x pull

Next, one can invoke the read command (which is quite basic at this moment), to go through the news:

lieferhund -x read

Supported protocols

Currently, only RSS and Atom feeds are supported, but mailing lists are on their way.

Configuration hacking

An example configuration can be found in examples/.

One just needs to add entries.

The hackability comes into attention, when writing the 'post-hook field in the configuration. A post hook is defined as:

  • #f - no action, just add to the database
  • a lambda, which takes as argument, a list of the form '((config-entry news-items) ...)
  • an exp of the form ('process-each hook-fn), which applies the lambda with the signature (lambda (config-entry item) ...), to each news item, in a sorted manner
  • an exp of the form ('process-each-channel hook-fn), which applies the lambda with the signature (lambda (config-entry news-items) ...), to each channel and its entries
  • ('hook-gen make-hook args ...) applies the hook generator, with the arguments specified (i.e: (hook-gen make-send-mail-to "xxx@yyy.zzz"))
  • ('hook-cons hooks ...) which means that multiple hooks can be combined

There are already 2 hooks already implemented:

  • make-printer-hook - takes no argument, prints each item
  • make-each-script-hook - takes two arguments - a string describing the command, and a list with strings which describe the content of the message, which is written to a temporary file and can be used in the command; to make the process useful, the following string interpolations are defined: ~~CONTENT~~ - the content file, ~~NAME~~ - config entry name, ~~TITLE~~ - item's title, ~~DATE~~ - item's date, ~~DESCRIPTION~~ - the item's description, and ~~OPT(option_name)~~ for accessing a user defined option

To be able to write and use custom hooks, each configuration entry has a field opts, which is an association list.

Additionally, in lieferhund/interpolator.scm, one can find functions that can interpolate different type of information, including the entry options.

Treating your delivery doggo well

lieferhund -x give-treat

The Daemon

If you'd prefer running this as a daemon, there is lieferwelpe.scm, which only periodically pulls and processes the news. This can be used either on a server (in case you wouldn't prefer crontabs), or locally (i.e: send notifications via dbus). The news ofc can be read with the lieferhund.scm tool.

TODOs

For active TODOs, please check the issue tab.

Building and installing

Please the the HACKING, INSTALL.

Eventually, this will be packaged for guix when v1.0 comes out and hopefully, the channel will be merged into the official Guix upstream.