api.html 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. {% extends "layout.html" %}
  2. {% block page_title %}REST API <small>v1 alpha</small>{% endblock %}
  3. {% block head -%}
  4. {{ super() }}
  5. <link rel=stylesheet type=text/css href="{{ url_for('static', filename='css/highlight_github.css') }}">
  6. {%- endblock %}
  7. {% block script -%}
  8. {{ super() }}
  9. <script type="text/javascript" src="{{ url_for('static', filename='js/highlight.pack.js') }}"></script>
  10. <script type="text/javascript">hljs.initHighlightingOnLoad();</script>
  11. {%- endblock %}
  12. {% block body %}
  13. <link rel=stylesheet type=text/css href="/static/css/highlight_github.css">
  14. <p>The API lives at <code>/api/v1/</code>. The format used is JSON.</p>
  15. <h3>Collections</h3>
  16. <h4>ISPs</h4>
  17. <div class="api-collection" id="api-collection-isp">
  18. <div class="api-doc-resource">
  19. <div class="api-doc-heading">
  20. <span class="label label-info" data-toggle="collapse" href="#api-isp-1">GET</span>
  21. <a class="path" data-toggle="collapse" href="#api-isp-1">/isp/</a>
  22. <a class="description" data-toggle="collapse" href="#api-isp-1">
  23. returns all ISPs in database
  24. </a>
  25. </div>
  26. <div id="api-isp-1" class="api-doc-body collapse">
  27. <div class="api-doc-inner">
  28. <h5>Parameters</h5>
  29. <table class="table table-bordered table-striped">
  30. <thead>
  31. <tr>
  32. <th style="width: 100px;">Name</th>
  33. <th>Value</th>
  34. <th>Description</th>
  35. </tr>
  36. </thead>
  37. <tbody>
  38. <tr>
  39. <td><code>page</code></td>
  40. <td>int</td>
  41. <td>Page number</td>
  42. </tr>
  43. <tr>
  44. <td><code>per_page</code></td>
  45. <td>int</td>
  46. <td>Number of items per page</td>
  47. </tr>
  48. <tr>
  49. <td><code>range</code></td>
  50. <td>int,int</td>
  51. <td>Range to return, in the format offset,value</td>
  52. </tr>
  53. </tbody>
  54. </table>
  55. <h5>Output</h5>
  56. <p>This resource returns an array of ISP objects.</p>
  57. <h5>Sample output</h5>
  58. <p>When using pagination (default)&thinsp;:</p>
  59. <pre><code>{
  60. "total_items": 3,
  61. "page": 1,
  62. "num_pages": 1,
  63. "per_page": 10,
  64. "isps": [
  65. /* list of ISP objects */
  66. ]
  67. }</code></pre>
  68. <p>When providing a range parameter&thinsp;:</p>
  69. <pre><code>{
  70. "total_items": 3,
  71. "range": "0,1",
  72. "isps": [
  73. /* list of ISP objects */
  74. ]
  75. }</code></pre>
  76. <h5>Status code</h5>
  77. <p>This resource can return the following status codes: <code>400</code>, <code>500</code>.</p>
  78. </div>
  79. </div>
  80. </div>
  81. <div class="api-doc-resource">
  82. <div class="api-doc-heading">
  83. <span class="label label-info" data-toggle="collapse" href="#api-isp-2">GET</span>
  84. <a class="path" data-toggle="collapse" href="#api-isp-2">/isp/&lt;int:isp_id&gt;/</a>
  85. <a class="description" data-toggle="collapse" href="#api-isp-2">
  86. returns the ISP with id &lt;isp_id&gt;
  87. </a>
  88. </div>
  89. <div id="api-isp-2" class="api-doc-body collapse">
  90. <div class="api-doc-inner">
  91. <h5>Output</h5>
  92. <p>This resource returns an ISP object or an ObjectNotFound error.</p>
  93. <h5>Status code</h5>
  94. <p>This resource can return the following status codes: <code>404</code>, <code>400</code>, <code>500</code>.</p>
  95. </div>
  96. </div>
  97. </div>
  98. <div class="api-doc-resource">
  99. <div class="api-doc-heading">
  100. <span class="label label-info" data-toggle="collapse" href="#api-isp-3">GET</span>
  101. <a class="path" data-toggle="collapse" href="#api-isp-3">/isp/&lt;int:isp_id&gt;/covered_areas/</a>
  102. <a class="description" data-toggle="collapse" href="#api-isp-3">
  103. returns the covered areas for ISP with id &lt;isp_id&gt;
  104. </a>
  105. </div>
  106. <div id="api-isp-3" class="api-doc-body collapse">
  107. <div class="api-doc-inner">
  108. <h5>Parameters</h5>
  109. <table class="table table-bordered table-striped">
  110. <thead>
  111. <tr>
  112. <th style="width: 100px;">Name</th>
  113. <th>Value</th>
  114. <th>Description</th>
  115. </tr>
  116. </thead>
  117. <tbody>
  118. <tr>
  119. <td><code>page</code></td>
  120. <td>int</td>
  121. <td>Page number</td>
  122. </tr>
  123. <tr>
  124. <td><code>per_page</code></td>
  125. <td>int</td>
  126. <td>Number of items per page</td>
  127. </tr>
  128. <tr>
  129. <td><code>range</code></td>
  130. <td>int,int</td>
  131. <td>Range to return, in the format offset,value</td>
  132. </tr>
  133. </tbody>
  134. </table>
  135. <h5>Output</h5>
  136. <p>This resource returns an array of CoveredArea objects belonging to a given ISP. Note that the CoveredArea objects don't have an "isp" attribute since we assume the client will have retrieved informations about the ISP beforehand.</p>
  137. <h5>Status code</h5>
  138. <p>This resource can return the following status codes: <code>404</code>, <code>400</code>, <code>500</code>.</p>
  139. </div>
  140. </div>
  141. </div>
  142. <div class="api-doc-resource">
  143. <div class="api-doc-heading">
  144. <span class="label label-info" data-toggle="collapse" href="#api-isp-4">GET</span>
  145. <a class="path" data-toggle="collapse" href="#api-isp-4">/isp/export_urls/</a>
  146. <a class="description" data-toggle="collapse" href="#api-isp-4">
  147. returns all isp-format urls
  148. </a>
  149. </div>
  150. <div id="api-isp-4" class="api-doc-body collapse">
  151. <div class="api-doc-inner">
  152. <h5>Output</h5>
  153. <p>This resource returns a list of all ISP Format URLs in database.</p>
  154. <h5>Status code</h5>
  155. <p>This resource can return the following status codes: <code>500</code>.</p>
  156. </div>
  157. </div>
  158. </div>
  159. </div>
  160. <hr style="margin: 15px 0 0 0;" />
  161. <h4>Covered Areas<small>&thinsp;: Areas covered by ISPs</small></h4>
  162. <div class="api-collection" id="api-collection-isp">
  163. <div class="api-doc-resource">
  164. <div class="api-doc-heading">
  165. <span class="label label-info" data-toggle="collapse" href="#api-area-1">GET</span>
  166. <a class="path" data-toggle="collapse" href="#api-area-1">/covered_area/</a>
  167. <a class="description" data-toggle="collapse" href="#api-area-1">
  168. returns all Covered Areas in database
  169. </a>
  170. </div>
  171. <div id="api-area-1" class="api-doc-body collapse">
  172. <div class="api-doc-inner">
  173. <h5>Parameters</h5>
  174. <table class="table table-bordered table-striped">
  175. <thead>
  176. <tr>
  177. <th style="width: 100px;">Name</th>
  178. <th>Value</th>
  179. <th>Description</th>
  180. </tr>
  181. </thead>
  182. <tbody>
  183. <tr>
  184. <td><code>page</code></td>
  185. <td>int</td>
  186. <td>Page number</td>
  187. </tr>
  188. <tr>
  189. <td><code>per_page</code></td>
  190. <td>int</td>
  191. <td>Number of items per page</td>
  192. </tr>
  193. <tr>
  194. <td><code>range</code></td>
  195. <td>int,int</td>
  196. <td>Range to return, in the format offset,value</td>
  197. </tr>
  198. </tbody>
  199. </table>
  200. <h5>Output</h5>
  201. <p>This resource returns an array of CoveredArea objects.</p>
  202. <h5>Sample output</h5>
  203. <p>When using pagination (default)&thinsp;:</p>
  204. <pre><code>{
  205. "total_items": 3,
  206. "page": 1,
  207. "num_pages": 1,
  208. "per_page": 10,
  209. "covered_areas": [
  210. /* list of CoveredArea objects */
  211. ]
  212. }</code></pre>
  213. <p>When providing a range parameter&thinsp;:</p>
  214. <pre><code>{
  215. "total_items": 3,
  216. "range": "0,1",
  217. "covered_areas": [
  218. /* list of CoveredArea objects */
  219. ]
  220. }</code></pre>
  221. <h5>Status code</h5>
  222. <p>This resource can return the following status codes: <code>404</code>, <code>400</code>, <code>500</code>.</p>
  223. </div>
  224. </div>
  225. </div>
  226. <div class="api-doc-resource">
  227. <div class="api-doc-heading">
  228. <span class="label label-info" data-toggle="collapse" href="#api-area-2">GET</span>
  229. <a class="path" data-toggle="collapse" href="#api-area-2">/covered_area/&lt;int:area_id&gt;/</a>
  230. <a class="description" data-toggle="collapse" href="#api-area-2">
  231. returns the Area with id &lt;area_id&gt;
  232. </a>
  233. </div>
  234. <div id="api-area-2" class="api-doc-body collapse">
  235. <div class="api-doc-inner">
  236. <h5>Output</h5>
  237. <p>This resource returns a CoveredArea object or an ObjectNotFound error.</p>
  238. <h5>Status code</h5>
  239. <p>This resource can return the following status codes: <code>404</code>, <code>400</code>, <code>500</code>.</p>
  240. </div>
  241. </div>
  242. </div>
  243. </div>
  244. <h3 style="margin-top: 30px;">Objects</h3>
  245. <h4>ISP</h4>
  246. <pre><code>{
  247. "id": "int",
  248. "is_ffdn_member": "bool",
  249. "json_url": "string:url",
  250. "date_added": "string:ISO8601 datetime",
  251. "last_update": "string:ISO8601 datetime",
  252. "ispformat": "object:ISP Format"
  253. }</code></pre>
  254. <h4>CoveredArea</h4>
  255. <pre><code>{
  256. "id": "int",
  257. "isp": {
  258. "id": "int",
  259. "name": "string",
  260. "shortname": "string|null"
  261. },
  262. "name": "string",
  263. "geojson": "object:GeoJSON"
  264. }</code></pre>
  265. <h3 style="margin-top: 30px;">Errors</h3>
  266. <p>A typical error response looks like this:</p>
  267. <pre><code>{
  268. "error": {
  269. "message": "There was an error while processing your request",
  270. "error_type": "ispdb.api.InternalError"
  271. }
  272. }</code></pre>
  273. <p>Message is an informative message regarding the error, error_type is an optionnal field containing the error class, which can give machine-readable informations about the error.</p>
  274. <p>For now, the following error class are defined:</p>
  275. <div class="row">
  276. <table class="table table-bordered table-striped span10" style="background-color: #fff">
  277. <thead>
  278. <tr>
  279. <th style="width: 200px;">Error class</th>
  280. <th style="width: 100px;">Status code</th>
  281. <th>Description</th>
  282. </tr>
  283. </thead>
  284. <tbody>
  285. <tr>
  286. <td><code>ispdb.api.ObjectNotFound</code></td>
  287. <td>404</td>
  288. <td>Could not find the item matching the criterias you specified</td>
  289. </tr>
  290. <tr>
  291. <td><code>ispdb.api.BadInput</code></td>
  292. <td>400</td>
  293. <td>Invalid input</td>
  294. </tr>
  295. <tr>
  296. <td><code>ispdb.api.InternalError</code></td>
  297. <td>500</td>
  298. <td>Internal server error</td>
  299. </tr>
  300. </tbody>
  301. </table>
  302. </div>
  303. {%- endblock %}