Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Actions ¶
type Actions struct { AddLabel string Category gmail.Category Archive bool Delete bool MarkImportant bool MarkNotImportant bool MarkRead bool MarkNotSpam bool Star bool Forward string }
Actions represents an action associated with a Gmail filter.
type Criteria ¶
Criteria represents the filtering criteria associated with a Gmail filter.
func GenerateCriteria ¶
func GenerateCriteria(crit parser.CriteriaAST) (Criteria, error)
GenerateCriteria translates a rule criteria into an entry that maps directly into Gmail filters.
func (Criteria) ToGmailSearch ¶
ToGmailSearch returns the equivalent query in Gmail search syntax.
type Filter ¶
type Filter struct { // ID is an optional identifier associated with a filter. ID string Action Actions Criteria Criteria }
Filter matches 1:1 a filter created on Gmail.
type Filters ¶
type Filters []Filter
Filters is a list of filters created in Gmail.
func FromRulesWithLimit ¶
FromRulesWithLimit translates rules into entries that map directly into Gmail, but uses a custom size limit.
type FiltersDiff ¶
FiltersDiff contains filters that have been added and removed locally with respect to upstream.
func Diff ¶
func Diff(upstream, local Filters) (FiltersDiff, error)
Diff computes the diff between two lists of filters.
To compute the diff, IDs are ignored, only the contents of the filters are actually considered.
func NewMinimalFiltersDiff ¶
func NewMinimalFiltersDiff(added, removed Filters) FiltersDiff
NewMinimalFiltersDiff creates a new FiltersDiff with reordered filters, where similar added and removed ones are next to each other.
The algorithm used is a quadratic approximation to the otherwise NP-complete travel salesman problem. Hopefully the number of filters is low enough to make this not too slow and the approximation not too bad.
func (FiltersDiff) Empty ¶
func (f FiltersDiff) Empty() bool
Empty returns true if the diff is empty.
func (FiltersDiff) String ¶
func (f FiltersDiff) String() string