at_onboarding_cli

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

at onboarding cli

at_onboarding_cli #
Introduction #
at_onboarding_cli is a library to authenticate and onboard atSigns.
Get Started #
To add this package as the dependency in your pubspec.yaml
dependencies:
at_onboarding_cli: ^1.3.0
copied to clipboard
Getting Dependencies
dart pub get
copied to clipboard
To import the library in your application code
import 'package:at_onboarding_cli/at_onboarding_cli.dart';
copied to clipboard
Usage #
Use cases for at_onboarding_cli:
1) Authentication
2) Onboarding (Activation)
3) activate_cli
4) register_cli
5) APKAM enrollments

Set AtOnboardingPreference to your preferred settings. These preferences will be used to configure the AtOnboardingService.

AtOnboardingPreference atOnboardingPreference = AtOnboardingPreference()
..rootDomain = 'root.atsign.org
..qrCodePath = 'storage/qr_code.png'
..hiveStoragePath = 'storage/hive'
..namespace = 'example'
..downloadPath = 'storage/files'
..isLocalStoreRequired = true
..commitLogPath = 'storage/commitLog'
..cramSecret = '<your cram secret>'
..privateKey = '<your private key here>'
..atKeysFilePath = 'storage/alice_key.atKeys';
copied to clipboard
Authentication: #
Proving that one actually owns the atSign. User needs to authenticate before performing operations on that atSign. Operations include reading, writing, deleting or updating data in the atsign's keystore and sending notifications from that atSign.
Steps to Authenticate

Import at_onboarding_cli.
Set preferences using AtOnboardingPreference. Either of secret key or path to .atKeysFile need to be provided to authenticate.
Instantiate AtOnboardingServiceImpl using the required atSign and a valid instance of AtOnboardingPreference.
Call the authenticate method on AtOnboardingService.
Use getAtLookup/getAtClient to get authenticated instances of AtLookup and AtClient respectively which can be used to perform more complex operations on the atSign.

AtOnboardingService atOnboardingService = AtOnboardingServiceImpl('@alice', atOnboardingPreference);
atOnboardingService.authenticate();
AtClient? atClient = await atOnboardingService.atClient;
AtLookup? atLookup = atOnboardingService.atLookUp;
copied to clipboard
Onboarding: #
Performing initial one-time authentication using cram secret encoded in the qr_code. This process activates the atSign making it ready to use.
Steps to onboard:

Import at_cli_onboarding.
Set preferences using AtOnboardingPreference. Provide the cram secret for the atsign if you have one.
If you do not have a cram secret you can just leave it blank. In this case a verification code will be sent to your registered email which you can provide to activate your already registered atsign.
Instantiate AtOnboardingServiceImpl using the required atSign and a valid instance of AtOnboardingPreference.
Call the onboard() in AtOnboardingServiceImpl.
Use authenticated instances of atClient/atLookup now available in AtOnboardingServiceImpl's instance to perform complex operations on the atSign.

AtOnboardingService atOnboardingService = AtOnboardingServiceImpl('@alice', atOnboardingPreference);
atOnboardingService.onboard();
> Successfully sent verification code to your registered e-mail
> [Action Required] Enter your verification code:
<your 4 charcter code here>
AtClient? atClient = await atOnboardingService.atClient();
AtLookup? atLookup = atOnboardingService.atLookUp();
copied to clipboard
Please refer to example to better understand the usage.
activate_cli: #
A simple tool to onboard(activate) an atSign through command-line arguments
Usage 1:
Run the following commands in your command-line tool (Terminal, CMD, PowerShell, etc)
To activate using a verification code
dart pub global activate at_onboarding_cli
at_activate -a your_atsign
> Successfully sent verification code to your registered e-mail
> [Action Required] Enter your verification code:
<your 4 charcter code here>
copied to clipboard
To activate using your cram secret
dart pub global activate at_onboarding_cli
at_activate -a your_atsign -c your_cram_secret
copied to clipboard
Usage 2:

Clone code from https://github.com/atsign-foundation/at_libraries
Change directory to at_libraries/at_onboarding_cli in the cloned repository
Run dart pub get
Run the following command

dart run bin/activate_cli.dart -a your_atsign -c your_cram_secret

(or)

dart run bin/activate_cli.dart -a your_atsign (to activate using verification code)
copied to clipboard
[IMPORTANT] You can find your .atKeysFile in directory ~/.atsign/keys after successful activation
register_cli: #
A command-line tool to get yourself a free atsign. This tool fetches a free atsign and registers it to the email provided as arguments.
Usage 1:
Run the following commands in you command-line tool (Terminal, CMD, PowerShell, etc)
dart pub global activate at_onboarding_cli
at_register -e your_email
copied to clipboard
Usage 2:

Clone code from https://github.com/atsign-foundation/at_libraries
Change directory to at_libraries/at_onboarding_cli in the cloned repository
Run dart pub get
Run the following command

dart run bin/register.dart -e email@email.com
copied to clipboard

Enter verification code sent to the provided email when prompted
register_cli fetches the cramkey and the automatically calls activate_cli to activate the fetched atsign
You can find your .atKeysFile in directory at_onboarding_cli/keys after successful activation

APKAM Enrollments #

Please refer to examples/readme.md in the github repository for at_onboarding_cli

Open source usage and contributions #
This is freely licensed open source code, so feel free to use it as is, suggest changes or enhancements or create your
own version. See CONTRIBUTING.md for detailed guidance on how to setup tools, tests and make a pull request.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.