-
Notifications
You must be signed in to change notification settings - Fork 3
/
class-fedora-command.php
146 lines (124 loc) · 2.84 KB
/
class-fedora-command.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
<?php
/**
* HumCORE Fedora API commands.
*
* @package HumCORE
* @subpackage Deposits
*/
class Fedora_Command extends WP_CLI_Command {
/**
* Create a collection object.
*
* ## OPTIONS
*
* ## EXAMPLES
*
* wp fedora create_collection
*
* @synopsis
*/
public function create_collection( $args, $assoc_args ) {
global $fedora_api;
if ( empty( $fedora_api->namespace ) ) {
WP_CLI::error( 'Please add a Namespace on the HumCORE Settings page first.' );
exit();
}
$c_status = create_collection_object();
if ( is_wp_error( $c_status ) ) {
WP_CLI::error( sprintf( 'Error creating collection object. : %1$s-%2$s', $c_status->get_error_code(), $c_status->get_error_message() ) );
} else {
// Print a success message
WP_CLI::success( 'Collection object created.' );
}
}
/**
* Delete a PID.
*
* ## OPTIONS
*
* <doi>
* : The PID to be deleted.
*
* ## EXAMPLES
*
* wp fedora delete --pid="pid"
*
* @synopsis --pid=<pid>
*/
public function delete( $args, $assoc_args ) {
global $fedora_api;
$id = $assoc_args['pid'];
$f_status = $fedora_api->purge_object(
array(
'pid' => $id,
)
);
if ( is_wp_error( $f_status ) ) {
WP_CLI::error( sprintf( 'Error deleting pid : %1$s, %2$s-%3$s', $id, $f_status->get_error_code(), $f_status->get_error_message() ) );
} else {
// Print a success message
WP_CLI::success( sprintf( 'Deleted pid : %1$s!', $id ) );
}
}
/**
* Get Object XML for a PID.
*
* ## OPTIONS
*
* <pid>
* : The PID to be retrieved.
*
* ## EXAMPLES
*
* wp fedora get_object_xml --pid="pid"
*
* @synopsis --pid=<pid>
*/
public function get_object_xml( $args, $assoc_args ) {
global $fedora_api;
$id = $assoc_args['pid'];
$f_status = $fedora_api->get_object_xml(
array(
'pid' => $id,
)
);
if ( is_wp_error( $f_status ) ) {
WP_CLI::error( sprintf( 'Error retrieving object xml pid : %1$s, %2$s-%3$s', $id, $f_status->get_error_code(), $f_status->get_error_message() ) );
} else {
WP_CLI::line( var_export( $f_status, true ) );
// Print a success message
WP_CLI::success( 'Done!' );
}
}
/**
* Validate a PID.
*
* ## OPTIONS
*
* <pid>
* : The PID to be validated.
*
* ## EXAMPLES
*
* wp fedora validate --pid="pid"
*
* @synopsis --pid=<pid>
*/
public function validate( $args, $assoc_args ) {
global $fedora_api;
$id = $assoc_args['pid'];
$f_status = $fedora_api->validate(
array(
'pid' => $id,
)
);
if ( is_wp_error( $f_status ) ) {
WP_CLI::error( sprintf( 'Error validating pid : %1$s, %2$s-%3$s', $id, $f_status->get_error_code(), $f_status->get_error_message() ) );
} else {
WP_CLI::line( var_export( $f_status, true ) );
// Print a success message
WP_CLI::success( 'Done!' );
}
}
}
WP_CLI::add_command( 'fedora', 'Fedora_Command' );