forked from MESH-Research/humcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass-ezid-command.php
83 lines (69 loc) · 1.56 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
<?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 ) );
}
}
/**
* 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' );