在事件发生后调用附加操作

发布于 2024-10-18 08:15:11 字数 285 浏览 0 评论 0原文

我想知道这个问题是否有一个模式:

我有一个 ruby​​ webfrontend 用于 CRUD'ing' ftp 用户。 Web 前端的后端是 MySQL 数据库。 Web 前端与守护进程严格分离,它是 auth 后端(带有 sql-mysql 或 mod_auth_file 的 proftpd)。

通过 webgui 创建用户后,我想调用到守护进程后端的桥。

编码这个桥不是问题,我不知道如何在没有强耦合的情况下将所有东西放在一起(由于切换了 proftpd auth 后端)。

谢谢。

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 separated 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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何时共饮酒 2024-10-25 08:15:11

您的前端和后端之间会有一些耦合。假设您在前端使用像 Ruby on Rails 这样的技术,您可以修改您的模型以执行 after_create 方法,该方法可以调用一些自定义 ruby​​ 代码来与您的 proftpd 代码对话。

我将自定义 ruby​​ 代码放入 lib/tasks 目录中的 rake 文件中。根据您的用例,可以从调度程序(例如 cron-tab,每小时进行维护工作)或从代表您的用户的模型代码调用它。)

顺便说一句,有一个用于 proftpd 的 Chef 插件。请参阅 http://wiki.opscode.com/display/chef/Homehttp://rubyreflector.com/ProFTPD

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文