Socket
Socket
Sign inDemoInstall

@qubic-connect/redirect

Package Overview
Dependencies
Maintainers
2
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@qubic-connect/redirect

```txt # https://sequencediagram.org/ title qubic connect auth flow bottomparticipants participant "Client" as client participant "Client Service" as clientService participant "Qubic Connect SDK" as sdk participant "Auth Web" as auth participant "Qubic Wa


Version published
Weekly downloads
79
increased by49.06%
Maintainers
2
Weekly downloads
 
Created
Source

qubic connect auth flow

# https://sequencediagram.org/
title qubic connect auth flow
bottomparticipants
participant "Client" as client
participant "Client Service" as clientService
participant "Qubic Connect SDK" as sdk
participant "Auth Web" as auth
participant "Qubic Wallet" as wallet

entryspacing 1.0
alt login
	client->sdk:loginWithRedirect\n
	sdk->auth:navigate to auth web\n{\n  walletType\n  qubicSignInProvider\n  redirectUrl\n  dataString\n  action: 'login' \n}
else bind
client->sdk:bindWithRedirect\n
	sdk->auth:navigate to auth web\n{\n  walletType\n  qubicSignInProvider\n  redirectUrl\n  dataString\n  action: 'bind'\n}
end

alt action:login
	alt Qubic Wallet and has redirectUrl
		auth->wallet:navigate to wallet\n{\n  ticketRedirectUrl,\n  provider: 'facebook' | 'google' | 'apple' | 'yahoo'\n}
wallet->wallet:sign in success and get ticket from wallet service
		sdk<--wallet:response\n{\n  accountAddress\n  signature: ticket\n  dataString\n  isQubicUser: true\n  action: 'login'\n}\n// when isQubicUser true signature would be a ticket from wallet service\n
	else WalletConnect/Metamask
		auth->auth:active wallet and sign
		sdk<--auth:response\n{\n  accountAddress\n  signature\n  dataString\n  isQubicUser: false\n  action: 'login'\n}

	end
else action:bind
	alt Qubic Wallet
    auth->wallet:navigate to wallet\n{\n  ticketRedirectUrl,\n  provider: 'facebook' | 'google' | 'apple' | 'yahoo'\n}
    wallet->wallet:sign in success and get ticket from wallet service
	auth<--wallet:response\n{\n  ticket\n  expiredAt\n  address\n}
    else WalletConnect/Metamask
		auth->auth:active wallet and sign
	end
auth->auth:login with signature or ticket
	auth->auth:show confirm auhtorized to user\n
	auth->auth:send request to get bind token
	sdk<--auth:response\n{\n  accountAddress\n  signature: ticket\n  dataString\n  isQubicUser: true\n  action: 'bind'\n  bindToken?\n}

end


sdk->sdk:handleRedirectUrl\n
sdk->sdk:login with signature\nif it's Qubic wallet signature would be ticket
client<--sdk:trigger onAuthChanged\n{\n  method\n  address\n  accessToken\n  expiredAt\n  provider\n  qubicUser\n  bindToken?\n}
client->clientService:sendBindToken to client service
client<--clientService:bind success

note over client, clientService: After binding success, you can login with client service

client->clientService:login
client<--clientService:response with credential
client->sdk:loginWithCredential
client<--sdk:trigger onAuthChanged\n{\n  method\n  address\n  accessToken\n  expiredAt\n  provider\n  qubicUser\n}

FAQs

Package last updated on 05 May 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc