Sele

From IndieWeb
Jump to navigation Jump to search

Sele is a IndieAuth provider (client and server) by Jacky Alciné. It's meant to be friendly to selfhosting. Progress is publicly tracked on the alpha and the final releases, as well as the backlog.

Authorization

Due to Sele's projected nature of allowing people to register other methods of authentication (be it via WebAuthn, using a passphrase, or what have you), the flow is a bit different from the conventional session-based flow. It, generically, is as follows:

  • An agent on behalf of a user/identity/site (a Web browser or another app) requests to obtain a challenge.
  • The agent passes information of that challenge over to the user to attest their ability to complete it.
  • Once completed and verified (which usually means the challenge response was acceptable), Sele generates a short-lived token (in this case, one generated using the Paseto algorithm) and returns it to the agent.
  • At this point, it's up to the agent to redeem this token. Sele itself will attempt to redeem such a token by calling the API endpoint for doing so. I'm not currently sure how to handle other clients that'd like to use that token (pending security concerns).

TicketAuth

Sele aims to provide a working implementation of TicketAuth. In order to do this, it aims to answer a few questions intentionally left open by the specification:

  • How does one send a ticket? Sele will do this in a few different ways:
    • It'll subscribe to your identity's URL (site) and listen for any new follow posts.
    • It'll poll your contacts from Micropub and send tickets
    • It'll send tickets to the URLs listed in the audience field of posts from one's feed.
  • How does one request a ticket? Sele provides a few moments:
    • Sele provides endpoints to generate a ticket for a fixed identity.
    • Sele can automatically approve ticket redemption from identities in one's contacts

Protecting Feeds

For this example with Alice (she/her) and Janet (they/them), we assume that Alice is using a reader that understands TicketAuth and Sele as her IndieAuth provider, namely Lighthouse. We can also assume that Alice's reader is built to conform to ethical engagement. Janet is also using Sele in this example.

  • Alice visits Janet's feed at https://janet.example/all.
  • Alice's informed by Janet's website that this page requires authentication.
  • Alice's reader notices TicketAuth support by this site
    • This could have been detected before by checking the author's own representative h-card and looking for TicketAuth support there
    • This would be done by looking for a IAM endpoint on the page itself
  • Alice's reader then attempts to request a token and informs Alice of the lack of access and that it's waiting for a response.
  • Janet's IndieAuth provider can inform Alice of this in a number of ways.
    • Sele sends a periodic e-mail of a list of those requesting access.
    • Sele's mobile app equivalent can poll for new ticket requests and show them.
    • Sele supports sending notifications using https://ntfy.sh/, Pushover, XMPP or private IRC messages.
    • Sele shows a list of requests sorted by the resource (realm) or the requester on the dashboard.
  • When Janet's provider approves this request,
    • Alice's reader will continue the flow to obtain an access token for this resource.
    • Alice's reader will fetch the resource using this token.
    • Because Alice's reader is also built with ethical engagement, it restricts the adjustment of the replies to this feed's post by keeping the same audience of the post, carries the same content warnings and visibility, if shown on the top level. It will defer to what each individual post uses (and give the user an option between them).
    • Alice's reader will use that token to fetch the posts in the feed over time as well as it's implied that it's required to read those posts.
  • When Janet's provider rejects the request,
    • Any sort of messaging that can shown to the user is presented when this feed is attempted to be presented in the reader
    • Sele will only retry this with user consent and will respect any headers around retrying.

Protecting Posts

The flow for protecting posts is similar to protecting feeds.

Planned Features

DID Provider

  • Provide DID URNs that one can apply to a URL as a alsoKnownAs value.

Enabling a Protected IndieWeb

For a Micropub server that sets the visibility of posts to be either unlisted or for those whose audience is set to be non-public, Sele should provide a means of leveraging either its form of TicketAuth across each of the services one uses. This could look like:

  • allowing issuing of tickets for TicketAuth if you set a contact into a particular group in your Micropub server automatically by listening for changes in the group (perhaps over WebSub)
  • generating dynamic Vouch URLs for Webmention servers that work with a Micropub server to determine an aggregate of posts that match particular criteria:
    • the last n engagements (over a window of time?) between the parties that satisfy a sense of access
    • a URL to their follow post to you that they sent
    • a page that has some sort form of Web of Trust backing (like KeyOxide, a signed PGP message to a known key)
    • contextually relevant URLs (like if liking a book review, a link to themselves pointing to the same book)