开发者

Invoke an additonal action after an event

开发者 https://www.devze.com 2023-02-12 20:26 出处:网络
I\'m wondering if there is a pattern for this problem: I have a ruby webfrontend for CRUD\'ing\' ftp-users. The backend for the webfrontend is a MySQL DB. The webfrontend is strict sepa开发者_运维百科

I'm wondering if there is a pattern for this problem:

I have a ruby webfrontend for CRUD'ing' ftp-users. The backend for the webfrontend is a MySQL DB. The webfrontend is strict sepa开发者_运维百科rated from the daemon and it's auth-backend (proftpd with sql-mysql or mod_auth_file).

After creating a user via the webgui I would like to invoke the bridge to the daemon backend.

Coding this bridge isn't the problem, I don't have an idea how to put everything together without strong coupling (due to switch the proftpd auth backend).

Thank you.


There will be some coupling between your front end and your back end. Assuming you are using a technology like Ruby on Rails for our front end, you can modify your model to do an after_create method that can call some custom ruby code to talk to your proftpd code.

I put my custom ruby code in a rake file in my lib/tasks directory. Depending upon your use case, this can be called from a scheduler (like cron-tab, every hour for maintenance work) or from your model code that represents your user.)

BTW, there is a Chef plugin for proftpd. See http://wiki.opscode.com/display/chef/Home and http://rubyreflector.com/ProFTPD

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号