You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

249 lines
9.0 KiB

8 years ago
7 years ago
7 years ago
7 years ago
8 years ago
  1. XRay
  2. ====
  3. XRay parses structured content from a URL.
  4. ## Discovering Content
  5. The contents of the URL is checked in the following order:
  6. * A silo URL from one of the following websites:
  7. * Instagram
  8. * Twitter
  9. * GitHub
  10. * XKCD
  11. * (more coming soon)
  12. * Microformats
  13. * h-card
  14. * h-entry
  15. * h-event
  16. * h-review
  17. * h-recipe
  18. * h-product
  19. ## Parse API
  20. To parse a page and return structured data for the contents of the page, simply pass a url to the parse route.
  21. ```
  22. GET /parse?url=https://aaronparecki.com/2016/01/16/11/
  23. ```
  24. To conditionally parse the page after first checking if it contains a link to a target URL, also include the target URL as a parameter. This is useful when using XRay to verify an incoming webmention.
  25. ```
  26. GET /parse?url=https://aaronparecki.com/2016/01/16/11/&target=http://example.com
  27. ```
  28. In both cases, the response will be a JSON object containing a key of "type". If there was an error, "type" will be set to the string "error", otherwise it will refer to the kind of content that was found at the URL, most often "entry".
  29. You can also make a POST request with the same parameter names.
  30. ### Authentication
  31. If the URL you are fetching requires authentication, include the access token in the parameter "token", and it will be included in an "Authorization" header when fetching the URL. (It is recommended to use a POST request in this case, to avoid the access token potentially being logged as part of the query string.) This is useful for [Private Webmention](https://indieweb.org/Private-Webmention) verification.
  32. ```
  33. POST /parse
  34. url=https://aaronparecki.com/2016/01/16/11/
  35. &target=http://example.com
  36. &token=12341234123412341234
  37. ```
  38. ### Twitter Authentication
  39. XRay uses the Twitter API to fetch posts, and the Twitter API requires authentication. In order to keep XRay stateless, it is required that you pass in Twitter credentials to the parse call. You can register an application on the Twitter developer website, and generate an access token for your account without writing any code, and then use those credentials when making an API request to XRay.
  40. You should only send Twitter credentials when the URL you are trying to parse is a Twitter URL, so you'll want to check for whether the hostname is `twitter.com` before you include credentials in this call.
  41. * twitter_api_key - Your application's API key
  42. * twitter_api_secret - Your application's API secret
  43. * twitter_access_token - Your Twitter access token
  44. * twitter_access_token_secret - Your Twitter secret access token
  45. ### Error Response
  46. ```json
  47. {
  48. "error": "not_found",
  49. "error_description": "The URL provided was not found"
  50. }
  51. ```
  52. Possible errors are listed below:
  53. * `not_found`: The URL provided was not found. (Returned 404 when fetching)
  54. * `ssl_cert_error`: There was an error validating the SSL certificate. This may happen if the SSL certificate has expired.
  55. * `ssl_unsupported_cipher`: The web server does not support any of the SSL ciphers known by the service.
  56. * `timeout`: The service timed out trying to connect to the URL.
  57. * `invalid_content`: The content at the URL was not valid. For example, providing a URL to an image will return this error.
  58. * `no_link_found`: The target link was not found on the page. When a target parameter is provided, this is the error that will be returned if the target could not be found on the page.
  59. * `no_content`: No usable content could be found at the given URL.
  60. * `unauthorized`: The URL returned HTTP 401 Unauthorized.
  61. * `forbidden`: The URL returned HTTP 403 Forbidden.
  62. ### Response Format
  63. ```json
  64. {
  65. "data":{
  66. "type":"entry",
  67. "published":"2017-03-01T19:00:33-08:00",
  68. "url":"https://aaronparecki.com/2017/03/01/14/hwc",
  69. "category":[
  70. "indieweb",
  71. "hwc"
  72. ],
  73. "photo":[
  74. "https://aaronparecki.com/2017/03/01/14/photo.jpg"
  75. ],
  76. "syndication":[
  77. "https://twitter.com/aaronpk/status/837135519427395584"
  78. ],
  79. "content":{
  80. "text":"Hello from Homebrew Website Club PDX! Thanks to @DreamHost for hosting us! 🍕🎉 #indieweb",
  81. "html":"Hello from Homebrew Website Club PDX! Thanks to <a href=\"https://twitter.com/DreamHost\">@DreamHost</a> for hosting us! <a href=\"https://aaronparecki.com/emoji/%F0%9F%8D%95\">🍕</a><a href=\"https://aaronparecki.com/emoji/%F0%9F%8E%89\">🎉</a> <a href=\"https://aaronparecki.com/tag/indieweb\">#indieweb</a>"
  82. },
  83. "author":{
  84. "type":"card",
  85. "name":"Aaron Parecki",
  86. "url":"https://aaronparecki.com/",
  87. "photo":"https://aaronparecki.com/images/profile.jpg"
  88. }
  89. },
  90. "url":"https://aaronparecki.com/2017/03/01/14/hwc",
  91. "code":200
  92. }
  93. ```
  94. #### Primary Data
  95. The primary object on the page is returned in the `data` property. This will indicate the type of object (e.g. `entry`), and will contain the vocabulary's properties that it was able to parse from the page.
  96. If a property supports multiple values, it will always be returned as an array. The following properties support multiple values:
  97. * in-reply-to
  98. * like-of
  99. * repost-of
  100. * bookmark-of
  101. * syndication
  102. * photo (of entry, not of a card)
  103. * video
  104. * audio
  105. * category
  106. The content will be an object that always contains a "text" property and may contain an "html" property if the source documented published HTML content. The "text" property must always be HTML escaped before displaying it as HTML, as it may include unescaped characters such as `<` and `>`.
  107. The author will always be set in the entry if available. The service follows the [authorship discovery](http://indiewebcamp.com/authorship) algorithm to try to find the author information elsewhere on the page if it is not inside the entry in the source document.
  108. All URLs provided in the output are absolute URLs. If the source document contains a relative URL, it will be resolved first.
  109. In a future version, replies, likes, reposts, etc. of this post will be included if they are listed on the page.
  110. ```json
  111. {
  112. "data": {
  113. "type": "entry",
  114. ...
  115. "like": [
  116. {
  117. "type": "cite",
  118. "author": {
  119. "type": "card",
  120. "name": "Thomas Dunlap",
  121. "photo": "https://s3-us-west-2.amazonaws.com/aaronparecki.com/twitter.com/9055c458a67762637c0071006b16c78f25cb610b224dbc98f48961d772faff4d.jpeg",
  122. "url": "https://twitter.com/spladow"
  123. },
  124. "url": "https://twitter.com/aaronpk/status/688518372170977280#favorited-by-16467582"
  125. }
  126. ],
  127. "comment": [
  128. {
  129. "type": "cite",
  130. "author": {
  131. "type": "card",
  132. "name": "Poetica",
  133. "photo": "https://s3-us-west-2.amazonaws.com/aaronparecki.com/twitter.com/192664bb706b2998ed42a50a860490b6aa1bb4926b458ba293b4578af599aa6f.png",
  134. "url": "http://poetica.com/"
  135. },
  136. "url": "https://twitter.com/poetica/status/689045331426803712",
  137. "published": "2016-01-18T03:23:03-08:00",
  138. "content": {
  139. "text": "@aaronpk @mozillapersona thanks very much! :)"
  140. }
  141. }
  142. ]
  143. }
  144. }
  145. ```
  146. #### Other Properties
  147. Other properties are returned in the response at the same level as the `data` property.
  148. * `url` - The effective URL that the document was retrieved from. This will be the final URL after following any redirects.
  149. * `code` - The HTTP response code returned by the URL. Typically this will be 200, but if the URL returned an alternate HTTP code that also included an h-entry (such as a 410 deleted notice with a stub h-entry), you can use this to find out that the original URL was actually deleted.
  150. ## Token API
  151. When verifying [Private Webmentions](https://indieweb.org/Private-Webmention#How_to_Receive_Private_Webmentions), you will need to exchange a code for an access token at the token endpoint specified by the source URL.
  152. XRay provides an API that will do this in one step. You can provide the source URL and code you got from the webmention, and XRay will discover the token endpoint, and then return you an access token.
  153. ```
  154. POST /token
  155. source=http://example.com/private-post
  156. &code=1234567812345678
  157. ```
  158. The response will be the response from the token endpoint, which will include an `access_token` property, and possibly an `expires_in` property.
  159. ```
  160. {
  161. "access_token": "eyJ0eXAXBlIjoI6Imh0dHB8idGFyZ2V0IjoraW0uZGV2bb-ZO6MV-DIqbUn_3LZs",
  162. "token_type": "bearer",
  163. "expires_in": 3600
  164. }
  165. ```
  166. If there was a problem fetching the access token, you will get one of the errors below in addition to the HTTP related errors returned by the parse API:
  167. * `no_token_endpoint` - Unable to find an HTTP header specifying the token endpoint.
  168. ## Installation
  169. ### From Source
  170. ```
  171. # Clone this repository
  172. git clone git@github.com:aaronpk/XRay.git
  173. cd XRay
  174. # Install dependencies
  175. composer install
  176. ```
  177. ### From Zip Archive
  178. * Download the latest release from https://github.com/aaronpk/XRay/releases
  179. * Extract to a folder on your web server
  180. ### Web Server Configuration
  181. Configure your web server to point to the `public` folder.
  182. Make sure all requests are routed to `index.php`. XRay ships with `.htaccess` files for Apache. For nginx, you'll need a rule like the following in your server config block.
  183. ```
  184. try_files $uri /index.php?$args;
  185. ```