-
Notifications
You must be signed in to change notification settings - Fork 3
/
class-ezid-command.php
146 lines (118 loc) · 2.69 KB
/
class-ezid-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 EZID API commands.
*
* @package HumCORE
* @subpackage Deposits
*/
class Ezid_Command extends WP_CLI_Command {
/**
* Delete a reserved DOI.
*
* ## OPTIONS
*
* <doi>
* : The reserved DOI to be deleted.
*
* ## EXAMPLES
*
* wp ezid delete --doi="doi"
*
* @synopsis --doi=<doi>
*/
public function delete( $args, $assoc_args ) {
global $ezid_api;
$id = $assoc_args['doi'];
$e_status = $ezid_api->delete_identifier(
array(
'doi' => $id,
)
);
if ( is_wp_error( $e_status ) ) {
WP_CLI::error( sprintf( 'Error deleting doi : %1$s, %2$s-%3$s', $id, $e_status->get_error_code(), $e_status->get_error_message() ) );
} else {
// Print a success message
WP_CLI::success( sprintf( 'Deleted doi : %1$s!', $id ) );
}
}
/**
* Get a DOI.
*
* ## OPTIONS
*
* <doi>
* : The DOI to be retrieved.
*
* ## EXAMPLES
*
* wp ezid get --doi="doi"
*
* @synopsis --doi=<doi>
*/
public function get( $args, $assoc_args ) {
global $ezid_api;
$id = $assoc_args['doi'];
$e_status = $ezid_api->get_identifier(
array(
'doi' => $id,
)
);
if ( is_wp_error( $e_status ) ) {
WP_CLI::error( sprintf( 'Error getting doi : %1$s, %2$s-%3$s', $id, $e_status->get_error_code(), $e_status->get_error_message() ) );
} else {
// Print a success message
WP_CLI::success( sprintf( 'retrieve doi : %1$s!', $id ) . '-' . var_export( $e_status, true ) );
}
}
/**
* Check server status
*
* ## OPTIONS
*
* ## EXAMPLES
*
* wp ezid status
*
*/
public function status( $args ) {
global $ezid_api;
$e_status = $ezid_api->server_status;
if ( is_wp_error( $e_status ) ) {
WP_CLI::error( sprintf( 'Error checking DOI service status ', $e_status->get_error_code(), $e_status->get_error_message() ) );
} else {
// Print a success message
WP_CLI::success( sprintf( 'DOI service is available.' ) );
}
}
/**
* Unpublish a published DOI.
*
* ## OPTIONS
*
* <doi>
* : The published DOI to be made unavailable.
*
* ## EXAMPLES
*
* wp ezid unpublish --doi="doi"
*
* @synopsis --doi=<doi>
*/
public function unpublish( $args, $assoc_args ) {
global $ezid_api;
$id = $assoc_args['doi'];
$e_status = $ezid_api->modify_identifier(
array(
'doi' => $id,
'_status' => 'unavailable|Created in error.',
)
);
if ( is_wp_error( $e_status ) ) {
WP_CLI::error( sprintf( 'Error modifying doi : %1$s, %2$s-%3$s', $id, $e_status->get_error_code(), $e_status->get_error_message() ) );
} else {
// Print a success message
WP_CLI::success( sprintf( 'Doi : %1$s! is now unavailable.', $id ) );
}
}
}
WP_CLI::add_command( 'ezid', 'Ezid_Command' );