imm: Execute arbitrary actions for each item from RSS/Atom feeds

[ library, program, public-domain, web ] [ Propose Tags ]

Cf README file


[Skip to Readme]

Modules

[Last Documentation]

  • Imm
    • Imm.Callback
    • Imm.Feed
    • Imm.HTTP
    • Imm.Link
    • Imm.Logger
    • Imm.Pretty
    • Imm.XML
  • URI
    • ByteString
      • URI.ByteString.Extended

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.0.0, 0.1.1.0, 0.2.0.0, 0.3.0.0, 0.4.0.0, 0.4.1.0, 0.5.0.0, 0.5.0.1, 0.5.1.0, 0.6.0.0, 0.6.0.1, 0.6.0.2, 0.6.0.3, 1.0.0.0, 1.0.1.0, 1.1.0.0, 1.2.0.0, 1.2.1.0, 1.3.0.0, 1.4.0.0, 1.5.0.0, 1.6.0.0, 1.6.1.0, 1.7.0.0, 1.8.0.0, 1.9.0.0, 1.10.0.0, 2.0.0.0, 2.1.0.0, 2.1.1.0
Dependencies aeson, aeson-pretty, async, atom-conduit (>=0.7), base (>=4.7 && <5), beam-core, beam-sqlite, blaze-html, blaze-markup, bytestring, chronos, co-log, conduit, containers, dhall (>=1.27), directory (>=1.2.3.0), filepath, http-client, http-types, imm, microlens, mime-mail, monad-time, optparse-applicative, parsec, parsers, pipes, pipes-bytestring, pipes-http, prettyprinter, prettyprinter-ansi-terminal, refined (>=0.4.1), relude, rss-conduit (>=0.5.1), safe, safe-exceptions, sqlite-simple, stm, stm-chans, streamly (>=0.7), text, time, timerep (>=2.0.0.0), typed-process, typerep-map, uri-bytestring, xml-conduit (>=1.5), xml-types [details]
License CC0-1.0
Author kamaradclimber, koral
Maintainer mail@cmoreau.info
Category Web
Home page https://github.com/k0ral/imm
Source repo head: git clone git://github.com/k0ral/imm.git
Uploaded by koral at 2021-05-07T13:18:37Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables imm-sendmail, imm-writefile, imm-monolith, imm
Downloads 19064 total (66 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2021-05-07 [all 3 reports]

Readme for imm-2.1.1.0

[back to package description]

imm

Built with nix Build

imm is a program that executes arbitrary callbacks (e.g. sending a mail, or writing a file) for each element of RSS/Atom feeds.

imm is written in Haskell, configured in Dhall. The project includes:

  • a main executable imm that users run directly
  • secondary executables (imm-writefile, imm-sendmail, imm-monolith) meant to be used as callbacks triggered by imm
  • a Haskell library, that exports functions useful to both the main executable and callbacks; the API is documented in Hackage.

Installation

Packaging status

Using nix

This repository is notably a Nix flake that can be installed by running the following command at the root folder:

nix build

Without nix

imm's executables can be installed using cabal-install tool:

cabal install imm

Then, the following runtime dependencies must be installed separately and provided in PATH:

Configuration

Callbacks

Callbacks are configured through the $XDG_CONFIG_HOME/imm/callbacks.dhall file. A commented template file is bundled with the project.

imm will call each callback once per feed item, and will fill its standard input (stdin) with a JSON structure, which schema is described in file schema/imm.json.

Callback process is expected to return 0 in case of success, or any other exit code in case of failure, in which case the standard error output (stderr) will be displayed.

Example use cases

Online feed reader

For the sake of I-want-the-mutt-of-feed-readers zealots, it is possible to turn any mail reader into a feed reader, by having imm send an e-mail with unread elements to an arbitrary address. You can then browse your feeds through your favourite mail reader, and leverage any mail-related tool on your feeds. Bonus points if your mail reader is online as you can now access your feeds from any computer connected to the Internet.

Here is an example configuration:

let Callback : Type =
  { _executable : Text
  , _arguments : List Text
  }

let sendMail =
  { _executable = "imm-sendmail"
  , _arguments = []
  }

let config : List Callback = [ sendMail ]
in config

imm-sendmail does not have a built-in SMTP client, instead it must rely on an external SMTP client program, which is configured in $XDG_CONFIG_HOME/imm/sendmail.dhall (cf example bundled with the project.) imm-sendmail writes the mail bytestring to the standard input of the configured external program.

Offline read-it-later

imm is able to store a local copy of unread elements, to read them later while offline for example.

There are 2 alternate ways of achieving this:

  • using imm-writefile will produce a light HTML file with no stylesheets, no scripts and with links to online resources (images, fonts, ...) that won't be available offline:
    let Callback : Type =
      { _executable : Text
      , _arguments : List Text
      }
    
    let writeFile =
      { _executable = "imm-writefile"
      , _arguments = [ "-d", "/path/to/folder" ]
      }
    
    let config : List Callback = [ writeFile ]
    in config
    
  • using imm-monolith will produce a heavy, self-contained HTML file, with embedded stylesheets, scripts, images and fonts; links to external web pages will still require an internet connection:
    let Callback : Type =
      { _executable : Text
      , _arguments : List Text
      }
    
    let downloadPage =
      { _executable = "imm-monolith"
      , _arguments = [ "-d", "/path/to/folder" ]
      }
    
    let config : List Callback = [ downloadPage ]
    in config
    

Example usage

  • Subscribe to a feed through direct URL:

    imm subscribe http://your.feed.org
    
  • Subscribe to a feed through an alternate link:

    imm subscribe http://your.website.org
    
  • List subscribed feeds:

    imm list
    
  • Show details about a feed:

    imm show 10  # 10 is the index of a subscribed feed, as shown with `imm list`
    
  • Unsubscribe from a feed:

    imm unsubscribe 10  # 10 is the index of a subscribed feed, as shown with `imm list`
    
  • Check for new elements without executing any action:

    imm --read-only run --no-callbacks
    
  • Execute configured callbacks for each new element from all subscribed feeds:

    imm run --all