New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

github.com/clintjedwards/avail

Package Overview
Dependencies
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/clintjedwards/avail

Source
Go Modules
Version
v1.0.1
Version published
Created
Source

Avail(able)

This package allows the representation of a time frame using common cron syntax and then efficiently check whether a given golang time object exists within that time frame.

The package uses a subset of the extended cron standard: https://en.wikipedia.org/wiki/Cron#CRON_expression

Why

It is sometimes useful to represent certain timeframes using cron expressions.

A great example is an application that may want to schedule employees for work. Representing the case where an employee cannot work every year on their birthday, would be difficult without representing it as some type of customized format (due to the nature that representing infinite time would fill your database needlessly).

Using cron to achieve this allows the representation of situations like above to be compact and easy to parse. Other advantages include that the cron format is well documented and can potentially be represented in a user-friendly frontend component.

How

Avail implements/uses a stripped down version of the cron expression syntax as defined below.

Field           Allowed values  Allowed special characters

Minutes         0-59            * , -
Hours           0-23            * , -
Day of month    1-31            * , -
Month           1-12            * , -
Day of week     0-6             * , -
Year            1970-2100       * , -

Avail accepts a cron expression in the format above, splits it into separate fields, parses it, and generates map backed sets for each field in order to allow speedy checking of value existence.

This data structure allows avail to take a supplied time and check that each of the time's elements exist in the representation of the cron expression.

Usage

Initiate a new avail instance with cron expression. This will parse the cron expression given and return a new Avail object containing your given expression and its parsed terms(each section of the cron expression is called a term).

avail, _ := avail.New("* * * * * *")

Then call able with a specified go time object.

now := time.Now()

fmt.Println(avail.Able(now))
// Output: true

FAQs

Package last updated on 20 Jan 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts