First time here? Check out the FAQ!
0

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?

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
threebean's avatar
3
threebean
asked 12 years ago

Comments

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

threebean's avatar threebean (12 years ago)
see more comments

1 Answer

0

We have some signals defined in askbot/models/signals.py and we can add new. We should probably adjust names of those signals and document them. We did not give much thought to naming them properly.

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Evgeny's avatar
13.2k
Evgeny
answered 12 years ago
link

Comments

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

threebean's avatar threebean (12 years ago)

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

threebean's avatar threebean (12 years ago)
see more comments