@octopod-service/notifier
TypeScript icon, indicating that this package has built-in type declarations

1.0.5 • Public • Published

Notifier for octopod

npm Version

Install

npm install @octopod-service/notifier

Usage

// TypeScript
import * as notifier from '@octopod-service/notifier'
// JavaScript
const notifier = require('@octopod-service/notifier');

const notifierService = new notifier.NotifierService('http://...');

// Set option
notifierService.operations.push({
    type: 'write-file',
    settings: {
        path: '...'
    }
});

notifierService.types['write-file'] = function(type /* : DestinationType*/, data /* : Notification*/, callback /* : () => void*/)
{
    if(!type.settings.path)
    {
        this.error('Error in "write-file"', 'type.settings.path is not defined');
        return callback();
    }

    const retry = () => {
        require('fs').writeFile(type.settings.path, JSON.stringify(data), (e) => {
            if(!e)
                return callback(); // Success!

            this.error('Error in "write-file"', e);
            return setTimetout(() => retry(), type.retryTimeout ? type.retryTimeout : 10000); // If failed, retry later
        })
    }

    retry();
}

notifierService.start();

Call

this.writeToService<Notification>('notifier', 'notify', {
    title: 'title',
    body: 'body\r\nbody.',
    notify: {
        node: this.uid,
        type: this.options.username
    }
}, () => { });

Readme

Keywords

none

Package Sidebar

Install

npm i @octopod-service/notifier

Weekly Downloads

1

Version

1.0.5

License

Unlicense

Last publish

Collaborators

  • adriencastex