-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass-movies.php
159 lines (136 loc) · 4.47 KB
/
class-movies.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
<?php
namespace Wordcamp;
/**
* Essa classe registra o post type Movies e seus metadados
*/
class Movies {
use Singleton;
public $post_type = 'movie';
protected function init() {
add_action( 'init', [$this, 'register_post_type'] );
}
public function register_post_type() {
$labels = array(
'name' => __('movies', 'wordcamp'),
'singular_name' => __('movie', 'wordcamp'),
'add_new' => __('Add new movie', 'wordcamp'),
'add_new_item' => __('Add new movie', 'wordcamp'),
'edit_item' => __('Edit movie', 'wordcamp'),
'new_item' => __('New movie', 'wordcamp'),
'view_item' => __('View movie', 'wordcamp'),
'search_items' => __('Search movies', 'wordcamp'),
'not_found' => __('No movie found', 'wordcamp'),
'not_found_in_trash' => __('No movie found in the trash', 'wordcamp'),
'menu_name' => __('movies', 'wordcamp'),
'item_published' => __('movie published.', 'wordcamp'),
'item_published_privately' => __('movie published privately.', 'wordcamp'),
'item_reverted_to_draft' => __('movie reverted to draft.', 'wordcamp'),
'item_scheduled' => __('movie scheduled.', 'wordcamp'),
'item_updated' => __('movie updated.', 'wordcamp'),
);
$args = array(
'labels' => $labels,
'hierarchical' => false,
'description' => __('Movies', 'wordcamp'),
'supports' => array( 'title', 'editor', 'excerpt', 'thumbnail', 'page-attributes', 'custom-fields'), // custom-fields é necessário pra habilitar os post_meta na API
'rewrite' => array('slug' => 'movies'),
'public' => true,
'show_in_menu' => false, // Não vai aparecer no admin!
'show_in_rest' => true, // Habilita esse post type na API.
'rest_base' => 'movies', // Faz com que o endpoint da API seja 'movies' no plural, e não movie, no singular, como é o o slug do post type.
'has_archive' => true,
'exclude_from_search' => true,
);
register_post_type($this->post_type, $args);
register_post_meta($this->post_type, 'idioma', [
'show_in_rest' => true,
'single' => true,
'auth_callback' => '__return_true',
'type' => 'string',
'description' => __('The language spoken in the movie', 'wordcamp')
]);
register_post_meta($this->post_type, 'ano', [
'show_in_rest' => array(
'schema' => array(
'type' => 'number',
'minimum' => 1900,
),
),
'single' => true,
'auth_callback' => '__return_true',
'description' => __('The year the movie was released', 'wordcamp')
]);
register_post_meta($this->post_type, 'formato', [
'show_in_rest' => array(
'schema' => array(
'type' => 'string',
'enum' => array(
'VHS',
'DVD',
'LaserDisc',
'16mm',
'35mm',
),
),
),
'single' => true,
'auth_callback' => '__return_true',
'type' => 'string',
'description' => __('The format of the media', 'wordcamp')
]);
register_post_meta($this->post_type, 'ficha', [
'show_in_rest' => [
'schema' => [
'type' => 'object',
'properties' => [
'pais' => [
'description' => 'País de produção (pode ser mais de um)', // se você vai usar só em português, não precisa internacionalizar.
'type' => 'array', // vai ser um array de países
'items' => [
'type' => 'string' // cada item dentro do array vai ser uma string
]
],
'diretor' => [
'description' => 'Diretor (pode ser mais de um)',
'type' => 'array',
'items' => [
'type' => 'string'
]
],
]
]
],
'single' => true,
'auth_callback' => '__return_true',
'type' => 'object',
'description' => 'Países e diretores'
]);
register_post_meta($this->post_type, 'preco', [
'show_in_rest' => true,
'single' => true,
'auth_callback' => [ $this, 'permission_check' ], // callback pra checar a permissão pra editar esse metadado
'sanitize_callback' => [ $this, 'sanitize_preco' ], // callback pra filtrar o valor do metadado antes de inserir
'type' => 'string',
'description' => __('Price', 'wordcamp')
]);
}
/**
* Sanitizes the preco metadata value
* @param mixed $value The value to be validated
* @return string
*/
public function sanitize_preco($value) {
// Se não tiver R$ no começo da stirng, adiciona
// Nota: isso é só um exemplo...
if ( strpos( $value, 'R$ ' ) !== 0 ) {
$value = 'R$ ' . $value;
}
return $value;
}
/**
* Só admins podem editar o preco
*/
public function permission_check() {
return current_user_can('manage_options'); // uma permissão que só admins tem
}
}