PHP code example of cloudflare / authr
1. Go to this page and download the library: Download cloudflare/authr library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
cloudflare / authr example snippets
use Cloudflare\Authr;
class UserController extends Controller
{
/** @var \Cloudflare\AuthrInterface */
private $authr;
...
public function update(Request $req, Response $res, array $args)
{
// get the subject
$subject = $req->getActor();
// get the resource
$resource = $this->getUser($args['id']);
// check permissions!
if (!$this->authr->can($subject, 'update', $resource)) {
throw new HTTPException\Forbidden('Permission denied!');
}
...
}
}