First time here? Check out the FAQ!

threebean's profile - activity

2019-09-20 05:23:45 -0500 received badge Famous Question (source)
2013-02-03 18:31:20 -0500 commented answer Can I write a event-driven plugin for askbot?

Feel free to develop and change those signals, btw. I don't mind updating my code to keep pace. Cheers and thanks again!

2013-02-02 22:26:39 -0500 commented answer Can I write a event-driven plugin for askbot?

This worked very well. Here is my plugin: https://github.com/fedora-infra/askbot-fedmsg

2013-02-02 22:26:21 -0500 received badge Scholar ( source )
2013-02-02 14:28:10 -0500 commented question Can I write a event-driven plugin for askbot?

Just a note: django signals looks like a pretty good mechanism for this: https://docs.djangoproject.com/en/dev/topics/signals/

2013-02-02 14:01:51 -0500 asked a question Can I write a event-driven plugin for askbot?

I'm starting to look into how to get events out of an askbot installation. When a user posts a new question, or gets their question answered, or wins a badge.. (or anything else) ..I want to publish zeromq messages.

Thinking about it (and admittedly not having read much askbot or django code yet) leads me to believe writing some kind of event-based plugin would be the most straightforward. Alternatively, I could patch my hooks right into askbot's code base itself.. but that is not very easily maintainable. As askbot develops, I'll have to change my patches to keep pace (a pain!)

What methods for plugging-in exist? Could I write a layer of django middleware? Could I make a model extension that emits events when attributes on certain models change in certain ways?

Does anybody have any advice on which approaches to look into?