Luracast Restler 身份验证
我正在使用 Luracast Restler,并且尝试通过实现 iAuthenticate 接口来实现一些身份验证。
问题是,我的身份验证代码需要查询我的数据库以检索用户私钥。此私钥将始终在 url 请求中提供(经过哈希处理)。
我只想为每个请求打开一个数据库连接,因此我需要将数据库连接变量传递给实现 iAuthenticate 的类以及处理所有请求的其他类。但我不知道如何将变量传递给实现 iAuthenticate 的类。
是否可以?
作为参考,这里是luracast 示例,
请提前谢谢。
I’m using Luracast restler and i’m trying to implement some authentication by implementing iAuthenticate interface.
The thing is, my authentication code needs to query my database to retrieve the user private key. This private key will always be provided in the url request (hashed).
I wanted to open just one database connection to each request, so i need to pass the db connection variable to my class that implements iAuthenticate and to the other classes that handle all the requests. But i can’t figure out how can i pass variables to my class that implements iAuthenticate.
Is it possible?
For reference, here are the luracast examples
thks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对 API 和身份验证类使用单一数据库连接
创建一个名为
config.php
的 php 文件,并将所有数据库信息以及数据库连接和选择放在一起。例如,
在身份验证类和 API 类上使用
require_once
包含此函数,例如(为简单起见,我没有在此处加密密码)您的 API 类可以有一个受保护的方法来查询同一数据库,它可以是使用相同连接返回数据的不同表。为了简单起见,我在这里使用同一张表。
使用
require_once
确保 php 文件在第一次遇到时仅包含一次。即使我们停止使用后者的 auth 类,我们的 api 仍将继续运行假设使用以下 SQL 来创建我们的数据库表
的 index.php
以及具有以下结果
如果您打开
index.php/restricted
在浏览器中输入正确的用户名和密码组合,您将看到以下结果:)Using Single DB Connection for your API and Authentication Classes
Create a php file called
config.php
and place all your db information along with db connection and selection.For example
Include this function using
require_once
on both Authentication class and API class, something like (for simplicity I'm not encrypting the password here)Your API class can have a protected method that query the same db, it can be a different table that return the data using the same connection. For simplicity sake I use the same table here.
Using
require_once
makes sure that the php file is included only once on the first encounter. Even if we stop using the auth class latter our api will keep functioningAssuming that following SQL is used to create our db table
And the index.php with the following
The Result
if you open
index.php/restricted
in the browser and key in the right username and password combination, you will see the following as the result :)想通了!
该行导致输出为 text/html 格式。评论出来后我就可以走了。
Figured it out!
This line was causing the output to be in text/html format. Commented that out and I was good to go.