Skip to main content

Trigger Happy - micro enterprise service bus (ESB) - a bridge between your internet services

Project description

Automatically share data between popular services you use on the web. And instead of giving your credentials to them, become the owner of yours !

For example a new RSS item is published, django-trigger-happy will be able to automatically create a note on your Evernote account or create a bookmark to your own Readability or Pocket account and so on

https://drone.io/github.com/foxmask/django-th/status.png http://trigger-happy.eu/static/th_esb.png

Description

The goal of this project is to be independant from any other solution like IFTTT, CloudWork or others.

Thus you could host your own solution and manage your own triggers without depending any non-free solution.

With this project you can host triggers for you.

All you need is to have a hosting provider (or simply your own server ;) ) who permits to use a manager of tasks like “cron” and, of course Python.

Requirements

Installation

To get the project up and running, from your virtualenv, do:

git clone https://github.com/foxmask/django-th.git

To install the required modules, do:

pip install -r https://raw.githubusercontent.com/foxmask/django-th/master/requirements.txt

and at least :

cd django-th
python manage.py syncdb
python manage.py runserver

to startup the database

Parameters

As usual you will setup the database parameters.

Important parts are the settings of the available services :

settings.py

add the module django_th to the INSTALLED_APPS

INSTALLED_APPS = (
     ...
     'formtools',
     'django_th',
     'th_rss',
     'django_js_reverse',

then complet with its companion

'pocket',     #if you own your own pocket account
'th_pocket',  #if you own your own pocket account

TH_SERVICES

TH_SERVICES is a list of the services we, like for example,

TH_SERVICES = (
    'th_rss.my_rss.ServiceRss',
    'th_pocket.my_pocket.ServicePocket',
)

If you plan to integrate django_th in an existing project then, to deal with the templates and avoid the TemplateDoesNotExist error you can copy the template in your own templates directory or set the path like this :

import os
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
TEMPLATE_DIRS += (
    BASE_DIR + '/../lib/<python-version>/site-package/django_th/templates/',
)

urls.py

from django.conf.urls import patterns, include, url
from django.contrib import admin

urlpatterns = patterns('',
     # Examples:
     # url(r'^$', 'th.views.home', name='home'),
     # url(r'^blog/', include('blog.urls')),

     url(r'^admin/', include(admin.site.urls)),
     url(r'', include('django_th.urls')),
)

Setting up : Administration

once the module is installed, go to the admin panel and activate the service you want. Currently there are 4 services, RSS, Evernote, Pocket and Readability.

All you can decide here is to tell if the service requires an external authentication or not.

http://foxmask.info/public/trigger_happy/th_admin_pocket_activated.png

Once they are activated….

http://foxmask.info/public/trigger_happy/admin_service_list.png

… User can use them

Usage :

Activating services :

The user activates the service for their own need. If the service requires an external authentication, he will be redirected to the service which will ask him the authorization to acces the user’s account. Once it’s done, goes back to django-trigger-happy to finish and record the “auth token”.

http://foxmask.info/public/trigger_happy/public_services_activated.png

Using the activated services :

a set of 3 pages will ask to the user information that will permit to trigger data from a service “provider” to a service “consummer”.

For example :

  • page 1 : the user gives a RSS feed

  • page 2 : the user gives the name of the notebook where notes will be stored and a tag if he wants

  • page 3 : the user gives a description

Fire the Triggers :

Here are the available management commands :

Available subcommands:

[django_th]
    fire_th
    fire_th_as          #use asyncio
    fire_th_trollius    #use asyncio backported named "trollius" for python 2.7

To start handling the queue of triggers you/your users configured, just set the management commands fire_th in a crontab or any other scheduler solution of your choice.

e.g. :

manage.py fire_th

or if you use python 3.4.x

manage.py fire_th_as

which will use asyncio

Also : Keep in mind to avoid to set a too short duration between 2 run to avoid to be blocked by the externals services (by their rate limitation) you/your users want to reach.

Complete Documentation

http://trigger-happy.readthedocs.org/

Documentation Status

Blog posts :

You can find all details of all existing services of the blog : http://www.foxmask.info/tag/TriggerHappy

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_th-0.10.1.tar.gz (59.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page