forked from Islandora/tuque
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FedoraApi.php
1401 lines (1289 loc) · 48.3 KB
/
FedoraApi.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* @file
* The RAW API wrappers for the Fedora interface.
*
* This file currently contains fairly raw wrappers around the Fedora REST
* interface. These could also be reinmplemented to use for example the Fedora
* SOAP interface. If there are version specific modifications to be made for
* Fedora, this is the place to make them.
*/
require_once 'RepositoryException.php';
require_once 'RepositoryConnection.php';
/**
* This is a simple class that brings FedoraApiM and FedoraApiA together.
*/
class FedoraApi {
/**
* Fedora APIA Class
* @var FedoraApiA
*/
public $a;
/**
* Fedora APIM Class
* @var FedoraApiM
*/
public $m;
public $connection;
/**
* Constructor for the FedoraApi object.
*
* @param RepositoryConnection $connection
* (Optional) If one isn't provided a default one will be used.
* @param FedoraApiSerializer $serializer
* (Optional) If one isn't provided a default will be used.
*/
public function __construct(RepositoryConnection $connection = NULL, FedoraApiSerializer $serializer = NULL) {
if (!$connection) {
$connection = new RepositoryConnection();
}
if (!$serializer) {
$serializer = new FedoraApiSerializer();
}
$this->a = new FedoraApiA($connection, $serializer);
$this->m = new FedoraApiM($connection, $serializer);
$this->connection = $connection;
}
}
/**
* This class implements the Fedora API-A interface. This is a light wrapper
* around the Fedora interface. Very little attempt is put into putting things
* into native PHP datastructures.
*
* See this page for more information:
* https://wiki.duraspace.org/display/FEDORA35/REST+API
*/
class FedoraApiA {
protected $connection;
protected $serializer;
/**
* Constructor for the new FedoraApiA object.
*
* @param RepositoryConnection $connection
* Takes the Respository Connection object for the Respository this API
* should connect to.
* @param FedoraApiSerializer $serializer
* Takes the serializer object to that will be used to serialze the XML
* Fedora returns.
*/
public function __construct(RepositoryConnection $connection, FedoraApiSerializer $serializer) {
$this->connection = $connection;
$this->serializer = $serializer;
}
/**
* Returns basic information about the Repository.
*
* This is listed as an unimplemented function in the official API for Fedora.
* However other libraries connecting to the Fedora REST interaface use this
* so we are including it here. It may change in the future.
*
* @throws RepositoryException
*
* @return array()
* An array describing the repository.
* @code
* Array
* (
* [repositoryName] => Fedora Repository
* [repositoryBaseURL] => http://localhost:8080/fedora
* [repositoryVersion] => 3.4.1
* [repositoryPID] => Array
* (
* [PID-namespaceIdentifier] => changeme
* [PID-delimiter] => :
* [PID-sample] => changeme:100
* [retainPID] => *
* )
*
* [repositoryOAI-identifier] => Array
* (
* [OAI-namespaceIdentifier] => example.org
* [OAI-delimiter] => :
* [OAI-sample] => oai:example.org:changeme:100
* )
*
* [sampleSearch-URL] => http://localhost:8080/fedora/objects
* [sampleAccess-URL] => http://localhost:8080/fedora/objects/demo:5
* [sampleOAI-URL] => http://localhost:8080/fedora/oai?verb=Identify
* [adminEmail] => Array
* (
* [0] => bob@example.org
* [1] => sally@example.org
* )
*
* )
* @endcode
*/
public function describeRepository() {
// This is weird and undocumented, but its what the web client does.
$request = "/describe";
$separator = '?';
$this->connection->addParam($request, $separator, 'xml', 'true');
$response = $this->connection->getRequest($request);
$response = $this->serializer->describeRepository($response);
return $response;
}
/**
* Authenticate and provide information about a user's fedora attributes.
*
* Please note that calling this method
* with an unauthenticated (i.e. anonymous) user will throw
* an 'HttpConnectionException' with the message 'Unauthorized'.
*
* @return array()
* Returns an array containing user attributes (i.e. fedoraRole).
* @code
* Array
* (
* [fedoraRole] => Array
* (
* [0] => authenticated user
* )
* [role] => Array
* (
* [0] => authenticated user
* )
* )
* @endcode
*/
public function userAttributes() {
$request = "/user";
$separator = '?';
$this->connection->addParam($request, $separator, 'xml', 'true');
$response = $this->connection->getRequest($request);
$response = $this->serializer->userAttributes($response);
return $response;
}
/**
* Query fedora to return a list of objects.
*
* @param string $type
* The type of query. Decides the format of the next parameter. Valid
* options are:
* - query: specific query on certain fields
* - terms: search in any field
* @param string $query
* The format of this parameter depends on what was passed to type. The
* formats are:
* - query: A sequence of space-separated conditions. A condition consists
* of a metadata element name followed directly by an operator, followed
* directly by a value. Valid element names are (pid, label, state,
* ownerId, cDate, mDate, dcmDate, title, creator, subject, description,
* publisher, contributor, date, type, format, identifier, source,
* language, relation, coverage, rights). Valid operators are:
* contains (~), equals (=), greater than (>), less than (<), greater than
* or equals (>=), less than or equals (<=). The contains (~) operator
* may be used in combination with the ? and * wildcards to query for
* simple string patterns. Values may be any string. If the string
* contains a space, the value should begin and end with a single quote
* character ('). If all conditions are met for an object, the object is
* considered a match.
* - terms: A phrase represented as a sequence of characters (including the
* ? and * wildcards) for the search. If this sequence is found in any of
* the fields for an object, the object is considered a match.
* @param int $max_results
* (optional) Default: 25. The maximum number of results that the server
* should provide at once.
* @param array $display_fields
* (optional) Default: array('pid', 'title'). The fields to be returned as
* an indexed array. Valid element names are the same as the ones given for
* the query parameter.
*
* @throws RepositoryException
*
* @return array()
* The results are returned in an array key called 'results'. If there
* are more results that aren't returned then the search session information
* is contained in a key called 'session'. Note that it is possible for
* some display fields to be multivalued, such as identifier (DC allows
* multiple DC identifier results) in the case there are multiple results
* an array is returned instread of a string, this indexed array contains
* all of the values.
* @code
* Array
* (
* [session] => Array
* (
* [token] => 96b2604f040067645f45daf029062d6e
* [cursor] => 0
* [expirationDate] => 2012-03-07T14:28:24.886Z
* )
*
* [results] => Array
* (
* [0] => Array
* (
* [pid] => islandora:collectionCModel
* [title] => Islandora Collection Content Model
* [identifier] => Contents of DC:Identifier
* )
*
* [1] => Array
* (
* [pid] => islandora:testCModel
* [title] => Test content model for Ari
* [identifier] => Array
* (
* [0] => Contents of first DC:Identifier
* [1] => Contents of seconds DC:Identifier
* )
*
* )
*
* )
*
* )
* @endcode
*/
public function findObjects($type, $query, $max_results = NULL, $display_fields = array('pid', 'title')) {
$request = "/objects";
$separator = '?';
$this->connection->addParam($request, $separator, 'resultFormat', 'xml');
switch ($type) {
case 'terms':
$this->connection->addParam($request, $separator, 'terms', $query);
break;
case 'query':
$this->connection->addParam($request, $separator, 'query', $query);
break;
default:
throw new RepositoryBadArguementException('$type must be either: terms or query.');
}
$this->connection->addParam($request, $separator, 'maxResults', $max_results);
if (is_array($display_fields)) {
foreach ($display_fields as $display) {
$this->connection->addParam($request, $separator, $display, 'true');
}
}
$response = $this->connection->getRequest($request);
$response = $this->serializer->findObjects($response);
return $response;
}
/**
* Returns next set of objects when given session key.
*
* @param string $session_token
* Session token returned from previous search call.
*
* @throws RespositoryException
*
* @return array()
* The result format is the same as findObjects.
*
* @see FedoraApiA::findObjects
*/
public function resumeFindObjects($session_token) {
$session_token = urlencode($session_token);
$request = "/objects";
$separator = '?';
$this->connection->addParam($request, $separator, 'resultFormat', 'xml');
$this->connection->addParam($request, $separator, 'sessionToken', $session_token);
$response = $this->connection->getRequest($request);
$response = $this->serializer->resumeFindObjects($response);
return $response;
}
/**
* Get the default dissemination of a datastream. (Get the contents).
*
* @param String $pid
* Persistent identifier of the digital object.
* @param String $dsid
* Datastream identifier.
* @param array $as_of_date_time
* (optional) Indicates that the result should be relative to the
* digital object as it existed at the given date and time. Defaults to
* the most recent version.
* @param array $file
* (optional) A file to retrieve the dissemination into.
*
* @throws RespositoryException
*
* @return string
* The response from Fedora with the contents of the datastream if file
* isn't set. Returns TRUE if the file parameter is passed.
*/
public function getDatastreamDissemination($pid, $dsid, $as_of_date_time = NULL, $file = NULL) {
$pid = urlencode($pid);
$dsid = urlencode($dsid);
$separator = '?';
$request = "/objects/$pid/datastreams/$dsid/content";
$this->connection->addParam($request, $separator, 'asOfDateTime', $as_of_date_time);
$response = $this->connection->getRequest($request, FALSE, $file);
$response = $this->serializer->getDatastreamDissemination($response, $file);
return $response;
}
/**
* Get a datastream dissemination from Fedora.
*
* @param String $pid
* Persistent identifier of the digital object.
* @param String $sdef_pid
* Persistent identifier of the sDef defining the methods.
* @param String $method
* Method to invoke.
* @param String $method_parameters
* A key-value paired array of parameters required by the method.
*
* @throws RespositoryException
*
* @return string
* The response from Fedora.
*/
public function getDissemination($pid, $sdef_pid, $method, $method_parameters = NULL) {
$pid = urlencode($pid);
$sdef_pid = urldecode($sdef_pid);
$method = urlencode($method);
$request = "/objects/$pid/methods/$sdef_pid/$method";
$separator = '?';
if (isset($method_parameters) && is_array($method_parameters)) {
foreach ($method_parameters as $key => $value) {
$this->connection->addParam($request, $separator, $key, $value);
}
}
$response = $this->connection->getRequest($request);
$response = $this->serializer->getDissemination($response);
return $response;
}
/**
* Get the change history for the object.
*
* @param String $pid
* Persistent identifier of the digital object.
*
* @throws RepositoryException
*
* @return array()
* An array containing the different revisions of the object.
* @code
* Array
* (
* [0] => 2011-07-08T18:01:40.384Z
* [1] => 2011-07-08T18:01:40.464Z
* [2] => 2011-07-08T18:01:40.552Z
* [3] => 2011-07-08T18:01:40.694Z
* [4] => 2012-02-22T15:07:15.305Z
* [5] => 2012-02-29T14:20:28.857Z
* [6] => 2012-02-29T14:22:18.239Z
* [7] => 2012-02-29T14:22:46.545Z
* [8] => 2012-02-29T20:52:33.069Z
* )
* @endcode
*/
public function getObjectHistory($pid) {
$pid = urlencode($pid);
$request = "/objects/$pid/versions";
$separator = '?';
$this->connection->addParam($request, $separator, 'format', 'xml');
$response = $this->connection->getRequest($request);
$response = $this->serializer->getObjectHistory($response);
return $response;
}
/**
* Implements the getObjectProfile Fedora API-A method.
*
* @param String $pid
* Persistent identifier of the digital object.
* @param String $as_of_date_time
* (Optional) Indicates that the result should be relative to the digital
* object as it existed on the given date. Date Format: yyyy-MM-dd or
* yyyy-MM-ddTHH:mm:ssZ
*
* @throws RepositoryException
*
* @return array()
* Returns information about the digital object.
* @code
* Array
* (
* [objLabel] => Islandora strict PDF content model
* [objOwnerId] => fedoraAdminnnn
* [objModels] => Array
* (
* [0] => info:fedora/fedora-system:ContentModel-3.0
* [1] => info:fedora/fedora-system:FedoraObject-3.0
* )
*
* [objCreateDate] => 2011-07-08T18:01:40.384Z
* [objLastModDate] => 2012-03-02T20:50:13.534Z
* [objDissIndexViewURL] => http://localhost:8080/fedora/objects/
* islandora%3Astrict_pdf/methods/fedora-system%3A3/viewMethodIndex
* [objItemIndexViewURL] => http://localhost:8080/fedora/objects/
* islandora%3Astrict_pdf/methods/fedora-system%3A3/viewItemIndex
* [objState] => A
* )
* @endcode
*/
public function getObjectProfile($pid, $as_of_date_time = NULL) {
$pid = urlencode($pid);
$request = "/objects/{$pid}";
$separator = '?';
$this->connection->addParam($request, $separator, 'format', 'xml');
$this->connection->addParam($request, $separator, 'asOfDateTime', $as_of_date_time);
$response = $this->connection->getRequest($request);
$response = $this->serializer->getObjectProfile($response);
return $response;
}
/**
* List all the datastreams that are associated with this PID.
*
* @param string $pid
* Persistent identifier of the digital object.
* @param string $as_of_date_time
* (optional) Indicates that the result should be relative to the digital
* object as it existed on the given date. Date Format: yyyy-MM-dd or
* yyyy-MM-ddTHH:mm:ssZ.
*
* @throws RepositoryException
*
* @return array()
* An associative array with the dsid of the datastreams as the key and
* the mimetype and label as the value.
* @code
* Array
* (
* [DC] => Array
* (
* [label] => Dublin Core Record for this object
* [mimetype] => text/xml
* )
*
* [RELS-EXT] => Array
* (
* [label] => Fedora Object-to-Object Relationship Metadata
* [mimetype] => text/xml
* )
*
* [ISLANDORACM] => Array
* (
* [label] => ISLANDORACM
* [mimetype] => text/xml
* )
*
* )
* @endcode
*/
public function listDatastreams($pid, $as_of_date_time = NULL) {
$pid = urlencode($pid);
$request = "/objects/{$pid}/datastreams";
$separator = '?';
$this->connection->addParam($request, $separator, 'format', 'xml');
$this->connection->addParam($request, $separator, 'asOfDateTime', $as_of_date_time);
$response = $this->connection->getRequest($request);
$response = $this->serializer->listDatastreams($response);
return $response;
}
/**
* Implements the listMethods Fedora API-A method.
*
* @param String $pid
* Persistent identifier of the digital object.
* @param String $sdef_pid
* (Optional) Persistent identifier of the SDef defining the methods.
* @param String $as_of_date_time
* (Optional) Indicates that the result should be relative to the digital
* object as it existed on the given date. Date Format: yyyy-MM-dd or
* yyyy-MM-ddTHH:mm:ssZ.
*
* @throws RepositoryException
*
* @return array()
* An array containing data about the methods that can be called. The result
* array is an associative array where the sdef pid is the key and the value
* is a indexed array of methods.
* @code
* Array
* (
* [ilives:viewerSdef] => Array
* (
* [0] => getViewer
* )
*
* [ilives:jp2Sdef] => Array
* (
* [0] => getMetadata
* [1] => getRegion
* )
*
* [fedora-system:3] => Array
* (
* [0] => viewObjectProfile
* [1] => viewMethodIndex
* [2] => viewItemIndex
* [3] => viewDublinCore
* )
*
* )
* @endcode
*/
public function listMethods($pid, $sdef_pid = '', $as_of_date_time = NULL) {
$pid = urlencode($pid);
$sdef_pid = urlencode($sdef_pid);
$request = "/objects/{$pid}/methods/{$sdef_pid}";
$separator = '?';
$this->connection->addParam($request, $separator, 'format', 'xml');
$this->connection->addParam($request, $separator, 'asOfDateTime', $as_of_date_time);
$response = $this->connection->getRequest($request);
$response = $this->serializer->listMethods($response);
return $response;
}
}
/**
* This class implements the Fedora API-M interface. This is a light wrapper
* around the Fedora interface. Very little attempt is put into putting things
* into native PHP datastructures.
*
* See this page for more information:
* https://wiki.duraspace.org/display/FEDORA35/REST+API
*/
class FedoraApiM {
/**
* Constructor for the new FedoraApiM object.
*
* @param RepositoryConnection $connection
* Takes the Respository Connection object for the Respository this API
* should connect to.
* @param FedoraApiSerializer $serializer
* Takes the serializer object to that will be used to serialze the XML
* Fedora returns.
*/
public function __construct(RepositoryConnection $connection, FedoraApiSerializer $serializer) {
$this->connection = $connection;
$this->serializer = $serializer;
}
/**
* Add a new datastream to a fedora object.
*
* The datastreams are sent to Fedora using a multipart post if a string
* or file is provided otherwise Fedora will go out and fetch the URL
*
* @param string $pid
* Persistent identifier of the digital object.
* @param string $dsid
* Datastream identifier.
* @param string $type
* This parameter tells the function what type of arguement is given for
* file. It must be one of:
* - string: The datastream is passed as a string.
* - file: The datastream is contained in a file.
* - url: The datastream is located at a URL, which is passed as a string.
* this is the only option that can be used for R and E type datastreams.
* @param string $file
* This parameter depends on what is selected for $type.
* - string: A string containing the datastream.
* - file: A string containing the file name that contains the datastream.
* The file name must be a full path.
* - url: A string containing the publically accessable URL that the
* datastream is located at.
* @param array() $params
* (optional) An array that can have one or more of the following elements:
* - controlGroup: one of "X", "M", "R", or "E" (Inline *X*ML, *M*anaged
* Content, *R*edirect, or *E*xternal Referenced). Default: X.
* - altIDs: alternate identifiers for the datastream. A space seperated
* list of alternate identifiers for the datastream.
* - dsLabel: the label for the datastream.
* - versionable: enable versioning of the datastream (boolean).
* - dsState: one of "A", "I", "D" (*A*ctive, *I*nactive, *D*eleted).
* - formatURI: the format URI of the datastream.
* - checksumType: the algorithm used to compute the checksum. One of
* DEFAULT, DISABLED, MD5, SHA-1, SHA-256, SHA-384, SHA-512.
* - checksum: the value of the checksum represented as a hexadecimal
* string.
* - mimeType: the MIME type of the content being added, this overrides the
* Content-Type request header.
* - logMessage: a message describing the activity being performed.
*
* @throws RepositoryException
*
* @return array()
* Returns an array describing the new datastream. This is the same array
* returned by getDatastream. This may also contain an dsAltID key, that
* contains any alternate ids if any are specified.
* @code
* Array
* (
* [dsLabel] =>
* [dsVersionID] => test.3
* [dsCreateDate] => 2012-03-07T18:03:38.679Z
* [dsState] => A
* [dsMIME] => text/xml
* [dsFormatURI] =>
* [dsControlGroup] => M
* [dsSize] => 22
* [dsVersionable] => true
* [dsInfoType] =>
* [dsLocation] => islandora:strict_pdf+test+test.3
* [dsLocationType] => INTERNAL_ID
* [dsChecksumType] => DISABLED
* [dsChecksum] => none
* [dsLogMessage] =>
* )
* @endcode
*
* @see FedoraApiM::getDatastream
*/
public function addDatastream($pid, $dsid, $type, $file, $params) {
$pid = urlencode($pid);
$dsid = urlencode($dsid);
$request = "/objects/$pid/datastreams/$dsid";
$separator = '?';
switch (strtolower($type)) {
case 'file':
case 'string':
break;
case 'url':
$this->connection->addParam($request, $separator, 'dsLocation', $file);
$type = 'none';
break;
default:
throw new RepositoryBadArguementException("Type must be one of: file, string, url. ($type)");
break;
}
$this->connection->addParamArray($request, $separator, $params, 'controlGroup');
$this->connection->addParamArray($request, $separator, $params, 'altIDs');
$this->connection->addParamArray($request, $separator, $params, 'dsLabel');
$this->connection->addParamArray($request, $separator, $params, 'versionable');
$this->connection->addParamArray($request, $separator, $params, 'dsState');
$this->connection->addParamArray($request, $separator, $params, 'formatURI');
$this->connection->addParamArray($request, $separator, $params, 'checksumType');
$this->connection->addParamArray($request, $separator, $params, 'checksum');
$this->connection->addParamArray($request, $separator, $params, 'mimeType');
$this->connection->addParamArray($request, $separator, $params, 'logMessage');
$response = $this->connection->postRequest($request, $type, $file);
$response = $this->serializer->addDatastream($response);
return $response;
}
/**
* Add a RDF relationship to a Fedora object.
*
* @param string $pid
* Persistent identifier of the digital object.
* @param array $relationship
* An array containing the subject, predicate and object for the
* relationship.
* - subject: (optional) Subject of the relationship. Either a URI for the
* object or one of its datastreams. If none is given then the URI for
* the current object is used.
* - predicate: Predicate of the relationship.
* - object: Object of the relationship.
* @param boolean $is_literal
* true if the object of the relationship is a literal, false if it is a URI
* @param string $datatype
* (optional) if the object is a literal, the datatype of the literal.
*
* @throws RepositoryException
*
* @see FedoraApiM::getRelationships
* @see FedoraApiM::purgeRelationships
*/
public function addRelationship($pid, $relationship, $is_literal, $datatype = NULL) {
if (!isset($relationship['predicate'])) {
throw new RepositoryBadArguementException('Relationship array must contain a predicate element');
}
if (!isset($relationship['object'])) {
throw new RepositoryBadArguementException('Relationship array must contain a object element');
}
$pid = urlencode($pid);
$request = "/objects/$pid/relationships/new";
$separator = '?';
$this->connection->addParamArray($request, $separator, $relationship, 'subject');
$this->connection->addParamArray($request, $separator, $relationship, 'predicate');
$this->connection->addParamArray($request, $separator, $relationship, 'object');
$this->connection->addParam($request, $separator, 'isLiteral', $is_literal);
$this->connection->addParam($request, $separator, 'datatype', $datatype);
$response = $this->connection->postRequest($request);
$response = $this->serializer->addRelationship($response);
}
/**
* Export a Fedora object with the given PID.
*
* @param string $pid
* Persistent identifier of the digital object.
* @param array $params
* (optional) An array that can have one or more of the following elements:
* - format: The XML format to export. One of
* info:fedora/fedora-system:FOXML-1.1 (default),
* info:fedora/fedora-system:FOXML-1.0,
* info:fedora/fedora-system:METSFedoraExt-1.1,
* info:fedora/fedora-system:METSFedoraExt-1.0,
* info:fedora/fedora-system:ATOM-1.1,
* info:fedora/fedora-system:ATOMZip-1.1
* - context: The export context, which determines how datastream URLs and
* content are represented. Options: public (default), migrate, archive.
* - encoding: The preferred encoding of the exported XML.
* @param string $file
* An optional writable filename to which to download the export.
*
* @throws RepositoryException
*
* @return string|bool
* If $file was provided, boolean TRUE; otherwise, a string containing
* the response.
*/
public function export($pid, $params = array(), $file = NULL) {
$pid = urlencode($pid);
$request = "/objects/$pid/export";
$separator = '?';
$this->connection->addParamArray($request, $separator, $params, 'context');
$this->connection->addParamArray($request, $separator, $params, 'format');
$this->connection->addParamArray($request, $separator, $params, 'encoding');
$response = $this->connection->getRequest($request, FALSE, $file);
$response = $this->serializer->export($response, $file);
return $response;
}
/**
* Returns information about the datastream.
*
* @param string $pid
* Persistent identifier of the digital object.
* @param string $dsid
* Datastream identifier.
* @param array $params
* (optional) An array that can have one or more of the following elements:
* - asOfDateTime: Indicates that the result should be relative to the
* digital object as it existed on the given date.
* - validateChecksum: verifies that the Datastream content has not changed
* since the checksum was initially computed.
*
* @throws RepositoryException
*
* @return array()
* An array containing information about the datastream. This may also
* contains a key dsAltID which contains alternate ids if any are specified.
* @code
* Array
* (
* [dsLabel] =>
* [dsVersionID] => test.3
* [dsCreateDate] => 2012-03-07T18:03:38.679Z
* [dsState] => A
* [dsMIME] => text/xml
* [dsFormatURI] =>
* [dsControlGroup] => M
* [dsSize] => 22
* [dsVersionable] => true
* [dsInfoType] =>
* [dsLocation] => islandora:strict_pdf+test+test.3
* [dsLocationType] => INTERNAL_ID
* [dsChecksumType] => DISABLED
* [dsChecksum] => none
* [dsChecksumValid] => true
* )
* @endcode
*/
public function getDatastream($pid, $dsid, $params = array()) {
$pid = urlencode($pid);
$dsid = urlencode($dsid);
$request = "/objects/$pid/datastreams/$dsid";
$separator = '?';
$this->connection->addParam($request, $separator, 'format', 'xml');
$this->connection->addParamArray($request, $separator, $params, 'asOfDateTime');
$this->connection->addParamArray($request, $separator, $params, 'validateChecksum');
$response = $this->connection->getRequest($request);
$response = $this->serializer->getDatastream($response);
return $response;
}
/**
* Get information on the different datastream versions.
*
* @param string $pid
* Persistent identifier of the digital object.
* @param string $dsid
* Datastream identifier.
*
* @throws RepositoryException
*
* @return array
* Returns a indexed array with the same keys as getDatastream.
* @code
* Array
* (
* [0] => Array
* (
* [dsLabel] =>
* [dsVersionID] => test.3
* [dsCreateDate] => 2012-03-07T18:03:38.679Z
* [dsState] => A
* [dsMIME] => text/xml
* [dsFormatURI] =>
* [dsControlGroup] => M
* [dsSize] => 22
* [dsVersionable] => true
* [dsInfoType] =>
* [dsLocation] => islandora:strict_pdf+test+test.3
* [dsLocationType] => INTERNAL_ID
* [dsChecksumType] => DISABLED
* [dsChecksum] => none
* )
*
* [1] => Array
* (
* [dsLabel] =>
* [dsVersionID] => test.2
* [dsCreateDate] => 2012-03-07T18:03:13.722Z
* [dsState] => A
* [dsMIME] => text/xml
* [dsFormatURI] =>
* [dsControlGroup] => M
* [dsSize] => 22
* [dsVersionable] => true
* [dsInfoType] =>
* [dsLocation] => islandora:strict_pdf+test+test.2
* [dsLocationType] => INTERNAL_ID
* [dsChecksumType] => DISABLED
* [dsChecksum] => none
* )
*
* )
* @endcode
*
* @see FedoraApiM::getDatastream
*/
public function getDatastreamHistory($pid, $dsid) {
$pid = urlencode($pid);
$dsid = urlencode($dsid);
$request = "/objects/{$pid}/datastreams/{$dsid}/history";
$separator = '?';
$this->connection->addParam($request, $separator, 'format', 'xml');
$response = $this->connection->getRequest($request);
$response = $this->serializer->getDatastreamHistory($response);
return $response;
}
/**
* Get a new unused PID.
*
* @param string $namespace
* The namespace to get the PID in. This defaults to default namespace of
* the repository. This should not contain the PID seperator, for example
* it should be islandora not islandora:.
* @param int $numpids
* The number of pids being requested.
*
* @throws RepositoryException
*
* @return array/string
* If one pid is requested it is returned as a string. If multiple pids are
* requested they they are returned in an array containg strings.
* @code
* Array
* (
* [0] => test:7
* [1] => test:8
* )
* @endcode
*/
public function getNextPid($namespace = NULL, $numpids = NULL) {
$request = "/objects/nextPID";
$separator = '?';
$this->connection->addParam($request, $separator, 'format', 'xml');
$this->connection->addParam($request, $separator, 'namespace', $namespace);
$this->connection->addParam($request, $separator, 'numPIDs', $numpids);
$response = $this->connection->postRequest($request, 'string', '');
$response = $this->serializer->getNextPid($response);
return $response;
}
/**
* Get the Fedora Objects XML (Foxml).
*
* @param string $pid
* Persistent identifier of the digital object.
* @param string $file
* An optional writable filename to which to download the FOXML.
*
* @throws RepositoryException
*
* @return string|bool
* If $file was provided, boolean TRUE; otherwise, a string containing
* the objects FOXML.
*
* @see FedoraApiM::export
*/
public function getObjectXml($pid, $file = NULL) {
$pid = urlencode($pid);
$request = "/objects/{$pid}/objectXML";
$response = $this->connection->getRequest($request, FALSE, $file);
$response = $this->serializer->getObjectXml($response, $file);
return $response;
}
/**
* Query relationships for a particular fedora object.
*
* @param string $pid
* Persistent identifier of the digital object.
* @param array $relationship
* (Optional) An array defining the relationship:
* - subject: subject of the relationship(s). Either a URI for the object
* or one of its datastreams. defaults to the URI of the object.
* - predicate: predicate of the relationship(s), if missing returns all
* predicates.