Sharkey/src/queue/processors/http/index.ts

18 lines
454 B
TypeScript
Raw Normal View History

2018-04-02 14:16:13 +03:00
import deliverPost from './deliver-post';
2018-04-01 13:43:26 +03:00
import follow from './follow';
2018-03-31 13:55:00 +03:00
import performActivityPub from './perform-activitypub';
2018-04-02 12:36:47 +03:00
import processInbox from './process-inbox';
2018-03-31 13:55:00 +03:00
import reportGitHubFailure from './report-github-failure';
2018-04-03 11:18:06 +03:00
import unfollow from './unfollow';
2018-03-31 13:55:00 +03:00
const handlers = {
2018-04-02 14:16:13 +03:00
deliverPost,
2018-04-01 13:43:26 +03:00
follow,
2018-03-31 13:55:00 +03:00
performActivityPub,
2018-04-02 12:36:47 +03:00
processInbox,
2018-03-31 13:55:00 +03:00
reportGitHubFailure,
2018-04-03 11:18:06 +03:00
unfollow
2018-03-31 13:55:00 +03:00
};
export default (job, done) => handlers[job.data.type](job, done);