TripalWebServiceResource.inc 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  1. <?php
  2. class TripalWebServiceResource {
  3. /**
  4. * The unique identifier for this resource.
  5. */
  6. protected $id;
  7. /**
  8. * The unique type of resource. The type must exists in the
  9. * context for the web service.
  10. */
  11. protected $type;
  12. /**
  13. * The JSON-LD compatible context for this resource.
  14. */
  15. protected $context;
  16. /**
  17. * Holds the data portion of the JSON-LD response for this resource.
  18. */
  19. protected $data;
  20. /**
  21. * The URL path that the service is providing to access this resource.
  22. * This path plus the $id are concatenated to form the IRI for this resource.
  23. */
  24. protected $service_path;
  25. /**
  26. * Implements the constructor.
  27. *
  28. * @param $service_path
  29. *
  30. */
  31. public function __construct($service_path) {
  32. $this->context = array();
  33. $this->data = array();
  34. $this->service_path = $service_path;
  35. // First, add the RDFS and Hydra vocabularies to the context. All Tripal
  36. // web services should use these.
  37. $vocab = tripal_get_vocabulary_details('rdf');
  38. $this->addContextItem('rdf', $this->cleanVocabURL($vocab));
  39. $vocab = tripal_get_vocabulary_details('rdfs');
  40. $this->addContextItem('rdfs', $this->cleanVocabURL($vocab));
  41. $vocab = tripal_get_vocabulary_details('hydra');
  42. $url = $this->cleanVocabURL($vocab);
  43. // $remove the '#' from the end of the URL as the HydraConsole automatically
  44. // wants to add it.
  45. //$url = preg_replace('/#/', '', $url);
  46. $this->addContextItem('hydra', $url);
  47. $vocab = tripal_get_vocabulary_details('dc');
  48. $this->addContextItem('dc', $this->cleanVocabURL($vocab));
  49. $vocab = tripal_get_vocabulary_details('schema');
  50. $this->addContextItem('schema', $this->cleanVocabURL($vocab));
  51. $vocab = tripal_get_vocabulary_details('local');
  52. $this->addContextItem('local', url($vocab['urlprefix'], array('absolute' => TRUE)). '/');
  53. $this->data['@id'] = $service_path;
  54. $this->data['@type'] = '';
  55. }
  56. /**
  57. * A helper function to remove the {db} and {accession} from the URL prefix.
  58. */
  59. private function cleanVocabURL($vocab) {
  60. $url = $vocab['urlprefix'];
  61. $url = preg_replace('/{db}:{accession}/', '', $url);
  62. $url = preg_replace('/{db}/', '', $url);
  63. $url = preg_replace('/{accession}/', '', $url);
  64. return $url;
  65. }
  66. /**
  67. * Adds a term to the '@context' section for this resource.
  68. *
  69. * This function should not be called directory. Rather, the
  70. * addContextTerm() and addContextVocab() functions built
  71. * into the TripalWebService class should be used as these will help
  72. * ensure terms are added proper for the context of the web service.
  73. *
  74. * @param $name
  75. * The term name.
  76. * @param $iri
  77. * The Internationalized Resource Identifiers or it's shortcut.
  78. *
  79. */
  80. public function addContextItem($name, $iri) {
  81. if (array_key_exists($name, $this->context)) {
  82. return;
  83. }
  84. $this->context[$name] = $iri;
  85. }
  86. /**
  87. * Removes a term for the '@context' section for this resource.
  88. *
  89. * @param $name
  90. * The term name.
  91. * @param $iri
  92. * The Internationalized Resource Identifiers or it's shortcut.
  93. */
  94. public function removeContextItem($name, $iri) {
  95. // TODO: make sure that if a shortcut is used that the parent is present.
  96. unset($this->context[$name]);
  97. }
  98. /**
  99. * Sets the resource type.
  100. *
  101. * The type exist in the context of the web service.
  102. *
  103. * @param $type
  104. * The type
  105. */
  106. public function setType($type) {
  107. $this->checkKey($type);
  108. $this->type = $type;
  109. $this->data['@type'] = $type;
  110. }
  111. /**
  112. * Checks a key to ensure it is in the Context before being used.
  113. *
  114. * This function should be used before adding a property or type to this
  115. * resource. It ensures that the key for the property is already in the
  116. * context.
  117. *
  118. * @param $key
  119. * The key to check.
  120. * @throws Exception
  121. */
  122. private function checkKey($key) {
  123. // Make sure the key is already present in the context.
  124. $keys = array_keys($this->context);
  125. // Keys that are full HTML are acceptable
  126. if (preg_match('/^(http|https):\/\/.*/', $key)) {
  127. return;
  128. }
  129. // If the key has a colon separating the vocabulary and the term then we
  130. // just need to make sure that the vocabulary is present.
  131. $matches = array();
  132. if (preg_match('/^(.*?):(.*?)$/', $key, $matches)) {
  133. $vocab = $matches[1];
  134. $accession = $matches[2];
  135. // The underscore represents the blank node. So, these keys are okay.
  136. if ($vocab == '_') {
  137. return;
  138. }
  139. // If the vocabulary is not in the.
  140. if (!in_array($vocab, $keys)) {
  141. throw new Exception("The key, '$key', has a vocabulary that has not yet been added to the " .
  142. "context. Use the addContextItem() function to add the vocabulary prior to adding a value for it.");
  143. }
  144. }
  145. else {
  146. // If the key is not in the context then throw an error.
  147. if (!in_array($key, $keys)) {
  148. throw new Exception("The key, '$key', has not yet been added to the " .
  149. "context. Use the addContextItem() function to add this key prior to adding a value for it.");
  150. }
  151. }
  152. }
  153. /**
  154. * Checks the value to make sure there are no problems with.
  155. *
  156. * Will also expand any TriaplWebServiceResource by adding their
  157. * context to this resource and substitute their data in place of the
  158. * value.
  159. *
  160. * @param $value
  161. *
  162. */
  163. private function checkValue(&$value) {
  164. if (is_array($value)) {
  165. foreach ($value as $i => $v) {
  166. $this->checkValue($value[$i]);
  167. }
  168. }
  169. else {
  170. // If this is a TripalWebServiceResource then get it's data and use that
  171. // as the new value. Also, add in the elements context to this resource.
  172. if (is_a($value, 'TripalWebServiceResource') or is_subclass_of($value, 'TripalWebServiceResource')) {
  173. $context = $value->getContext();
  174. foreach ($context as $k => $v) {
  175. $this->addContextItem($k, $v);
  176. }
  177. $value = $value->getData();
  178. }
  179. }
  180. }
  181. /**
  182. * Set's the unique identifier for the resource.
  183. *
  184. * Every resource must have a unique Idientifer. In JSON-LD the '@id' element
  185. * identifies the IRI for the resource which will include the unique
  186. * identifier. The TraiplWebService to which a resource is added will
  187. * build the IRIs but it needs the unique ID of each resource.
  188. *
  189. * @param $id
  190. * The unique identifier for the resource.
  191. */
  192. public function setID($id) {
  193. $this->id = $id;
  194. $this->data['@id'] = $this->getURI($id);
  195. }
  196. /**
  197. * Retreives the IRI for an entity of a given ID in this web service.
  198. *
  199. * @param $id
  200. * The unique identifier for the resource.
  201. */
  202. public function getURI($id) {
  203. // If this is a key/value pair for an id and if the vocab portion is
  204. // an underscore then this represents a blank node and we don't want
  205. // to add the full path.
  206. $matches = array();
  207. if (preg_match('/^(.*?):(.*?)$/', $id, $matches)) {
  208. $vocab = $matches[1];
  209. if ($vocab == '_') {
  210. return $id;
  211. }
  212. return $id;
  213. }
  214. else {
  215. return $this->service_path . '/' . $id;
  216. }
  217. }
  218. /**
  219. * Retrieves the unique identifier for this resource.
  220. *
  221. * Every resource must have a unique Idientifer. In JSON-LD the '@id' element
  222. * identifies the IRI for the resource which will include the unique
  223. * identifier. The TraiplWebService to which a resource is added will
  224. * build the IRIs but it needs the unique ID of each resource.
  225. *
  226. * @return
  227. * The unique identifier for the resource.
  228. */
  229. public function getID() {
  230. return $this->id;
  231. }
  232. /**
  233. * Retreives the type of this resource.
  234. *
  235. * @return
  236. * The name of the resource.
  237. */
  238. public function getType() {
  239. return $this->type;
  240. }
  241. /**
  242. * Adds a new key/value pair to the web serivces response.
  243. *
  244. * The value must either be a scalar or another TripalWebServiceResource
  245. * object. If the same key is usesd multiple times then the resulting
  246. * resource will be presented as an array of elements.
  247. *
  248. * @param unknown $key
  249. * The name of the $key to add. This key must already be present in the
  250. * web service context by first adding it using the addContextItem()
  251. * member function.
  252. * @param unknown $value
  253. * The value of the key which must either be a scalar or a
  254. * TripalWebServiceResource instance.
  255. */
  256. public function addProperty($key, $value) {
  257. $this->checkKey($key);
  258. $this->checkValue($value);
  259. // If this is a numeric keyed array then add each item.
  260. if (is_array($value) and count(array_filter(array_keys($value), 'is_int')) == count(array_keys($value))) {
  261. if (!array_key_exists($key, $this->data)) {
  262. $this->data[$key] = array();
  263. }
  264. foreach ($value as $item) {
  265. $this->addProperty($key, $item);
  266. }
  267. return;
  268. }
  269. // If this key doesn't exist then add the value directly to the key.
  270. if (!array_key_exists($key, $this->data)) {
  271. $this->data[$key] = $value;
  272. }
  273. // Else if it does exist then we need to make sure that the element is
  274. // an array and add it.
  275. else {
  276. // If this is the second element, then convert it to an array. The
  277. // second test in the condition below is for for a numeric array.
  278. if (!is_array($this->data[$key]) or count(array_filter(array_keys($this->data[$key]), 'is_string')) > 0) {
  279. $element = $this->data[$key];
  280. $this->data[$key] = array();
  281. $this->data[$key][] = $element;
  282. }
  283. $this->data[$key][] = $value;
  284. }
  285. }
  286. /**
  287. * Retrieves the value of a property.
  288. *
  289. * @param $key
  290. * The name of the property.
  291. *
  292. * @param
  293. * The value of the property. This could be a scalar, array or
  294. * a TripalWebService object.
  295. */
  296. function getProperty($key) {
  297. return $this->data[$key];
  298. }
  299. /**
  300. * Retrieves the data section of the resource.
  301. *
  302. * The JSON-LD response constists of two sections the '@context' section
  303. * and the data section. This function only returns the data section
  304. * for this resource
  305. *
  306. * @return
  307. * An associative array containing the data section of the response.
  308. */
  309. public function getData() {
  310. return $this->data;
  311. }
  312. /**
  313. * Retrieves the data section of the resource.
  314. *
  315. * The JSON-LD response constists of two sections the '@context' section
  316. * and the data section. This function only returns the data section
  317. * for this resource
  318. *
  319. * @return
  320. * An associative array containing the data section of the response.
  321. */
  322. public function getContext() {
  323. return $this->context;
  324. }
  325. /**
  326. * Copies the context from a given TripalWebService resource to this
  327. * resource.
  328. *
  329. * @param $resource
  330. */
  331. public function setContext($resource) {
  332. if (!is_a($resource, 'TripalWebServiceResource')) {
  333. throw new Exception("The \$resource argument must be an instance of a TripalWebServiceResource.");
  334. }
  335. $this->context = $resource->getContext();
  336. }
  337. }