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.

526 lines
17 KiB

8 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
6 years ago
7 years ago
7 years ago
  1. XRay
  2. ====
  3. XRay parses structured content from a URL.
  4. ## Discovering Content
  5. XRay will parse content in the following formats. First the URL is checked against known services:
  6. * Twitter
  7. * GitHub
  8. * XKCD
  9. * Hackernews
  10. If the contents of the URL is XML or JSON, then XRay will parse the Atom, RSS or JSONFeed formats.
  11. Finally, XRay looks for Microformats on the page and will determine the content from that.
  12. * h-card
  13. * h-entry
  14. * h-event
  15. * h-review
  16. * h-recipe
  17. * h-product
  18. * h-item
  19. * h-feed
  20. ## Library
  21. XRay can be used as a library in your PHP project. The easiest way to install it and its dependencies is via composer.
  22. ```
  23. composer require p3k/xray
  24. ```
  25. You can also [download a release](https://github.com/aaronpk/XRay/releases) which is a zip file with all dependencies already installed.
  26. ### Parsing
  27. ```php
  28. $xray = new p3k\XRay();
  29. $parsed = $xray->parse('https://aaronparecki.com/2017/04/28/9/');
  30. ```
  31. If you already have an HTML or JSON document you want to parse, you can pass it as a string in the second parameter.
  32. ```php
  33. $xray = new p3k\XRay();
  34. $html = '<html>....</html>';
  35. $parsed = $xray->parse('https://aaronparecki.com/2017/04/28/9/', $html);
  36. ```
  37. ```php
  38. $xray = new p3k\XRay();
  39. $jsonfeed = '{"version":"https://jsonfeed.org/version/1","title":"Manton Reece", ... ';
  40. // Note that the JSON document must be passed in as a string in this case
  41. $parsed = $xray->parse('https://manton.micro.blog/feed.json', $jsonfeed);
  42. ```
  43. In both cases, you can add an additional parameter to configure various options of how XRay will behave. Below is a list of the options.
  44. * `timeout` - The timeout in seconds to wait for any HTTP requests
  45. * `max_redirects` - The maximum number of redirects to follow
  46. * `include_original` - Will also return the full document fetched
  47. * `target` - Specify a target URL, and XRay will first check if that URL is on the page, and only if it is, will continue to parse the page. This is useful when you're using XRay to verify an incoming webmention.
  48. * `expect=feed` - If you know the thing you are parsing is a feed, include this parameter which will avoid running the autodetection rules and will provide better results for some feeds.
  49. Additional parameters are supported when making requests that use the Twitter or GitHub API. See the Authentication section below for details.
  50. ```php
  51. $xray = new p3k\XRay();
  52. $parsed = $xray->parse('https://aaronparecki.com/2017/04/28/9/', [
  53. 'timeout' => 30
  54. ]);
  55. $parsed = $xray->parse('https://aaronparecki.com/2017/04/28/9/', $html, [
  56. 'target' => 'http://example.com/'
  57. ]);
  58. ```
  59. The `$parsed` return value will look like the below. See "Primary Data" below for an explanation of the vocabularies returned.
  60. ```
  61. $parsed = Array
  62. (
  63. [data] => Array
  64. (
  65. [type] => card
  66. [name] => Aaron Parecki
  67. [url] => https://aaronparecki.com/
  68. [photo] => https://aaronparecki.com/images/profile.jpg
  69. )
  70. [url] => https://aaronparecki.com/
  71. [code] => 200,
  72. [source-format] => mf2+html
  73. )
  74. ```
  75. ### Processing Microformats2 JSON
  76. If you already have a parsed Microformats2 document as an array, you can use a special function to process it into XRay's native format. Make sure you pass the entire parsed document, not just the single item.
  77. ```php
  78. $html = '<div class="h-entry"><p class="p-content p-name">Hello World</p><img src="/photo.jpg"></p></div>';
  79. $mf2 = Mf2\parse($html, 'http://example.com/entry');
  80. $xray = new p3k\XRay();
  81. $parsed = $xray->process('http://example.com/entry', $mf2); // note the use of `process` not `parse`
  82. Array
  83. (
  84. [data] => Array
  85. (
  86. [type] => entry
  87. [post-type] => photo
  88. [photo] => Array
  89. (
  90. [0] => http://example.com/photo.jpg
  91. )
  92. [content] => Array
  93. (
  94. [text] => Hello World
  95. )
  96. )
  97. [url] => http://example.com/entry
  98. [source-format] => mf2+json
  99. )
  100. ```
  101. ### Rels
  102. You can also use XRay to fetch all the rel values on a page, merging the list of HTTP `Link` headers with rel values with the HTML rel values on the page.
  103. ```php
  104. $xray = new p3k\XRay();
  105. $rels = $xray->rels('https://aaronparecki.com/');
  106. ```
  107. This will return a similar response to the parser, but instead of a `data` key containing the parsed page, there will be `rels`, an associative array. Each key will contain an array of all the values that match that rel value.
  108. ```
  109. Array
  110. (
  111. [url] => https://aaronparecki.com/
  112. [code] => 200
  113. [rels] => Array
  114. (
  115. [hub] => Array
  116. (
  117. [0] => https://switchboard.p3k.io/
  118. )
  119. [authorization_endpoint] => Array
  120. (
  121. [0] => https://aaronparecki.com/auth
  122. )
  123. ...
  124. ```
  125. ### Feed Discovery
  126. You can use XRay to discover the types of feeds available at a URL.
  127. ```php
  128. $xray = new p3k\XRay();
  129. $feeds = $xray->feeds('http://percolator.today');
  130. ```
  131. This will fetch the URL, check for a Microformats feed, as well as check for rel=alternates pointing to Atom, RSS or JSONFeed URLs. The response will look like the below.
  132. ```
  133. Array
  134. (
  135. [url] => https://percolator.today/
  136. [code] => 200
  137. [feeds] => Array
  138. (
  139. [0] => Array
  140. (
  141. [url] => https://percolator.today/
  142. [type] => microformats
  143. )
  144. [1] => Array
  145. (
  146. [url] => https://percolator.today/podcast.xml
  147. [type] => rss
  148. )
  149. )
  150. )
  151. ```
  152. ### Customizing the User Agent
  153. To set a unique user agent, (some websites will require a user agent be set), you can set the `http` property of the object to a `p3k\HTTP` object.
  154. ```php
  155. $xray = new p3k\XRay();
  156. $xray->http = new p3k\HTTP('MyProject/1.0.0 (http://example.com/)');
  157. $xray->parse('http://example.com/');
  158. ```
  159. ## API
  160. XRay can also be used as an API to provide its parsing capabilities over an HTTP service.
  161. To parse a page and return structured data for the contents of the page, simply pass a url to the `/parse` route.
  162. ```
  163. GET /parse?url=https://aaronparecki.com/2016/01/16/11/
  164. ```
  165. 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.
  166. ```
  167. GET /parse?url=https://aaronparecki.com/2016/01/16/11/&target=http://example.com
  168. ```
  169. 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".
  170. You can also make a POST request with the same parameter names.
  171. If you already have an HTML or JSON document you want to parse, you can include that in the POST parameter `body`. This POST request would look like the below:
  172. ```
  173. POST /parse
  174. Content-type: application/x-www-form-urlencoded
  175. url=https://aaronparecki.com/2016/01/16/11/
  176. &body=<html>....</html>
  177. ```
  178. or for Twitter/GitHub where you might have JSON,
  179. ```
  180. POST /parse
  181. Content-type: application/x-www-form-urlencoded
  182. url=https://github.com/aaronpk/XRay
  183. &body={"repo":......}
  184. ```
  185. ### Parameters
  186. XRay accepts the following parameters when calling `/parse`
  187. * `url` - the URL of the page to parse
  188. * `target` - Specify a target URL, and XRay will first check if that URL is on the page, and only if it is, will continue to parse the page. This is useful when you're using XRay to verify an incoming webmention.
  189. * `timeout` - The timeout in seconds to wait for any HTTP requests
  190. * `max_redirects` - The maximum number of redirects to follow
  191. * `include_original` - Will also return the full document fetched
  192. * `expect=feed` - If you know the thing you are parsing is a feed, include this parameter which will avoid running the autodetection rules and will provide better results for some feeds.
  193. ### Authentication
  194. 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.
  195. ```
  196. POST /parse
  197. url=https://aaronparecki.com/2016/01/16/11/
  198. &target=http://example.com
  199. &token=12341234123412341234
  200. ```
  201. ### API Authentication
  202. XRay uses the Twitter and Github APIs to fetch posts, and those API require authentication. In order to keep XRay stateless, it is required that you pass in the credentials to the parse call.
  203. You should only send the credentials when the URL you are trying to parse is a Twitter URL or a GitHub URL, so you'll want to check for whether the hostname is `twitter.com`, `github.com`, etc. before you include credentials in this call.
  204. #### Twitter Authentication
  205. XRay uses the Twitter API to fetch Twitter URLs. 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.
  206. * `twitter_api_key` - Your application's API key
  207. * `twitter_api_secret` - Your application's API secret
  208. * `twitter_access_token` - Your Twitter access token
  209. * `twitter_access_token_secret` - Your Twitter secret access token
  210. #### GitHub Authentication
  211. XRay uses the GitHub API to fetch GitHub URLs, which provides higher rate limits when used with authentication. You can pass a GitHub access token along with the request and XRay will use it when making requests to the API.
  212. * `github_access_token` - A GitHub access token
  213. ### Error Response
  214. ```json
  215. {
  216. "error": "not_found",
  217. "error_description": "The URL provided was not found"
  218. }
  219. ```
  220. Possible errors are listed below:
  221. * `not_found`: The URL provided was not found. (Returned 404 when fetching)
  222. * `ssl_cert_error`: There was an error validating the SSL certificate. This may happen if the SSL certificate has expired.
  223. * `ssl_unsupported_cipher`: The web server does not support any of the SSL ciphers known by the service.
  224. * `timeout`: The service timed out trying to connect to the URL.
  225. * `invalid_content`: The content at the URL was not valid. For example, providing a URL to an image will return this error.
  226. * `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.
  227. * `no_content`: No usable content could be found at the given URL.
  228. * `unauthorized`: The URL returned HTTP 401 Unauthorized.
  229. * `forbidden`: The URL returned HTTP 403 Forbidden.
  230. ### Response Format
  231. ```json
  232. {
  233. "data":{
  234. "type":"entry",
  235. "post-type":"photo",
  236. "published":"2017-03-01T19:00:33-08:00",
  237. "url":"https://aaronparecki.com/2017/03/01/14/hwc",
  238. "category":[
  239. "indieweb",
  240. "hwc"
  241. ],
  242. "photo":[
  243. "https://aaronparecki.com/2017/03/01/14/photo.jpg"
  244. ],
  245. "syndication":[
  246. "https://twitter.com/aaronpk/status/837135519427395584"
  247. ],
  248. "content":{
  249. "text":"Hello from Homebrew Website Club PDX! Thanks to @DreamHost for hosting us! 🍕🎉 #indieweb",
  250. "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>"
  251. },
  252. "author":{
  253. "type":"card",
  254. "name":"Aaron Parecki",
  255. "url":"https://aaronparecki.com/",
  256. "photo":"https://aaronparecki.com/images/profile.jpg"
  257. }
  258. },
  259. "url":"https://aaronparecki.com/2017/03/01/14/hwc",
  260. "code":200,
  261. "source-format":"mf2+html"
  262. }
  263. ```
  264. #### Primary Data
  265. 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.
  266. * `type` - the Microformats 2 vocabulary found for the primary object on the page, without the `h-` prefix (e.g. `entry`, `event`)
  267. * `post-type` - only for "posts" (e.g. not for `card`s) - the [Post Type](https://www.w3.org/TR/post-type-discovery/) of the post (e.g. (`note`, `photo`, `reply`))
  268. If a property supports multiple values, it will always be returned as an array. The following properties support multiple values:
  269. * `in-reply-to`
  270. * `like-of`
  271. * `repost-of`
  272. * `bookmark-of`
  273. * `follow-of`
  274. * `syndication`
  275. * `photo` (of an entry, not of a card)
  276. * `video`
  277. * `audio`
  278. * `category`
  279. 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 `>`.
  280. The author will always be set in the entry if available. The service follows the [authorship discovery](https://indieweb.org/authorship) algorithm to try to find the author information elsewhere on the page if it is not inside the entry in the source document.
  281. All URLs provided in the output are absolute URLs. If the source document contains a relative URL, it will be resolved first.
  282. #### Post Type Discovery
  283. XRay runs the [Post Type Discovery](https://www.w3.org/TR/post-type-discovery/) algorithm and also includes a `post-type` property.
  284. The following post types are returned, which are slightly expanded from what is currently documented by the Post Type Discovery spec.
  285. * `event`
  286. * `recipe`
  287. * `review`
  288. * `rsvp`
  289. * `repost`
  290. * `like`
  291. * `reply`
  292. * `bookmark`
  293. * `follow`
  294. * `checkin`
  295. * `video`
  296. * `audio`
  297. * `photo`
  298. * `article`
  299. * `note`
  300. #### Other Properties
  301. Other properties are returned in the response at the same level as the `data` property.
  302. * `url` - The effective URL that the document was retrieved from. This will be the final URL after following any redirects.
  303. * `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.
  304. * `source-format` - Indicates the format of the source URL that was used to generate the parsed result. Possible values are:
  305. * `mf2+html`
  306. * `mf2+json`
  307. * `feed+json`
  308. * `xml`
  309. * `github`/`xkcd`
  310. #### Feeds
  311. XRay can return information for several kinds of feeds. The URL (or body) passed to XRay will be checked for the following formats:
  312. * XML (Atom and RSS)
  313. * JSONFeed (https://jsonfeed.org)
  314. * Microformats [h-feed](https://indieweb.org/h-feed)
  315. If the page being parsed represents a feed, then the response will look like the following:
  316. ```json
  317. {
  318. "data": {
  319. "type": "feed",
  320. "items": [
  321. {...},
  322. {...}
  323. ]
  324. }
  325. }
  326. ```
  327. Each object in the `items` array will contain a parsed version of the item, in the same format that XRay normally returns. When parsing Microformats feeds, the [authorship discovery](https://indieweb.org/authorship) will be run for each item to build out the author info.
  328. Atom, RSS and JSONFeed will all be normalized to XRay's vocabulary, and only recognized properties will be returned.
  329. ## Rels API
  330. There is also an API method to parse and return all rel values on the page, including HTTP `Link` headers and HTML rel values.
  331. ```
  332. GET /rels?url=https://aaronparecki.com/
  333. ```
  334. See [above](#rels) for the response format.
  335. ## Feed Discovery API
  336. ```
  337. GET /feeds?url=https://aaronparecki.com/
  338. ```
  339. See [above](#feed-discovery) for the response format.
  340. ## Token API
  341. 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.
  342. 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.
  343. ```
  344. POST /token
  345. source=http://example.com/private-post
  346. &code=1234567812345678
  347. ```
  348. The response will be the response from the token endpoint, which will include an `access_token` property, and possibly an `expires_in` property.
  349. ```
  350. {
  351. "access_token": "eyJ0eXAXBlIjoI6Imh0dHB8idGFyZ2V0IjoraW0uZGV2bb-ZO6MV-DIqbUn_3LZs",
  352. "token_type": "bearer",
  353. "expires_in": 3600
  354. }
  355. ```
  356. 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:
  357. * `no_token_endpoint` - Unable to find an HTTP header specifying the token endpoint.
  358. ## Installation
  359. ### From Source
  360. ```
  361. # Clone this repository
  362. git clone git@github.com:aaronpk/XRay.git
  363. cd XRay
  364. # Install dependencies
  365. composer install
  366. ```
  367. ### From Zip Archive
  368. * Download the latest release from https://github.com/aaronpk/XRay/releases
  369. * Extract to a folder on your web server
  370. ### Web Server Configuration
  371. Configure your web server to point to the `public` folder.
  372. 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.
  373. ```
  374. try_files $uri /index.php?$args;
  375. ```