[go: up one dir, main page]

Skip to content

Latest commit

 

History

History
137 lines (108 loc) · 4.39 KB

File metadata and controls

137 lines (108 loc) · 4.39 KB

amp-access-iframe-api

The access iframe is an implementation of access protocol that supports both amp-access and amp-subscriptions.

The npm package is available: https://www.npmjs.com/package/amp-access-iframe-api.

The AmpAccessIframeApi is the entry point for access iframe implementation. As its main parameter it requires an instance of AccessController, which simply implements all methods of access protocol such as authorize and pingback.

The document's access configuration would use the "iframe" type. For example when used with amp-access:

<script id="amp-access" type="application/json">
  {
    "type": "iframe",
    "iframeSrc": "https://example.org/access-controller-iframe",
    "iframeVars": [
      "READER_ID",
      "CANONICAL_URL",
      "AMPDOC_URL",
      "SOURCE_URL",
      "DOCUMENT_REFERRER"
    ],
    "defaultResponse": {...}
  }
</script>

and with amp-subscriptions:

<script type="application/json" id="amp-subscriptions">
  {
    "services": [
      {
        "type": "iframe",
        "iframeSrc": "https://example.org/access-controller-iframe",
        "iframeVars": [
          "READER_ID",
          "CANONICAL_URL",
          "AMPDOC_URL",
          "SOURCE_URL",
          "DOCUMENT_REFERRER"
        ],
        "actions":{
          "login": "https://...",
          "subscribe": "https://..."
        }
      },
      ...
    ]
  }
</script>

The instrumentation would normally look like this:

/** Implements AccessController interface */
class Controller {
  connect(origin, protocol, config) {
    // Initialize the controller.
    // Important! Ensure that the "origin" is an acceptable value.
  }

  authorize() {
    // Return a promise that will yield the authorization response.
  }

  pingback() {
    // Handle the "impression" event.
  }
}

var iframeApi = new AmpAccessIframeApi(new Controller());
iframeApi.connect();

Connect method

The connect method should perform two main tasks:

  1. Ensure that the parent document is the right document by checking the origin.
  2. Initialize the iframe.

The protocol argument in the connect method will be one of amp-access or amp-subscriptions.

The config argument in the connect method will contain the original document config with iframeVars replace with the map of resolved AMP variables. See Access URL Variables for more details. For instance, for the example, using amp-access, above the config value could look like this:

{
  "type": "iframe",
  "iframeSrc": "https://example.org/access-controller-iframe",
  "iframeVars": {
    "READER_ID": "1234abd456",
    "CANONICAL_URL": "https://example.org/doc1",
    "AMPDOC_URL": "https://example-org.cdn.ampproject.org/doc1.amp",
    "SOURCE_URL": "https://example.org/doc1.amp",
    "DOCUMENT_REFERRER": "https://other.com"
  }
}

When used with amp-subscriptions the protocol is set to amp-subscriptions and a pageConfig object is included.

Example:

{
  "type": "iframe",
  "pageConfig": {
    "productId": "...",
    "publicationId": "..."
  },
  // Remainder as per `amp-access`
}

The publicationId and productId are extracted from the parent document structured data.

Authorize method

The authorize method checks whether the user should be able to access this document. It's expected to be an open-ended JSON structure that can be used for access expressions.

Strong timeout and one-behind semantics are observed for authorization call. If the authorize() method does not return within a 3s timeout, the previously returned authorization response is used. If no previous response is available or it's too old, the defaultResponse value from the configuration is used. However, even in case of timeout, the iframe authorization will continue until fully complete and will be made available for the next authorization attempt.

In the case of amp-subscriptions the authorization response must conform to the local service authorization response struture.

Pingback method

The pingback method is optional. If specified, it can implement impression event. The main purpose of this method is metering implementation.

In amp-subscriptions the Entitlement object, if one is preset, is passed to the pingback.