Coder Social home page Coder Social logo

casdoor-php-sdk's Introduction

casdoor-php-sdk

Latest Stable Version Total Downloads Latest Unstable Version License PHP Version Require

Casdoor PHP SDK will allow you to easily connect your application to Casdoor authentication system without having to start from scratch.

Step 1: Composer install casdoor-php-sdk

In your php application directory, run the following command:

composer require casdoor/casdoor-php-sdk

Or use composer.json to add the following code:

{
    "require": {
        "vendor/package": "*",
    }
}

Then run composer install to make it take effect. Create a OauthTest. Php file and import the SDK package.

<?php

namespace Casdoor\Tests;

use PHPUnit\Framework\TestCase;
use Casdoor\Auth\Jwt;
use Casdoor\Auth\Token;
use Casdoor\Auth\User;

class OauthTest extends TestCase
{
  public function xxx(){}
}

Step 2: configure parameters

for more information, see initConfig()

Parameter required description
endpoint Yes The back-end API address of the Casdoor, for example:http://localhost:8000
clientId Yes The client ID of the current application.
clientSecret Yes The client key of the current application.
certificate Yes Public key certificate in x509 format under the certificate module (file format public_key.pem)
organizationName Yes The organization name of the current application configuration.
applicationName Yes The name of the current application.

Reference code:

public function initConfig()
  {
    $endpoint = 'http://127.0.0.1:8000';
    $clientId = 'c64b12723aefb65a88ce';
    $clientSecret = 'c0c9d483a87332751b2564635765d71c9f6a2e83';
    $certificate = file_get_contents(dirname(__FILE__) . '/public_key.pem');
    $organizationName = 'built-in';
    $applicationName = 'testApp';
    User::initConfig($endpoint, $clientId, $clientSecret, $certificate, $organizationName, $applicationName);
  }

Step 3: obtain the user JWT token

after you log on to the logon page, the page is redirected to a link with code and state, such:https://forum.casbin.com?code=xxx&state=yyyy In the sample file, enter code and state, call the testGetOauthToken() method, and parse the jwt token.

public $code = "cc78dc9953ca6ae6ab58";
public $state = "casdoor";
public function testGetOauthToken()
{
    $this->initConfig();
    $token = new Token();
    $accessToken = $token->getOAuthToken($this->code, $this->state);
    $this->assertIsString($accessToken->getToken());
}

The JWT token represents the user's identity and has the right to call relevant APIs.

Step 4: verify and parse the user token

When a user passes in a JWT token, testParseJwtToken function calls the public key to verify the JWT token. If the verification is passed, the Array object is returned, which contains the account information of the user.

public function testParseJwtToken()
{
    $this->initConfig();
    $token = "eyJhxxxx";	// from testGetOauthToken()
    $jwt = new Jwt();
    $result = $jwt->parseJwtToken($token, User::$authConfig);
    $this->assertIsArray();
}

Step 5: update user information

testModifyUser call the application configuration (non-user token) as the update permission to perform CURD operations on user information.

public function testModifyUser()
{
    $this->initConfig();
    $user = new User();

    # Delete User
    $user->name = 'user_hn99qa';
    $response = $user->deleteUser($user);
    $this->assertTrue($response);

    # Add User
    $response = $user->addUser($user);
    $this->assertTrue($response);

    # Update User
    $user->phone = 'phone';
    $user->displayName = 'display name';
    $response = $user->updateUser($user);
    $this->assertTrue($response);
}

Others: User interaction

  • User::getUser() , obtain User information by User name
  • User::getUsers() to obtain information about all users.
  • User::getUserCount() to obtain the current number of users.

casdoor-php-sdk's People

Contributors

basakest avatar hsluoyz avatar i0gan avatar linvery avatar netandreus avatar nomeguy avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

casdoor-php-sdk's Issues

PHP-Casdoor-SDK can't create application

class OauthTest extends TestCase
{
private array $config;

private AuthConfig $auth;

#[PostMapping(path: '/api/system/backend/site/casdoor')]
public function __invoke(): void
{
    $this->config = [
        'endpoint' => 'http://localhost:9501',
        'clientId' => '',
        'clientSecret' => '',
        'jwtPublicKey' => '',
        'organizationName' => '',
        'applicationName' => '',
    ];
    $this->auth = new AuthConfig(...$this->config);
    $app = new Application('', '');
    $app->addApplication($app, $this->auth);
}

}

This is my code, and this is error message.

[CRITICAL] Error: Call to undefined function GuzzleHttp\Psr7\get_message_body_summary() in /opt/www/vendor/gb-hyperf/framework/src/Exception/Handler/GuzzleRequestExceptionHandler.php:38
Stack trace:
#0 /opt/www/vendor/hyperf/exception-handler/src/ExceptionHandlerDispatcher.php(43): Gb\Framework\Exception\Handler\GuzzleRequestExceptionHandler->handle()
casdoor/casdoor#1 /opt/www/vendor/hyperf/http-server/src/Server.php(87): Hyperf\ExceptionHandler\ExceptionHandlerDispatcher->dispatch()
casdoor/casdoor#2 /opt/www/vendor/hyperf/utils/src/SafeCaller.php(29): Hyperf\HttpServer\Server->Hyperf\HttpServer{closure}()
casdoor/casdoor#3 /opt/www/vendor/hyperf/http-server/src/Server.php(90): Hyperf\Utils\SafeCaller->call()
casdoor/casdoor#4 [internal function]: Hyperf\HttpServer\Server->onRequest()
casdoor/casdoor#5 {main}
D02FC2A1E633EC37A405DF95BA9962B3

syntax error, unexpected 'array' in php 7.3.4

Parse error: syntax error, unexpected 'array' (T_ARRAY), expecting function (T_FUNCTION) or const (T_CONST) in E:\service\php\vendor\casdoor\casdoor-php-sdk\src\Auth\User.php on line 289

Remove array's indentifer can solve this problem.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.