Giter VIP home page Giter VIP logo

casdoor-vue-sdk's Introduction

casdoor-vue-sdk

NPM version NPM download GitHub Actions GitHub Actions Coverage Status Release Discord

This is Casdoor's SDK for js 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.

Noted that this sdk has been applied to casnode, if you still don’t know how to use it after reading README.md, you can refer to it

Installation

# NPM
npm i casdoor-vue-sdk

# Yarn
yarn add casdoor-vue-sdk

Init SDK

Initialization requires 5 parameters, which are all string type:

Name (in order) Must Description
serverUrl Yes your Casdoor server URL
clientId Yes the Client ID of your Casdoor application
appName Yes the name of your Casdoor application
organizationName Yes the name of the Casdoor organization connected with your Casdoor application
redirectPath No the path of the redirect URL for your Casdoor application, will be /callback if not provided

install:

For Vue3:

// in main.js
import Casdoor from 'casdoor-vue-sdk'
const config = {
  serverUrl: "http://localhost:8000",
  clientId: "4262bea2b293539fe45e",
  organizationName: "casbin",
  appName: "app-casnode",
  redirectPath: "/callback",
};
const app = createApp(App)
app.use(Casdoor, config)

For Vue2:

// in main.js
import Casdoor from 'casdoor-vue-sdk'
import VueCompositionAPI from '@vue/composition-api'
const config = {
  serverUrl: "http://localhost:8000",
  clientId: "4262bea2b293539fe45e",
  organizationName: "casbin",
  appName: "app-casnode",
  redirectPath: "/callback",
};
Vue.use(VueCompositionAPI)
Vue.use(Casdoor,config)
new Vue({
  render: h => h(App),
}).$mount('#app')

example:

// in app.vue
<script>
export default {
  name: 'App',
  methods: {
    login() {
      window.location.href = this.getSigninUrl();
    },
    signup() {
      window.location.href = this.getSignupUrl();
    }
  }
}
</script>

If you are using vue3 composition API, since it is inconvenient to obtain the Vue instance in setup(), useCasdoor provided a better way to access the sdk's methods.

<script>
import { useCasdoor } from 'casdoor-vue-sdk';

export default {
  setup() {

    const { getSigninUrl, getSignupUrl } = useCasdoor();

    function login() {
      window.location.href = getSigninUrl();
    }

    function signup() {
      window.location.href = getSignupUrl();
    }

    return {
      login,
      signup
    }
  }
}
</script>

API reference interface

Get sign up url

getSignupUrl()

Return the casdoor url that navigates to the registration screen

Get sign in url

getSigninUrl()

Return the casdoor url that navigates to the login screen

Get user profile page url

getUserProfileUrl(userName, account)

Return the url to navigate to a specific user's casdoor personal page

Get my profile page url

getMyProfileUrl(account)

Sign in

signin(serverUrl, signinPath)

Handle the callback url from casdoor, call the back-end api to complete the login process

Determine whether silent sign-in is being used

isSilentSigninRequired()

We usually use this method to determine if silent login is being used. By default, if the silentSignin parameter is included in the URL and equals one, this method will return true. Of course, you can also use any method you prefer.

silentSignin

silentSignin(onSuccess, onFailure)

First, let's explain the two parameters of this method, which are the callback methods for successful and failed login. Next, I will describe the execution process of this method. We will create a hidden "iframe" element to redirect to the login page for authentication, thereby achieving the effect of silent sign-in.

Q & A

Q1: How to solve "...index.js implicitly has an 'any' type..." error in typescript project?

A1: Add a new declaration (.d.ts) file containing `declare module 'casdoor-vue-sdk'. See it at Shorthand ambient modules

For developer:

use command webpack in the root directory to build the sdk

casdoor-vue-sdk's People

Contributors

devricklin avatar hsluoyz avatar imp2002 avatar jakiuncle avatar nekotoxin avatar selflocking avatar semantic-release-bot avatar skipperq avatar

Stargazers

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

Watchers

 avatar  avatar  avatar

casdoor-vue-sdk's Issues

Best practice

I'm sorry for asking again but I'm just stuck.
With importing Casdoor I have these functions to use:
getSignupUrl(), getSigninUrl(), getUserProfileUrl(), getMyProfileUrl(), signin()

But how to check if the user is logged in? Or the user is not deleted in the mean time.
How to check if the current user is authorized to do something?
Can you please provide a real example? Maybe I can help you with that?
I could upload an easy nuxt 3 project connecting to my demo casdoor

Nuxt 3-> Failed to load resource: the server responded with a status of 504 (Gateway Timeout)

Hi,
I am not sure if I am doing something wrong or there is a bug.
I want to use it with nuxt 3.
I created a filte "casdoor.ts" under plugins folder with following lines of code (modified):

`import Casdoor from 'casdoor-vue-sdk'

const config = {
serverUrl: "https://casdoor.devandy.de",
clientId: "xxx",
organizationName: "xxx",
appName: "xxx",
redirectPath: "/callback",
requireHttpsMetadata: false
};

export default defineNuxtPlugin(async nuxtApp => {
nuxtApp.vueApp.use(Casdoor, config)
})
And under **composables**:import { useCasdoor } from 'casdoor-vue-sdk';

export default {
setup() {

const { getSigninUrl, getSignupUrl } = useCasdoor();

function login() {
  window.location.href = getSigninUrl();
}

function signup() {
  window.location.href = getSignupUrl();
}

return {
  login,
  signup
}

}
}`

But than I got an JavaScript Error: Failed to load resource: the server responded with a status of 504 (Gateway Timeout)
RequestURL: http://localhost:3000/_nuxt/node_modules/.vite/deps/ufo.js?v=dcaeb125

Could not resolve... error after update to latest release

I update to latest release from 3. March and get the error below. Same happens also happens with a fresh yarn install after deleting node_modules

`
✘ [ERROR] Could not resolve "/home/runner/work/casdoor-vue-sdk/casdoor-vue-sdk/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js"

node_modules/casdoor-vue-sdk/src/CasdoorSDK.js:1:30:
  1 │ ...asyncToGenerator from "/home/runner/work/casdoor-vue-sdk/casdoor-vue-sdk/node_modules/@babel/runtime/helpers/esm/asyncT...
    ╵                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

✘ [ERROR] Could not resolve "regenerator-runtime/runtime.js"

node_modules/casdoor-vue-sdk/src/CasdoorSDK.js:2:7:
  2 │ import "regenerator-runtime/runtime.js";
    ╵        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

You can mark the path "regenerator-runtime/runtime.js" as external to exclude it from the bundle,
which will remove this error.

`

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.