summaryrefslogtreecommitdiffstats
path: root/browser/components/pagedata/TwitterPageData.sys.mjs
blob: 88b06098cb40aa4ce6b7dcb64ddc653e55109902 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

/**
 * Collects Twitter card (https://developer.twitter.com/en/docs/twitter-for-websites/)
 * related data from a page.
 */
export const TwitterPageData = {
  /**
   * Collects the twitter data from the page.
   *
   * @param {Document} document
   *   The document to collect from
   *
   * @returns {PageData}
   */
  collect(document) {
    let pageData = {};

    let twitterTags = document.querySelectorAll("meta[name^='twitter:'");

    for (let tag of twitterTags) {
      // Strip "twitter:" from the property name.
      let propertyName = tag.getAttribute("name").substring(8);

      switch (propertyName) {
        case "site":
          pageData.siteName = tag.getAttribute("content");
          break;
        case "description":
          pageData.description = tag.getAttribute("content");
          break;
        case "image":
          pageData.image = tag.getAttribute("content");
          break;
      }
    }

    return pageData;
  },
};