TripalWebServiceResource.inc 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  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 TripalWebService $service
  29. * An instance of a TripalWebService or class that extends it.
  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('rdfs');
  38. $this->addContextItem('rdfs', $vocab['url']);
  39. $vocab = tripal_get_vocabulary_details('hydra');
  40. $this->addContextItem('hydra', $vocab['url']);
  41. $vocab = tripal_get_vocabulary_details('dc');
  42. $this->addContextItem('dc', $vocab['url']);
  43. $vocab = tripal_get_vocabulary_details('schema');
  44. $this->addContextItem('schema', $vocab['url']);
  45. $vocab = tripal_get_vocabulary_details('local');
  46. $this->addContextItem('local', $vocab['url']);
  47. $this->data['@id'] = $service_path;
  48. $this->data['@type'] = '';
  49. }
  50. /**
  51. * Adds a term to the '@context' section for this resource.
  52. *
  53. * @param $name
  54. * The term name.
  55. * @param $iri
  56. * The Internationalized Resource Identifiers or it's shortcut.
  57. */
  58. public function addContextItem($name, $iri) {
  59. // TODO: make sure that if a shortcut is used that the parent is present.
  60. $this->context[$name] = $iri;
  61. }
  62. /**
  63. * Removes a term for the '@context' section for this resource.
  64. *
  65. * @param $name
  66. * The term name.
  67. * @param $iri
  68. * The Internationalized Resource Identifiers or it's shortcut.
  69. */
  70. public function removeContextItem($name, $iri) {
  71. // TODO: make sure that if a shortcut is used that the parent is present.
  72. unset($this->context[$name]);
  73. }
  74. /**
  75. * Sets the resource type.
  76. *
  77. * The type exist in the context of the web service.
  78. *
  79. * @param $type
  80. * The type
  81. */
  82. public function setType($type) {
  83. $this->checkKey($type);
  84. $this->type = $type;
  85. $this->data['@type'] = $type;
  86. }
  87. /**
  88. * Checks a key to ensure it is in the Context before being used.
  89. *
  90. * This function should be used before adding a property or type to this
  91. * resource. It ensures that the key for the property is already in the
  92. * context.
  93. *
  94. * @param $key
  95. * The key to check.
  96. * @throws Exception
  97. */
  98. private function checkKey($key) {
  99. // Make sure the key is already present in the context.
  100. $keys = array_keys($this->context);
  101. // Keys that are full HTML are acceptable
  102. if (preg_match('/^(http|https):\/\/.*/', $key)) {
  103. return;
  104. }
  105. // If the key has a colon separating the vocabulary and the term then we
  106. // just need to make sure that the vocabulary is present.
  107. $matches = array();
  108. if (preg_match('/^(.*?):(.*?)$/', $key, $matches)) {
  109. $vocab = $matches[1];
  110. $accession = $matches[2];
  111. // The underscore represents the blank node. So, these keys are okay.
  112. if ($vocab == '_') {
  113. return;
  114. }
  115. // If the vocabulary is not in the.
  116. if (!in_array($vocab, $keys)) {
  117. throw new Exception("The key, '$key', has a vocabulary that has not yet been added to the " .
  118. "context. Use the addContextItem() function to add the vocabulary prior to adding a value for it.");
  119. }
  120. }
  121. else {
  122. // If the key is not in the context then throw an error.
  123. if (!in_array($key, $keys)) {
  124. throw new Exception("The key, '$key', has not yet been added to the " .
  125. "context. Use the addContextItem() function to add this key prior to adding a value for it.");
  126. }
  127. }
  128. }
  129. /**
  130. * Set's the unique identifier for the resource.
  131. *
  132. * Every resource must have a unique Idientifer. In JSON-LD the '@id' element
  133. * identifies the IRI for the resource which will include the unique
  134. * identifier. The TraiplWebService to which a resource is added will
  135. * build the IRIs but it needs the unique ID of each resource.
  136. *
  137. * @param $id
  138. * The unique identifier for the resource.
  139. */
  140. public function setID($id) {
  141. $this->id = $id;
  142. $this->data['@id'] = $this->getURI($id);
  143. }
  144. /**
  145. * Retreives the IRI for an entity of a given ID in this web service.
  146. *
  147. * @param $id
  148. * The unique identifier for the resource.
  149. */
  150. public function getURI($id) {
  151. // If this is a key/value pair for an id and if the vocab portion is
  152. // an underscore then this represents a blank node and we don't want
  153. // to add the full path.
  154. $matches = array();
  155. if (preg_match('/^(.*?):(.*?)$/', $id, $matches)) {
  156. $vocab = $matches[1];
  157. if ($vocab == '_') {
  158. return $id;
  159. }
  160. return $id;
  161. }
  162. else {
  163. return $this->service_path . '/' . $id;
  164. }
  165. }
  166. /**
  167. * Retrieves the unique identifier for this resource.
  168. *
  169. * Every resource must have a unique Idientifer. In JSON-LD the '@id' element
  170. * identifies the IRI for the resource which will include the unique
  171. * identifier. The TraiplWebService to which a resource is added will
  172. * build the IRIs but it needs the unique ID of each resource.
  173. *
  174. * @return
  175. * The unique identifier for the resource.
  176. */
  177. public function getID() {
  178. return $this->id;
  179. }
  180. /**
  181. * Retreives the type of this resource.
  182. *
  183. * @return
  184. * The name of the resource.
  185. */
  186. public function getType() {
  187. return $this->type;
  188. }
  189. /**
  190. * Adds a new key/value pair to the web serivces response.
  191. *
  192. * The value must either be a scalar or another TripalWebServiceResource
  193. * object. If the same key is usesd multiple times then the resulting
  194. * resource will be presented as an array of elements.
  195. *
  196. * @param unknown $key
  197. * The name of the $key to add. This key must already be present in the
  198. * web service context by first adding it using the addContextItem()
  199. * member function.
  200. * @param unknown $value
  201. * The value of the key which must either be a scalar or a
  202. * TripalWebServiceResource instance.
  203. */
  204. public function addProperty($key, $value) {
  205. $this->checkKey($key);
  206. // If this is a numeric array then go through each element and add them.
  207. if (is_array($value) and count(array_filter(array_keys($value), 'is_int')) == count(array_keys($value))) {
  208. if (!array_key_exists($key, $this->data)) {
  209. $this->data[$key] = array();
  210. }
  211. foreach ($value as $item) {
  212. $this->addProperty($key, $item);
  213. }
  214. return;
  215. }
  216. // If this is a TripalWebServiceResource then get it's data and use that
  217. // as the new value.
  218. if (is_a($value, 'TripalWebServiceResource') or is_subclass_of($value, 'TripalWebServiceResource')) {
  219. // Add in the context items to this resource.
  220. $context = $value->getContext();
  221. foreach ($context as $k => $v) {
  222. $this->addContextItem($k, $v);
  223. }
  224. $value = $value->getData();
  225. }
  226. // If this key doesn't exist then add the value directly to the key.
  227. if (!array_key_exists($key, $this->data)) {
  228. $this->data[$key] = $value;
  229. }
  230. // Else if it does exist then we need to make sure that the element is
  231. // an array and add it.
  232. else {
  233. // If this is the second element, then convert it to an array. The
  234. // second test in the condition below is for for a numeric array.
  235. if (!is_array($this->data[$key]) or count(array_filter(array_keys($this->data[$key]), 'is_string')) > 0) {
  236. $element = $this->data[$key];
  237. $this->data[$key] = array();
  238. $this->data[$key][] = $element;
  239. }
  240. $this->data[$key][] = $value;
  241. }
  242. }
  243. /**
  244. * Retrieves the data section of the resource.
  245. *
  246. * The JSON-LD response constists of two sections the '@context' section
  247. * and the data section. This function only returns the data section
  248. * for this resource
  249. *
  250. * @return
  251. * An associative array containing the data section of the response.
  252. */
  253. public function getData() {
  254. return $this->data;
  255. }
  256. /**
  257. * Retrieves the data section of the resource.
  258. *
  259. * The JSON-LD response constists of two sections the '@context' section
  260. * and the data section. This function only returns the data section
  261. * for this resource
  262. *
  263. * @return
  264. * An associative array containing the data section of the response.
  265. */
  266. public function getContext() {
  267. return $this->context;
  268. }
  269. /**
  270. * Copies the context from a given TripalWebService resource to this
  271. * resource.
  272. *
  273. * @param $resource
  274. */
  275. public function setContext($resource) {
  276. if (!is_a($resource, 'TripalWebServiceResource')) {
  277. throw new Exception("The \$resource argument must be an instance of a TripalWebServiceResource.");
  278. }
  279. $this->context = $resource->getContext();
  280. }
  281. }