Emiliano Suñé
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Engagement control
    • Make a copy
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Make a copy Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    1
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    --- tags: aca-py --- # Aries Cloudagent Web Application Integration Guidelines This document outlines best practices and guidelines to be considered and implemented when integrating an existing system with Aries Cloudagent. # Architecture Generally speaking, a web application that leverages Aries agents is structured as follows: * `Agent`: this service is used by the web application to interact with a Ledger and other agents connected to the same ledger. It is generally not controlled directly by the web application frontend, instead requests to the agent come from a `controller` service. * `Controller`: this service provides the business logic for the web application, and acts as bridge between the `frontend` and the `agent`. The `controller` usually exposes appropriate APIs that the `frontend` will use to perform common business tasks as well as agent-related tasks such as requesting the creation of a new connection, etc. The controller is also tasked with tracking and managing all of the information that is required for the business processes to be implemented and work successfully. * `Frontend`: this service is what the users see and interact with, commonly something that is displayed in a web browser. The above components may be at times partially consolidated or further split into separate services, the purpose of this overview is to explain the separation of concerns of these three macro-areas. ## Creating and Managing Connections A connection is a communication channel established between two Aries agents. It allows them to send and receive data and interact: issuing a credential or requesting/sending a proof request require, in most cases, a valid, active connection to be completed. The closest relative of a connection between Aries agents in the web application world is a session: for this reason the recommended way of tracking open connections in a web application is to use a session cookie. ### Implementation As discussed previously, to establish a new connection the `frontend` would call the appripriate `controller` API endpoint to create a new connection invitation. The controller would translate this request to the appropriate call to the admin APIs in the `agent` service, and return the data that will be displayed in a QR code for the mobile wallet to scan and use. A connection is identified within an agent by an id. This id is used when retrieving connection information as well as when instructing the agent to send/request something via a specific channel. When creating/requesting new connections, the web application should set and manage a session cookie whose payload corresponds to the UUID of the connection being targeted/used. **Important:** the session cookies shuld be set to `Secure` and `HttpOnly` to mitigate the risk of exposing its contents to the web, as well as the risk of cross-site scripting attacks. Connections do not expire, however they can be deleted by either agent involved in the protocol: the cookie should therefore not expire, or have an expiration date that is longer than the average lapse of time between interactions between the user and the service. 1. `First interaction`: the applications's `frontend` sends a request for a new connection to the `controller`. No cookie is being passed in the headers since no connection was yet established, therefore the `controller` proceeds to generate a new connection invitation with its `agent`, and sends a response to the frontend using the `Set-Cookie` header to create a new cookie with the connection's UUID as payload. 2. `Second interaction`: following the first interaction, both agents will have established a connection that can be reused for future protocol exchanges. When initiating a new agent interaction from the `frontend`'s UI, the client will send a request for a new connection to the `controller`, including the previously created cookie in the header. The `controller` will use that information to initiate the appropriate task on the specified channel. The `frontend` will not display a QR code to establish a new connection and will send a response setting the cookie, again, with the same value.. * i.if the `controller` has lost/removed the connection record specified in the cookie, it will proceed to generate a new connection invitation in a similar way to the first interaction. It will then send the response to the `frontend`, that will display a new QR code for the user to scan. The response will include a new `Set-Cookie` header, populated with the new connection UUID. * if the session cookie was removed from the `frontend`, the connection request would not include a value for the cookie and would therefore be considereed by default as a new connection request. * if the user has removed the connection from their wallet, the UI should display controls to establish a new connection. The `controller` will likely attempt to communicate on the existing connection, while the `frontend` should display a "get a new connection" control after a few seconds to allow users to recover from this state. **Note:** while it shoudn't be a problem to keep old "dead" connection records in the `agent`, it seems like good practice for the `controller` to instruct the agent to remove connections being replaced. The `controller` should be tracking the appropriate information to facilitate this process and no recommendation will therefore be made on how to implement/achieve this. # Interaction Diagram #### First Interaction Describes flow for first interaction (no previously established connection) and/or browser cookies cleared/absent. It lso applies to the - less likely - scenario where the connection was deleted on the controller/agent side. ```sequence participant Mobile Wallet participant Frontend participant Controller participant Agent Frontend-->Controller: Request Connection Controller-->Agent: /connections/create-invitation Agent-->>Controller: New Invitation\n ID: 12345 Controller-->>Frontend: New Invitation\n (Set-Cookie: 12345) Frontend->Frontend: Create QR code Mobile Wallet-->Frontend: Scan QR Code Agent-->>Mobile Wallet: Establish Connection Agent-->>Controller: Webhook: connection 12345 established Controller-->Agent: Do something\n (request proof, issue credential, etc.) Agent-->Mobile Wallet: Using connection ``` #### Following Interactions Describes flows for 2nd and following interactions, when a session cookie is available and the connection is present and active on both mobile wallet and agent. ```sequence participant Mobile Wallet participant Frontend participant Controller participant Agent Frontend-->Controller: Request Connection (Set-Cookie: 12345) Controller->Controller: Connection 12345 exists\n (may also check with agent) Controller-->Agent: Do something\n (request proof, issue credential, etc.) Controller-->>Frontend: Response\n (Set-Cookie: 12345) Agent-->Mobile Wallet: Using connection Frontend->Frontend: Display connection recovery\n button after 2s-3s Agent-->>Controller: Webhook updates ``` ##### Following Interactions - Recovery Describes the flow for 2nd and following interaction, in the scenario where the connection was removed from the mobile wallet, and a session cookie is available ```sequence participant Mobile Wallet participant Frontend participant Controller participant Agent Frontend-->Controller: Request Connection (Set-Cookie: 12345) Controller->Controller: Connection 12345 exists\n (may also check with agent) Controller-->Agent: Do something\n (request proof, issue credential, etc.) Controller-->>Frontend: Response\n (Set-Cookie: 12345) Agent-->Mobile Wallet: Using connection Frontend->Frontend: Display connection recovery\n button after 2s-3s Agent-->>Controller: Webhook updates Frontend->Frontend: Click recovery button Frontend-->Controller: Request Connection Controller-->Agent: /connections/create-invitation Agent-->>Controller: New Invitation\n ID: 56789 Controller-->>Frontend: New Invitation\n (Set-Cookie: 56789) Frontend->Frontend: Create QR code Mobile Wallet-->Frontend: Scan QR Code Agent-->>Mobile Wallet: Establish Connection Agent-->>Controller: Webhook: connection 56789 established Controller-->Agent: Do something\n (request proof, issue credential, etc.) Agent-->Mobile Wallet: Using connection ```

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully