rssdir

package module
v0.0.0-...-1175207 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 16, 2020 License: MIT Imports: 10 Imported by: 0

README

go-rssdir

A Go library for rssdir, a maildir like format for storing rss feeds (on the client side).

License

Still not sure how this should be licensed as it is a forked library with very little change ¯\_(ツ)_/¯

For now it should stay MIT

It is based on go-maildir

Documentation

Overview

The rssdir package provides an interface to rss feeds stored in a Maildir like format.

Maildir mailboxes are designed to be safe for concurrent delivery. This means that at the same time, multiple processes can deliver to the same mailbox. However only one process can receive and read messages stored in the Maildir.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewKey

func NewKey(article *gofeed.Item) (string, error)

NewKey generates a new unique key.

Types

type Delivery

type Delivery struct {
	// contains filtered or unexported fields
}

Delivery represents an ongoing message delivery to the mailbox. It implements the WriteCloser interface. On closing the underlying file is moved/relinked to new.

func (*Delivery) Abort

func (d *Delivery) Abort() error

Abort closes the underlying file and removes it completely.

func (*Delivery) Close

func (d *Delivery) Close() error

Close closes the underlying file and moves it to new.

func (Delivery) Key

func (d Delivery) Key() string

func (*Delivery) Write

func (d *Delivery) Write(p []byte) (int, error)

type Dir

type Dir string

A Dir represents a single directory in a Rssdir.

func (Dir) Clean

func (d Dir) Clean() error

Clean removes old files from tmp and should be run periodically. This does not use access time but modification time for portability reasons.

func (Dir) Copy

func (d Dir) Copy(target Dir, key string) (string, error)

Copy copies the message with key from this Maildir to the target, preserving its flags, returning the newly generated key for the target rssdir or an error.

func (Dir) Create

func (d Dir) Create() error

Create creates the directory structure for a Maildir. If the main directory already exists, it tries to create the subdirectories in there. If an error occurs while creating one of the subdirectories, this function may leave a partially created directory structure.

func (Dir) Dirname

func (d Dir) Dirname() string

func (Dir) Exists

func (d Dir) Exists(key string) (bool, error)

func (Dir) Filename

func (d Dir) Filename(key string) (string, error)

Filename returns the path to the file corresponding to the key.

func (Dir) Flags

func (d Dir) Flags(key string) ([]Flag, error)

Flags returns the flags for a message sorted in ascending order. See the documentation of SetFlags for details.

func (Dir) Keys

func (d Dir) Keys() ([]string, error)

Keys returns a slice of valid keys to access messages by.

func (Dir) NewDelivery

func (d Dir) NewDelivery(article *gofeed.Item) (*Delivery, error)

NewDelivery creates a new Delivery.

func (Dir) Open

func (d Dir) Open(key string) (io.ReadCloser, error)

Open reads a message by key.

func (Dir) Remove

func (d Dir) Remove(key string) error

Remove removes the actual file behind this message.

func (Dir) SetFlags

func (d Dir) SetFlags(key string, flags []Flag) error

SetFlags appends an info section to the filename according to the given flags. This function removes duplicates and sorts the flags, but doesn't check whether they conform with the Maildir specification.

func (Dir) SetInfo

func (d Dir) SetInfo(key, info string) error

Set the info part of the filename. Only use this if you plan on using a non-standard info part.

func (Dir) Unseen

func (d Dir) Unseen() ([]string, error)

Unseen moves messages from new to cur and returns their keys. This means the messages are now known to the application. To find out whether a user has seen a message, use Flags().

func (Dir) UnseenCount

func (d Dir) UnseenCount() (int, error)

UnseenCount returns the number of messages in new without looking at them.

type Flag

type Flag rune
const (
	// The user has resent/forwarded/bounced this message to someone else.
	//	FlagPassed Flag = 'P'
	// The user has replied to this message.
	//	FlagReplied Flag = 'R'
	// The user has viewed this message, though perhaps he didn't read all the
	// way through it.
	FlagSeen Flag = 'S'
	// The user has moved this message to the trash; the trash will be emptied
	// by a later user action.
	FlagTrashed Flag = 'T'
	// The user considers this message a draft; toggled at user discretion.
	//	FlagDraft Flag = 'D'
	// User-defined flag; toggled at user discretion.
	FlagFlagged Flag = 'F'
)

type FlagError

type FlagError struct {
	Info         string // the encountered info section
	Experimental bool   // info section starts with 1
}

A FlagError occurs when a non-standard info section is encountered.

func (*FlagError) Error

func (e *FlagError) Error() string

type KeyError

type KeyError struct {
	Key string // the (invalid) key
	N   int    // number of matches (!= 1)
}

A KeyError occurs when a key matches more or less than one message.

func (*KeyError) Error

func (e *KeyError) Error() string

Directories

Path Synopsis
Package maildirpp implements Maildir++.
Package maildirpp implements Maildir++.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL