#iam #sso #oidc #auth #casdoor

casdoor-rust-sdk

Rust client SDK for Casdoor

6 releases (stable)

1.3.0 Sep 27, 2023
1.2.1 Jul 8, 2022
1.1.0 Jul 5, 2022
1.0.1 Jul 4, 2022
0.1.0 Jul 2, 2022

#195 in Authentication

Apache-2.0

22KB
341 lines

casdoor-rust-sdk

GitHub last commit Crates.io Docs CI Discord

This is Casdoor's SDK for Rust, which will allow you to easily connect your application to the Casdoor authentication system without having to implement it from scratch.

Casdoor SDK is very simple to use. We will show you the steps below.

[dependencies]
casdoor-rust-sdk = <latest-version>

Step1. Init SDK

Initialization requires 6 parameters, which are all string type:

Name (in order) Must Description
endpoint Yes Casdoor Server Url, such as http://localhost:8000
client_id Yes Client ID for the Casdoor application
client_secret Yes Client secret for the Casdoor application
certificate Yes x509 certificate content of Application.cert
org_name Yes The name for the Casdoor organization
app_name No The name for the Casdoor application
// init from params.
let app = CasdoorConfig::new(endpoint, client_id, client_secret, certificate, org_name);

// init from toml file, file_path should be absolute path. (recommend)
let conf = CasdoorConfig::from_toml(file_path).unwrap().as_str()).unwrap();

Step2. Get service and use

Now provide two services: CasdoorUserService, CasdoorAuthService

You can create them like:

let user_service = UserService::new(&conf);
let auth_src = AuthService::new(&conf);

Step3. Interact with the sdk services

The SDK support basic operations.

user

  • get_user(name), get one user by user name.
  • get_users(), get all users.
  • get_sorted_users(sorter, limit), get sorted user and limit number of result.
  • get_user_count(is_online), get user count.
  • add_user(User), write user to database.
  • update_user(User), update user info
  • delete_user(User), delete user

auth

  • get_auth_token(code), get the auth token.
  • parse_jwt_token(token), parse jwt token.

Dependencies

~14–29MB
~537K SLoC