@@ -12,58 +12,58 @@ |
||
12 | 12 | |
13 | 13 | class RestReviewController extends RestController |
14 | 14 | { |
15 | - public function __construct() |
|
16 | - { |
|
17 | - $this->meta = new WP_REST_Post_Meta_Fields(Application::POST_TYPE); |
|
18 | - $this->namespace = Application::ID.'/v1'; |
|
19 | - $this->post_type = Application::POST_TYPE; |
|
20 | - $this->rest_base = 'reviews'; |
|
21 | - } |
|
15 | + public function __construct() |
|
16 | + { |
|
17 | + $this->meta = new WP_REST_Post_Meta_Fields(Application::POST_TYPE); |
|
18 | + $this->namespace = Application::ID.'/v1'; |
|
19 | + $this->post_type = Application::POST_TYPE; |
|
20 | + $this->rest_base = 'reviews'; |
|
21 | + } |
|
22 | 22 | |
23 | - /** |
|
24 | - * @return void |
|
25 | - */ |
|
26 | - public function register_routes() |
|
27 | - { |
|
28 | - // register_rest_route($this->namespace, '/'.$this->rest_base, [ |
|
29 | - // ['callback' => [$this, 'createReview'], 'methods' => Server::CREATABLE], |
|
30 | - // ['callback' => [$this, 'getReviews'], 'methods' => Server::READABLE], |
|
31 | - // ]); |
|
32 | - register_rest_route($this->namespace, '/types', [ |
|
33 | - ['callback' => [$this, 'getReviewTypes'], 'methods' => Server::READABLE], |
|
34 | - ]); |
|
35 | - } |
|
23 | + /** |
|
24 | + * @return void |
|
25 | + */ |
|
26 | + public function register_routes() |
|
27 | + { |
|
28 | + // register_rest_route($this->namespace, '/'.$this->rest_base, [ |
|
29 | + // ['callback' => [$this, 'createReview'], 'methods' => Server::CREATABLE], |
|
30 | + // ['callback' => [$this, 'getReviews'], 'methods' => Server::READABLE], |
|
31 | + // ]); |
|
32 | + register_rest_route($this->namespace, '/types', [ |
|
33 | + ['callback' => [$this, 'getReviewTypes'], 'methods' => Server::READABLE], |
|
34 | + ]); |
|
35 | + } |
|
36 | 36 | |
37 | - /** |
|
38 | - * @return WP_Error|Response|mixed |
|
39 | - */ |
|
40 | - public function createReview() |
|
41 | - { |
|
42 | - $response = []; |
|
43 | - return rest_ensure_response($response); |
|
44 | - } |
|
37 | + /** |
|
38 | + * @return WP_Error|Response|mixed |
|
39 | + */ |
|
40 | + public function createReview() |
|
41 | + { |
|
42 | + $response = []; |
|
43 | + return rest_ensure_response($response); |
|
44 | + } |
|
45 | 45 | |
46 | - /** |
|
47 | - * @return WP_Error|Response|mixed |
|
48 | - */ |
|
49 | - public function getReviews() |
|
50 | - { |
|
51 | - $response = []; |
|
52 | - return rest_ensure_response($response); |
|
53 | - } |
|
46 | + /** |
|
47 | + * @return WP_Error|Response|mixed |
|
48 | + */ |
|
49 | + public function getReviews() |
|
50 | + { |
|
51 | + $response = []; |
|
52 | + return rest_ensure_response($response); |
|
53 | + } |
|
54 | 54 | |
55 | - /** |
|
56 | - * @return WP_Error|Response|mixed |
|
57 | - */ |
|
58 | - public function getReviewTypes() |
|
59 | - { |
|
60 | - $response = []; |
|
61 | - foreach (glsr()->reviewTypes as $slug => $name) { |
|
62 | - $response[] = [ |
|
63 | - 'name' => $name, |
|
64 | - 'slug' => $slug, |
|
65 | - ]; |
|
66 | - } |
|
67 | - return rest_ensure_response($response); |
|
68 | - } |
|
55 | + /** |
|
56 | + * @return WP_Error|Response|mixed |
|
57 | + */ |
|
58 | + public function getReviewTypes() |
|
59 | + { |
|
60 | + $response = []; |
|
61 | + foreach (glsr()->reviewTypes as $slug => $name) { |
|
62 | + $response[] = [ |
|
63 | + 'name' => $name, |
|
64 | + 'slug' => $slug, |
|
65 | + ]; |
|
66 | + } |
|
67 | + return rest_ensure_response($response); |
|
68 | + } |
|
69 | 69 | } |
@@ -5,23 +5,23 @@ |
||
5 | 5 | require_once ABSPATH.WPINC.'/class-phpass.php'; |
6 | 6 | |
7 | 7 | spl_autoload_register(function ($className) { |
8 | - $namespaces = [ |
|
9 | - 'GeminiLabs\\SiteReviews\\' => __DIR__.'/plugin/', |
|
10 | - 'GeminiLabs\\SiteReviews\\Tests\\' => __DIR__.'/tests/', |
|
11 | - 'GeminiLabs\\Sepia\\PoParser\\' => __DIR__.'/vendors/sepia/po-parser/', |
|
12 | - 'GeminiLabs\\Sinergi\\BrowserDetector\\' => __DIR__.'/vendors/sinergi/browser-detector/', |
|
13 | - 'GeminiLabs\\Vectorface\\Whip\\' => __DIR__.'/vendors/vectorface/whip/', |
|
14 | - ]; |
|
15 | - foreach ($namespaces as $prefix => $baseDir) { |
|
16 | - $len = strlen($prefix); |
|
17 | - if (0 !== strncmp($prefix, $className, $len)) { |
|
18 | - continue; |
|
19 | - } |
|
20 | - $file = $baseDir.str_replace('\\', '/', substr($className, $len)).'.php'; |
|
21 | - if (!file_exists($file)) { |
|
22 | - continue; |
|
23 | - } |
|
24 | - require $file; |
|
25 | - break; |
|
26 | - } |
|
8 | + $namespaces = [ |
|
9 | + 'GeminiLabs\\SiteReviews\\' => __DIR__.'/plugin/', |
|
10 | + 'GeminiLabs\\SiteReviews\\Tests\\' => __DIR__.'/tests/', |
|
11 | + 'GeminiLabs\\Sepia\\PoParser\\' => __DIR__.'/vendors/sepia/po-parser/', |
|
12 | + 'GeminiLabs\\Sinergi\\BrowserDetector\\' => __DIR__.'/vendors/sinergi/browser-detector/', |
|
13 | + 'GeminiLabs\\Vectorface\\Whip\\' => __DIR__.'/vendors/vectorface/whip/', |
|
14 | + ]; |
|
15 | + foreach ($namespaces as $prefix => $baseDir) { |
|
16 | + $len = strlen($prefix); |
|
17 | + if (0 !== strncmp($prefix, $className, $len)) { |
|
18 | + continue; |
|
19 | + } |
|
20 | + $file = $baseDir.str_replace('\\', '/', substr($className, $len)).'.php'; |
|
21 | + if (!file_exists($file)) { |
|
22 | + continue; |
|
23 | + } |
|
24 | + require $file; |
|
25 | + break; |
|
26 | + } |
|
27 | 27 | }); |
@@ -8,10 +8,10 @@ discard block |
||
8 | 8 | * @see https://www.elegantthemes.com/gallery/divi/ |
9 | 9 | */ |
10 | 10 | add_action('site-reviews/customize/divi', function ($instance) { |
11 | - if ('label' != $instance->tag || 'checkbox' != $instance->args['type']) { |
|
12 | - return; |
|
13 | - } |
|
14 | - $instance->args['text'] = '<i></i>'.$instance->args['text']; |
|
11 | + if ('label' != $instance->tag || 'checkbox' != $instance->args['type']) { |
|
12 | + return; |
|
13 | + } |
|
14 | + $instance->args['text'] = '<i></i>'.$instance->args['text']; |
|
15 | 15 | }); |
16 | 16 | |
17 | 17 | /* |
@@ -22,14 +22,14 @@ discard block |
||
22 | 22 | * @see https://wordpress.org/plugins/wp-super-cache/ |
23 | 23 | */ |
24 | 24 | add_action('site-reviews/review/created', function ($review, $request) { |
25 | - if (!function_exists('wp_cache_post_change')) { |
|
26 | - return; |
|
27 | - } |
|
28 | - wp_cache_post_change($request->post_id); |
|
29 | - if (empty($review->assigned_to) || $review->assigned_to == $request->post_id) { |
|
30 | - return; |
|
31 | - } |
|
32 | - wp_cache_post_change($review->assigned_to); |
|
25 | + if (!function_exists('wp_cache_post_change')) { |
|
26 | + return; |
|
27 | + } |
|
28 | + wp_cache_post_change($request->post_id); |
|
29 | + if (empty($review->assigned_to) || $review->assigned_to == $request->post_id) { |
|
30 | + return; |
|
31 | + } |
|
32 | + wp_cache_post_change($review->assigned_to); |
|
33 | 33 | }, 10, 2); |
34 | 34 | |
35 | 35 | /* |
@@ -38,8 +38,8 @@ discard block |
||
38 | 38 | * @see https://wordpress.org/plugins/speed-booster-pack/ |
39 | 39 | */ |
40 | 40 | add_filter('sbp_exclude_defer_scripts', function ($scriptHandles) { |
41 | - $scriptHandles[] = 'site-reviews/google-recaptcha'; |
|
42 | - return array_keys(array_flip($scriptHandles)); |
|
41 | + $scriptHandles[] = 'site-reviews/google-recaptcha'; |
|
42 | + return array_keys(array_flip($scriptHandles)); |
|
43 | 43 | }); |
44 | 44 | |
45 | 45 | /* |
@@ -49,13 +49,13 @@ discard block |
||
49 | 49 | * @see https://searchandfilter.com/ |
50 | 50 | */ |
51 | 51 | add_filter('sf_edit_query_args', function ($query) { |
52 | - if (!empty($query['meta_key']) && '_glsr_ranking' == $query['meta_key']) { |
|
53 | - unset($query['meta_key']); |
|
54 | - $query['meta_query'] = [ |
|
55 | - 'relation' => 'OR', |
|
56 | - ['key' => '_glsr_ranking', 'compare' => 'NOT EXISTS'], // this comes first! |
|
57 | - ['key' => '_glsr_ranking', 'compare' => 'EXISTS'], |
|
58 | - ]; |
|
59 | - } |
|
60 | - return $query; |
|
52 | + if (!empty($query['meta_key']) && '_glsr_ranking' == $query['meta_key']) { |
|
53 | + unset($query['meta_key']); |
|
54 | + $query['meta_query'] = [ |
|
55 | + 'relation' => 'OR', |
|
56 | + ['key' => '_glsr_ranking', 'compare' => 'NOT EXISTS'], // this comes first! |
|
57 | + ['key' => '_glsr_ranking', 'compare' => 'EXISTS'], |
|
58 | + ]; |
|
59 | + } |
|
60 | + return $query; |
|
61 | 61 | }, 20); |
@@ -12,154 +12,154 @@ |
||
12 | 12 | |
13 | 13 | class AjaxController extends Controller |
14 | 14 | { |
15 | - /** |
|
16 | - * @return void |
|
17 | - */ |
|
18 | - public function routerChangeStatus(array $request) |
|
19 | - { |
|
20 | - wp_send_json_success($this->execute(new ChangeStatus($request))); |
|
21 | - } |
|
15 | + /** |
|
16 | + * @return void |
|
17 | + */ |
|
18 | + public function routerChangeStatus(array $request) |
|
19 | + { |
|
20 | + wp_send_json_success($this->execute(new ChangeStatus($request))); |
|
21 | + } |
|
22 | 22 | |
23 | - /** |
|
24 | - * @return void |
|
25 | - */ |
|
26 | - public function routerClearConsole() |
|
27 | - { |
|
28 | - glsr(AdminController::class)->routerClearConsole(); |
|
29 | - wp_send_json_success([ |
|
30 | - 'console' => glsr(Console::class)->get(), |
|
31 | - 'notices' => glsr(Notice::class)->get(), |
|
32 | - ]); |
|
33 | - } |
|
23 | + /** |
|
24 | + * @return void |
|
25 | + */ |
|
26 | + public function routerClearConsole() |
|
27 | + { |
|
28 | + glsr(AdminController::class)->routerClearConsole(); |
|
29 | + wp_send_json_success([ |
|
30 | + 'console' => glsr(Console::class)->get(), |
|
31 | + 'notices' => glsr(Notice::class)->get(), |
|
32 | + ]); |
|
33 | + } |
|
34 | 34 | |
35 | - /** |
|
36 | - * @return void |
|
37 | - */ |
|
38 | - public function routerCountReviews() |
|
39 | - { |
|
40 | - glsr(AdminController::class)->routerCountReviews(); |
|
41 | - wp_send_json_success([ |
|
42 | - 'notices' => glsr(Notice::class)->get(), |
|
43 | - ]); |
|
44 | - } |
|
35 | + /** |
|
36 | + * @return void |
|
37 | + */ |
|
38 | + public function routerCountReviews() |
|
39 | + { |
|
40 | + glsr(AdminController::class)->routerCountReviews(); |
|
41 | + wp_send_json_success([ |
|
42 | + 'notices' => glsr(Notice::class)->get(), |
|
43 | + ]); |
|
44 | + } |
|
45 | 45 | |
46 | - /** |
|
47 | - * @return void |
|
48 | - */ |
|
49 | - public function routerMceShortcode(array $request) |
|
50 | - { |
|
51 | - $shortcode = $request['shortcode']; |
|
52 | - $response = false; |
|
53 | - if (array_key_exists($shortcode, glsr()->mceShortcodes)) { |
|
54 | - $data = glsr()->mceShortcodes[$shortcode]; |
|
55 | - if (!empty($data['errors'])) { |
|
56 | - $data['btn_okay'] = [esc_html__('Okay', 'site-reviews')]; |
|
57 | - } |
|
58 | - $response = [ |
|
59 | - 'body' => $data['fields'], |
|
60 | - 'close' => $data['btn_close'], |
|
61 | - 'ok' => $data['btn_okay'], |
|
62 | - 'shortcode' => $shortcode, |
|
63 | - 'title' => $data['title'], |
|
64 | - ]; |
|
65 | - } |
|
66 | - wp_send_json_success($response); |
|
67 | - } |
|
46 | + /** |
|
47 | + * @return void |
|
48 | + */ |
|
49 | + public function routerMceShortcode(array $request) |
|
50 | + { |
|
51 | + $shortcode = $request['shortcode']; |
|
52 | + $response = false; |
|
53 | + if (array_key_exists($shortcode, glsr()->mceShortcodes)) { |
|
54 | + $data = glsr()->mceShortcodes[$shortcode]; |
|
55 | + if (!empty($data['errors'])) { |
|
56 | + $data['btn_okay'] = [esc_html__('Okay', 'site-reviews')]; |
|
57 | + } |
|
58 | + $response = [ |
|
59 | + 'body' => $data['fields'], |
|
60 | + 'close' => $data['btn_close'], |
|
61 | + 'ok' => $data['btn_okay'], |
|
62 | + 'shortcode' => $shortcode, |
|
63 | + 'title' => $data['title'], |
|
64 | + ]; |
|
65 | + } |
|
66 | + wp_send_json_success($response); |
|
67 | + } |
|
68 | 68 | |
69 | - /** |
|
70 | - * @return void |
|
71 | - */ |
|
72 | - public function routerFetchConsole() |
|
73 | - { |
|
74 | - glsr(AdminController::class)->routerFetchConsole(); |
|
75 | - wp_send_json_success([ |
|
76 | - 'console' => glsr(Console::class)->get(), |
|
77 | - 'notices' => glsr(Notice::class)->get(), |
|
78 | - ]); |
|
79 | - } |
|
69 | + /** |
|
70 | + * @return void |
|
71 | + */ |
|
72 | + public function routerFetchConsole() |
|
73 | + { |
|
74 | + glsr(AdminController::class)->routerFetchConsole(); |
|
75 | + wp_send_json_success([ |
|
76 | + 'console' => glsr(Console::class)->get(), |
|
77 | + 'notices' => glsr(Notice::class)->get(), |
|
78 | + ]); |
|
79 | + } |
|
80 | 80 | |
81 | - /** |
|
82 | - * @return void |
|
83 | - */ |
|
84 | - public function routerSearchPosts(array $request) |
|
85 | - { |
|
86 | - $results = glsr(Database::class)->searchPosts($request['search']); |
|
87 | - wp_send_json_success([ |
|
88 | - 'empty' => '<div>'.__('Nothing found.', 'site-reviews').'</div>', |
|
89 | - 'items' => $results, |
|
90 | - ]); |
|
91 | - } |
|
81 | + /** |
|
82 | + * @return void |
|
83 | + */ |
|
84 | + public function routerSearchPosts(array $request) |
|
85 | + { |
|
86 | + $results = glsr(Database::class)->searchPosts($request['search']); |
|
87 | + wp_send_json_success([ |
|
88 | + 'empty' => '<div>'.__('Nothing found.', 'site-reviews').'</div>', |
|
89 | + 'items' => $results, |
|
90 | + ]); |
|
91 | + } |
|
92 | 92 | |
93 | - /** |
|
94 | - * @return void |
|
95 | - */ |
|
96 | - public function routerSearchTranslations(array $request) |
|
97 | - { |
|
98 | - if (empty($request['exclude'])) { |
|
99 | - $request['exclude'] = []; |
|
100 | - } |
|
101 | - $results = glsr(Translation::class) |
|
102 | - ->search($request['search']) |
|
103 | - ->exclude() |
|
104 | - ->exclude($request['exclude']) |
|
105 | - ->renderResults(); |
|
106 | - wp_send_json_success([ |
|
107 | - 'empty' => '<div>'.__('Nothing found.', 'site-reviews').'</div>', |
|
108 | - 'items' => $results, |
|
109 | - ]); |
|
110 | - } |
|
93 | + /** |
|
94 | + * @return void |
|
95 | + */ |
|
96 | + public function routerSearchTranslations(array $request) |
|
97 | + { |
|
98 | + if (empty($request['exclude'])) { |
|
99 | + $request['exclude'] = []; |
|
100 | + } |
|
101 | + $results = glsr(Translation::class) |
|
102 | + ->search($request['search']) |
|
103 | + ->exclude() |
|
104 | + ->exclude($request['exclude']) |
|
105 | + ->renderResults(); |
|
106 | + wp_send_json_success([ |
|
107 | + 'empty' => '<div>'.__('Nothing found.', 'site-reviews').'</div>', |
|
108 | + 'items' => $results, |
|
109 | + ]); |
|
110 | + } |
|
111 | 111 | |
112 | - /** |
|
113 | - * @return void |
|
114 | - */ |
|
115 | - public function routerSubmitReview(array $request) |
|
116 | - { |
|
117 | - $command = glsr(PublicController::class)->routerSubmitReview($request); |
|
118 | - $redirect = trim(strval(get_post_meta($command->post_id, 'redirect_to', true))); |
|
119 | - $redirect = apply_filters('site-reviews/review/redirect', $redirect, $command); |
|
120 | - $data = [ |
|
121 | - 'errors' => glsr()->sessionGet($command->form_id.'errors', false), |
|
122 | - 'message' => glsr()->sessionGet($command->form_id.'message', ''), |
|
123 | - 'recaptcha' => glsr()->sessionGet($command->form_id.'recaptcha', false), |
|
124 | - 'redirect' => $redirect, |
|
125 | - ]; |
|
126 | - if (false === $data['errors']) { |
|
127 | - glsr()->sessionClear(); |
|
128 | - wp_send_json_success($data); |
|
129 | - } |
|
130 | - wp_send_json_error($data); |
|
131 | - } |
|
112 | + /** |
|
113 | + * @return void |
|
114 | + */ |
|
115 | + public function routerSubmitReview(array $request) |
|
116 | + { |
|
117 | + $command = glsr(PublicController::class)->routerSubmitReview($request); |
|
118 | + $redirect = trim(strval(get_post_meta($command->post_id, 'redirect_to', true))); |
|
119 | + $redirect = apply_filters('site-reviews/review/redirect', $redirect, $command); |
|
120 | + $data = [ |
|
121 | + 'errors' => glsr()->sessionGet($command->form_id.'errors', false), |
|
122 | + 'message' => glsr()->sessionGet($command->form_id.'message', ''), |
|
123 | + 'recaptcha' => glsr()->sessionGet($command->form_id.'recaptcha', false), |
|
124 | + 'redirect' => $redirect, |
|
125 | + ]; |
|
126 | + if (false === $data['errors']) { |
|
127 | + glsr()->sessionClear(); |
|
128 | + wp_send_json_success($data); |
|
129 | + } |
|
130 | + wp_send_json_error($data); |
|
131 | + } |
|
132 | 132 | |
133 | - /** |
|
134 | - * @return void |
|
135 | - */ |
|
136 | - public function routerFetchPagedReviews(array $request) |
|
137 | - { |
|
138 | - $urlQuery = []; |
|
139 | - parse_str(parse_url(glsr_get($request, 'url'), PHP_URL_QUERY), $urlQuery); |
|
140 | - $args = [ |
|
141 | - 'paged' => glsr_get($urlQuery, glsr()->constant('PAGED_QUERY_VAR'), 1), |
|
142 | - 'pagedUrl' => home_url(parse_url(glsr_get($request, 'url'), PHP_URL_PATH)), |
|
143 | - 'pagination' => 'ajax', |
|
144 | - 'schema' => false, |
|
145 | - ]; |
|
146 | - $atts = (array) json_decode(glsr_get($request, 'atts')); |
|
147 | - $html = glsr(SiteReviews::class)->build(wp_parse_args($args, $atts)); |
|
148 | - return wp_send_json_success([ |
|
149 | - 'pagination' => $html->getPagination(), |
|
150 | - 'reviews' => $html->getReviews(), |
|
151 | - ]); |
|
152 | - } |
|
133 | + /** |
|
134 | + * @return void |
|
135 | + */ |
|
136 | + public function routerFetchPagedReviews(array $request) |
|
137 | + { |
|
138 | + $urlQuery = []; |
|
139 | + parse_str(parse_url(glsr_get($request, 'url'), PHP_URL_QUERY), $urlQuery); |
|
140 | + $args = [ |
|
141 | + 'paged' => glsr_get($urlQuery, glsr()->constant('PAGED_QUERY_VAR'), 1), |
|
142 | + 'pagedUrl' => home_url(parse_url(glsr_get($request, 'url'), PHP_URL_PATH)), |
|
143 | + 'pagination' => 'ajax', |
|
144 | + 'schema' => false, |
|
145 | + ]; |
|
146 | + $atts = (array) json_decode(glsr_get($request, 'atts')); |
|
147 | + $html = glsr(SiteReviews::class)->build(wp_parse_args($args, $atts)); |
|
148 | + return wp_send_json_success([ |
|
149 | + 'pagination' => $html->getPagination(), |
|
150 | + 'reviews' => $html->getReviews(), |
|
151 | + ]); |
|
152 | + } |
|
153 | 153 | |
154 | - /** |
|
155 | - * @return void |
|
156 | - */ |
|
157 | - public function routerTogglePinned(array $request) |
|
158 | - { |
|
159 | - $isPinned = $this->execute(new TogglePinned($request)); |
|
160 | - wp_send_json_success([ |
|
161 | - 'notices' => glsr(Notice::class)->get(), |
|
162 | - 'pinned' => $isPinned, |
|
163 | - ]); |
|
164 | - } |
|
154 | + /** |
|
155 | + * @return void |
|
156 | + */ |
|
157 | + public function routerTogglePinned(array $request) |
|
158 | + { |
|
159 | + $isPinned = $this->execute(new TogglePinned($request)); |
|
160 | + wp_send_json_success([ |
|
161 | + 'notices' => glsr(Notice::class)->get(), |
|
162 | + 'pinned' => $isPinned, |
|
163 | + ]); |
|
164 | + } |
|
165 | 165 | } |
@@ -12,297 +12,297 @@ |
||
12 | 12 | |
13 | 13 | class SiteReviewsForm |
14 | 14 | { |
15 | - /** |
|
16 | - * @var array |
|
17 | - */ |
|
18 | - protected $args; |
|
15 | + /** |
|
16 | + * @var array |
|
17 | + */ |
|
18 | + protected $args; |
|
19 | 19 | |
20 | - /** |
|
21 | - * @var array |
|
22 | - */ |
|
23 | - protected $errors; |
|
20 | + /** |
|
21 | + * @var array |
|
22 | + */ |
|
23 | + protected $errors; |
|
24 | 24 | |
25 | - /** |
|
26 | - * @var string |
|
27 | - */ |
|
28 | - protected $message; |
|
25 | + /** |
|
26 | + * @var string |
|
27 | + */ |
|
28 | + protected $message; |
|
29 | 29 | |
30 | - /** |
|
31 | - * @var array |
|
32 | - */ |
|
33 | - protected $required; |
|
30 | + /** |
|
31 | + * @var array |
|
32 | + */ |
|
33 | + protected $required; |
|
34 | 34 | |
35 | - /** |
|
36 | - * @var array |
|
37 | - */ |
|
38 | - protected $values; |
|
35 | + /** |
|
36 | + * @var array |
|
37 | + */ |
|
38 | + protected $values; |
|
39 | 39 | |
40 | - /** |
|
41 | - * @return void|string |
|
42 | - */ |
|
43 | - public function build(array $args = []) |
|
44 | - { |
|
45 | - $this->args = $args; |
|
46 | - if (!is_user_logged_in() && glsr(OptionManager::class)->getBool('settings.general.require.login')) { |
|
47 | - return $this->buildLoginRegister(); |
|
48 | - } |
|
49 | - $this->errors = glsr()->sessionGet($args['id'].'errors', []); |
|
50 | - $this->message = glsr()->sessionGet($args['id'].'message', ''); |
|
51 | - $this->required = glsr(OptionManager::class)->get('settings.submissions.required', []); |
|
52 | - $this->values = glsr()->sessionGet($args['id'].'values', []); |
|
53 | - $fields = array_reduce($this->getFields(), function ($carry, $field) { |
|
54 | - return $carry.$field; |
|
55 | - }); |
|
56 | - return glsr(Template::class)->build('templates/reviews-form', [ |
|
57 | - 'args' => $args, |
|
58 | - 'context' => [ |
|
59 | - 'class' => $this->getClass(), |
|
60 | - 'fields' => $fields, |
|
61 | - 'id' => $this->args['id'], |
|
62 | - 'response' => $this->buildResponse(), |
|
63 | - 'submit_button' => $this->buildSubmitButton().$this->buildRecaptcha(), |
|
64 | - ], |
|
65 | - ]); |
|
66 | - } |
|
40 | + /** |
|
41 | + * @return void|string |
|
42 | + */ |
|
43 | + public function build(array $args = []) |
|
44 | + { |
|
45 | + $this->args = $args; |
|
46 | + if (!is_user_logged_in() && glsr(OptionManager::class)->getBool('settings.general.require.login')) { |
|
47 | + return $this->buildLoginRegister(); |
|
48 | + } |
|
49 | + $this->errors = glsr()->sessionGet($args['id'].'errors', []); |
|
50 | + $this->message = glsr()->sessionGet($args['id'].'message', ''); |
|
51 | + $this->required = glsr(OptionManager::class)->get('settings.submissions.required', []); |
|
52 | + $this->values = glsr()->sessionGet($args['id'].'values', []); |
|
53 | + $fields = array_reduce($this->getFields(), function ($carry, $field) { |
|
54 | + return $carry.$field; |
|
55 | + }); |
|
56 | + return glsr(Template::class)->build('templates/reviews-form', [ |
|
57 | + 'args' => $args, |
|
58 | + 'context' => [ |
|
59 | + 'class' => $this->getClass(), |
|
60 | + 'fields' => $fields, |
|
61 | + 'id' => $this->args['id'], |
|
62 | + 'response' => $this->buildResponse(), |
|
63 | + 'submit_button' => $this->buildSubmitButton().$this->buildRecaptcha(), |
|
64 | + ], |
|
65 | + ]); |
|
66 | + } |
|
67 | 67 | |
68 | - /** |
|
69 | - * @return string |
|
70 | - */ |
|
71 | - protected function buildLoginRegister() |
|
72 | - { |
|
73 | - return glsr(Template::class)->build('templates/login-register', [ |
|
74 | - 'context' => [ |
|
75 | - 'text' => trim($this->getLoginText().' '.$this->getRegisterText()), |
|
76 | - ], |
|
77 | - ]); |
|
78 | - } |
|
68 | + /** |
|
69 | + * @return string |
|
70 | + */ |
|
71 | + protected function buildLoginRegister() |
|
72 | + { |
|
73 | + return glsr(Template::class)->build('templates/login-register', [ |
|
74 | + 'context' => [ |
|
75 | + 'text' => trim($this->getLoginText().' '.$this->getRegisterText()), |
|
76 | + ], |
|
77 | + ]); |
|
78 | + } |
|
79 | 79 | |
80 | - /** |
|
81 | - * @return void|string |
|
82 | - */ |
|
83 | - protected function buildRecaptcha() |
|
84 | - { |
|
85 | - if (!glsr(OptionManager::class)->isRecaptchaEnabled()) { |
|
86 | - return; |
|
87 | - } |
|
88 | - return glsr(Builder::class)->div([ |
|
89 | - 'class' => 'glsr-recaptcha-holder', |
|
90 | - 'data-badge' => glsr(OptionManager::class)->get('settings.submissions.recaptcha.position'), |
|
91 | - 'data-sitekey' => sanitize_text_field(glsr(OptionManager::class)->get('settings.submissions.recaptcha.key')), |
|
92 | - 'data-size' => 'invisible', |
|
93 | - ]); |
|
94 | - } |
|
80 | + /** |
|
81 | + * @return void|string |
|
82 | + */ |
|
83 | + protected function buildRecaptcha() |
|
84 | + { |
|
85 | + if (!glsr(OptionManager::class)->isRecaptchaEnabled()) { |
|
86 | + return; |
|
87 | + } |
|
88 | + return glsr(Builder::class)->div([ |
|
89 | + 'class' => 'glsr-recaptcha-holder', |
|
90 | + 'data-badge' => glsr(OptionManager::class)->get('settings.submissions.recaptcha.position'), |
|
91 | + 'data-sitekey' => sanitize_text_field(glsr(OptionManager::class)->get('settings.submissions.recaptcha.key')), |
|
92 | + 'data-size' => 'invisible', |
|
93 | + ]); |
|
94 | + } |
|
95 | 95 | |
96 | - /** |
|
97 | - * @return string |
|
98 | - */ |
|
99 | - protected function buildResponse() |
|
100 | - { |
|
101 | - $classes = !empty($this->errors) |
|
102 | - ? glsr(StyleValidationDefaults::class)->defaults()['message_error_class'] |
|
103 | - : ''; |
|
104 | - return glsr(Template::class)->build('templates/form/response', [ |
|
105 | - 'context' => [ |
|
106 | - 'class' => $classes, |
|
107 | - 'message' => wpautop($this->message), |
|
108 | - ], |
|
109 | - 'has_errors' => !empty($this->errors), |
|
110 | - ]); |
|
111 | - } |
|
96 | + /** |
|
97 | + * @return string |
|
98 | + */ |
|
99 | + protected function buildResponse() |
|
100 | + { |
|
101 | + $classes = !empty($this->errors) |
|
102 | + ? glsr(StyleValidationDefaults::class)->defaults()['message_error_class'] |
|
103 | + : ''; |
|
104 | + return glsr(Template::class)->build('templates/form/response', [ |
|
105 | + 'context' => [ |
|
106 | + 'class' => $classes, |
|
107 | + 'message' => wpautop($this->message), |
|
108 | + ], |
|
109 | + 'has_errors' => !empty($this->errors), |
|
110 | + ]); |
|
111 | + } |
|
112 | 112 | |
113 | - /** |
|
114 | - * @return string |
|
115 | - */ |
|
116 | - protected function buildSubmitButton() |
|
117 | - { |
|
118 | - return glsr(Template::class)->build('templates/form/submit-button', [ |
|
119 | - 'context' => [ |
|
120 | - 'text' => __('Submit your review', 'site-reviews'), |
|
121 | - ], |
|
122 | - ]); |
|
123 | - } |
|
113 | + /** |
|
114 | + * @return string |
|
115 | + */ |
|
116 | + protected function buildSubmitButton() |
|
117 | + { |
|
118 | + return glsr(Template::class)->build('templates/form/submit-button', [ |
|
119 | + 'context' => [ |
|
120 | + 'text' => __('Submit your review', 'site-reviews'), |
|
121 | + ], |
|
122 | + ]); |
|
123 | + } |
|
124 | 124 | |
125 | - /** |
|
126 | - * @return string |
|
127 | - */ |
|
128 | - protected function getClass() |
|
129 | - { |
|
130 | - return trim('glsr-form glsr-'.glsr(Style::class)->get().' '.$this->args['class']); |
|
131 | - } |
|
125 | + /** |
|
126 | + * @return string |
|
127 | + */ |
|
128 | + protected function getClass() |
|
129 | + { |
|
130 | + return trim('glsr-form glsr-'.glsr(Style::class)->get().' '.$this->args['class']); |
|
131 | + } |
|
132 | 132 | |
133 | - /** |
|
134 | - * @return array |
|
135 | - */ |
|
136 | - protected function getFields() |
|
137 | - { |
|
138 | - $hiddenFields = $this->getHiddenFields(); |
|
139 | - $hiddenFields[] = $this->getHoneypotField(); |
|
140 | - $fields = $this->normalizeFields(glsr(Form::class)->getFields('submission-form')); |
|
141 | - $paths = array_map(function ($obj) { |
|
142 | - return $obj->field['path']; |
|
143 | - }, $hiddenFields); |
|
144 | - foreach ($fields as $field) { |
|
145 | - $index = array_search($field->field['path'], $paths); |
|
146 | - if (false === $index) { |
|
147 | - continue; |
|
148 | - } |
|
149 | - unset($hiddenFields[$index]); |
|
150 | - } |
|
151 | - return array_merge($hiddenFields, $fields); |
|
152 | - } |
|
133 | + /** |
|
134 | + * @return array |
|
135 | + */ |
|
136 | + protected function getFields() |
|
137 | + { |
|
138 | + $hiddenFields = $this->getHiddenFields(); |
|
139 | + $hiddenFields[] = $this->getHoneypotField(); |
|
140 | + $fields = $this->normalizeFields(glsr(Form::class)->getFields('submission-form')); |
|
141 | + $paths = array_map(function ($obj) { |
|
142 | + return $obj->field['path']; |
|
143 | + }, $hiddenFields); |
|
144 | + foreach ($fields as $field) { |
|
145 | + $index = array_search($field->field['path'], $paths); |
|
146 | + if (false === $index) { |
|
147 | + continue; |
|
148 | + } |
|
149 | + unset($hiddenFields[$index]); |
|
150 | + } |
|
151 | + return array_merge($hiddenFields, $fields); |
|
152 | + } |
|
153 | 153 | |
154 | - /** |
|
155 | - * @return string |
|
156 | - */ |
|
157 | - protected function getLoginText() |
|
158 | - { |
|
159 | - $loginLink = glsr(Builder::class)->a([ |
|
160 | - 'href' => wp_login_url(strval(get_permalink())), |
|
161 | - 'text' => __('logged in', 'site-reviews'), |
|
162 | - ]); |
|
163 | - return sprintf(__('You must be %s to submit a review.', 'site-reviews'), $loginLink); |
|
164 | - } |
|
154 | + /** |
|
155 | + * @return string |
|
156 | + */ |
|
157 | + protected function getLoginText() |
|
158 | + { |
|
159 | + $loginLink = glsr(Builder::class)->a([ |
|
160 | + 'href' => wp_login_url(strval(get_permalink())), |
|
161 | + 'text' => __('logged in', 'site-reviews'), |
|
162 | + ]); |
|
163 | + return sprintf(__('You must be %s to submit a review.', 'site-reviews'), $loginLink); |
|
164 | + } |
|
165 | 165 | |
166 | - /** |
|
167 | - * @return void|string |
|
168 | - */ |
|
169 | - protected function getRegisterText() |
|
170 | - { |
|
171 | - if (!get_option('users_can_register') || !glsr(OptionManager::class)->getBool('settings.general.require.login')) { |
|
172 | - return; |
|
173 | - } |
|
174 | - $registerLink = glsr(Builder::class)->a([ |
|
175 | - 'href' => wp_registration_url(), |
|
176 | - 'text' => __('register', 'site-reviews'), |
|
177 | - ]); |
|
178 | - return sprintf(__('You may also %s for an account.', 'site-reviews'), $registerLink); |
|
179 | - } |
|
166 | + /** |
|
167 | + * @return void|string |
|
168 | + */ |
|
169 | + protected function getRegisterText() |
|
170 | + { |
|
171 | + if (!get_option('users_can_register') || !glsr(OptionManager::class)->getBool('settings.general.require.login')) { |
|
172 | + return; |
|
173 | + } |
|
174 | + $registerLink = glsr(Builder::class)->a([ |
|
175 | + 'href' => wp_registration_url(), |
|
176 | + 'text' => __('register', 'site-reviews'), |
|
177 | + ]); |
|
178 | + return sprintf(__('You may also %s for an account.', 'site-reviews'), $registerLink); |
|
179 | + } |
|
180 | 180 | |
181 | - /** |
|
182 | - * @return array |
|
183 | - */ |
|
184 | - protected function getHiddenFields() |
|
185 | - { |
|
186 | - $fields = [[ |
|
187 | - 'name' => '_action', |
|
188 | - 'value' => 'submit-review', |
|
189 | - ], [ |
|
190 | - 'name' => '_counter', |
|
191 | - ], [ |
|
192 | - 'name' => '_nonce', |
|
193 | - 'value' => wp_create_nonce('submit-review'), |
|
194 | - ], [ |
|
195 | - 'name' => '_post_id', |
|
196 | - 'value' => get_the_ID(), |
|
197 | - ], [ |
|
198 | - 'name' => '_referer', |
|
199 | - 'value' => wp_unslash(filter_input(INPUT_SERVER, 'REQUEST_URI')), |
|
200 | - ], [ |
|
201 | - 'name' => 'assign_to', |
|
202 | - 'value' => $this->args['assign_to'], |
|
203 | - ], [ |
|
204 | - 'name' => 'category', |
|
205 | - 'value' => $this->args['category'], |
|
206 | - ], [ |
|
207 | - 'name' => 'excluded', |
|
208 | - 'value' => $this->args['hide'], |
|
209 | - ], [ |
|
210 | - 'name' => 'form_id', |
|
211 | - 'value' => $this->args['id'], |
|
212 | - ]]; |
|
213 | - return array_map(function ($field) { |
|
214 | - return new Field(wp_parse_args($field, ['type' => 'hidden'])); |
|
215 | - }, $fields); |
|
216 | - } |
|
181 | + /** |
|
182 | + * @return array |
|
183 | + */ |
|
184 | + protected function getHiddenFields() |
|
185 | + { |
|
186 | + $fields = [[ |
|
187 | + 'name' => '_action', |
|
188 | + 'value' => 'submit-review', |
|
189 | + ], [ |
|
190 | + 'name' => '_counter', |
|
191 | + ], [ |
|
192 | + 'name' => '_nonce', |
|
193 | + 'value' => wp_create_nonce('submit-review'), |
|
194 | + ], [ |
|
195 | + 'name' => '_post_id', |
|
196 | + 'value' => get_the_ID(), |
|
197 | + ], [ |
|
198 | + 'name' => '_referer', |
|
199 | + 'value' => wp_unslash(filter_input(INPUT_SERVER, 'REQUEST_URI')), |
|
200 | + ], [ |
|
201 | + 'name' => 'assign_to', |
|
202 | + 'value' => $this->args['assign_to'], |
|
203 | + ], [ |
|
204 | + 'name' => 'category', |
|
205 | + 'value' => $this->args['category'], |
|
206 | + ], [ |
|
207 | + 'name' => 'excluded', |
|
208 | + 'value' => $this->args['hide'], |
|
209 | + ], [ |
|
210 | + 'name' => 'form_id', |
|
211 | + 'value' => $this->args['id'], |
|
212 | + ]]; |
|
213 | + return array_map(function ($field) { |
|
214 | + return new Field(wp_parse_args($field, ['type' => 'hidden'])); |
|
215 | + }, $fields); |
|
216 | + } |
|
217 | 217 | |
218 | - /** |
|
219 | - * @return Field |
|
220 | - */ |
|
221 | - protected function getHoneypotField() |
|
222 | - { |
|
223 | - return new Field([ |
|
224 | - 'name' => 'gotcha', |
|
225 | - 'type' => 'honeypot', |
|
226 | - ]); |
|
227 | - } |
|
218 | + /** |
|
219 | + * @return Field |
|
220 | + */ |
|
221 | + protected function getHoneypotField() |
|
222 | + { |
|
223 | + return new Field([ |
|
224 | + 'name' => 'gotcha', |
|
225 | + 'type' => 'honeypot', |
|
226 | + ]); |
|
227 | + } |
|
228 | 228 | |
229 | - /** |
|
230 | - * @return void |
|
231 | - */ |
|
232 | - protected function normalizeFieldId(Field &$field) |
|
233 | - { |
|
234 | - if (empty($this->args['id']) || empty($field->field['id'])) { |
|
235 | - return; |
|
236 | - } |
|
237 | - $field->field['id'].= '-'.$this->args['id']; |
|
238 | - } |
|
229 | + /** |
|
230 | + * @return void |
|
231 | + */ |
|
232 | + protected function normalizeFieldId(Field &$field) |
|
233 | + { |
|
234 | + if (empty($this->args['id']) || empty($field->field['id'])) { |
|
235 | + return; |
|
236 | + } |
|
237 | + $field->field['id'].= '-'.$this->args['id']; |
|
238 | + } |
|
239 | 239 | |
240 | - /** |
|
241 | - * @return void |
|
242 | - */ |
|
243 | - protected function normalizeFieldClass(Field &$field) |
|
244 | - { |
|
245 | - if (!isset($field->field['class'])) { |
|
246 | - $field->field['class'] = ''; |
|
247 | - } |
|
248 | - $field->field['class'] = trim($field->field['class'].' glsr-field-control'); |
|
249 | - } |
|
240 | + /** |
|
241 | + * @return void |
|
242 | + */ |
|
243 | + protected function normalizeFieldClass(Field &$field) |
|
244 | + { |
|
245 | + if (!isset($field->field['class'])) { |
|
246 | + $field->field['class'] = ''; |
|
247 | + } |
|
248 | + $field->field['class'] = trim($field->field['class'].' glsr-field-control'); |
|
249 | + } |
|
250 | 250 | |
251 | - /** |
|
252 | - * @return void |
|
253 | - */ |
|
254 | - protected function normalizeFieldErrors(Field &$field) |
|
255 | - { |
|
256 | - if (!array_key_exists($field->field['path'], $this->errors)) { |
|
257 | - return; |
|
258 | - } |
|
259 | - $field->field['errors'] = $this->errors[$field->field['path']]; |
|
260 | - } |
|
251 | + /** |
|
252 | + * @return void |
|
253 | + */ |
|
254 | + protected function normalizeFieldErrors(Field &$field) |
|
255 | + { |
|
256 | + if (!array_key_exists($field->field['path'], $this->errors)) { |
|
257 | + return; |
|
258 | + } |
|
259 | + $field->field['errors'] = $this->errors[$field->field['path']]; |
|
260 | + } |
|
261 | 261 | |
262 | - /** |
|
263 | - * @return void |
|
264 | - */ |
|
265 | - protected function normalizeFieldRequired(Field &$field) |
|
266 | - { |
|
267 | - if (!in_array($field->field['path'], $this->required)) { |
|
268 | - return; |
|
269 | - } |
|
270 | - $field->field['required'] = true; |
|
271 | - } |
|
262 | + /** |
|
263 | + * @return void |
|
264 | + */ |
|
265 | + protected function normalizeFieldRequired(Field &$field) |
|
266 | + { |
|
267 | + if (!in_array($field->field['path'], $this->required)) { |
|
268 | + return; |
|
269 | + } |
|
270 | + $field->field['required'] = true; |
|
271 | + } |
|
272 | 272 | |
273 | - /** |
|
274 | - * @return array |
|
275 | - */ |
|
276 | - protected function normalizeFields($fields) |
|
277 | - { |
|
278 | - $normalizedFields = []; |
|
279 | - foreach ($fields as $field) { |
|
280 | - if (in_array($field->field['path'], $this->args['hide'])) { |
|
281 | - continue; |
|
282 | - } |
|
283 | - $field->field['is_public'] = true; |
|
284 | - $this->normalizeFieldClass($field); |
|
285 | - $this->normalizeFieldErrors($field); |
|
286 | - $this->normalizeFieldRequired($field); |
|
287 | - $this->normalizeFieldValue($field); |
|
288 | - $this->normalizeFieldId($field); |
|
289 | - $normalizedFields[] = $field; |
|
290 | - } |
|
291 | - return $normalizedFields; |
|
292 | - } |
|
273 | + /** |
|
274 | + * @return array |
|
275 | + */ |
|
276 | + protected function normalizeFields($fields) |
|
277 | + { |
|
278 | + $normalizedFields = []; |
|
279 | + foreach ($fields as $field) { |
|
280 | + if (in_array($field->field['path'], $this->args['hide'])) { |
|
281 | + continue; |
|
282 | + } |
|
283 | + $field->field['is_public'] = true; |
|
284 | + $this->normalizeFieldClass($field); |
|
285 | + $this->normalizeFieldErrors($field); |
|
286 | + $this->normalizeFieldRequired($field); |
|
287 | + $this->normalizeFieldValue($field); |
|
288 | + $this->normalizeFieldId($field); |
|
289 | + $normalizedFields[] = $field; |
|
290 | + } |
|
291 | + return $normalizedFields; |
|
292 | + } |
|
293 | 293 | |
294 | - /** |
|
295 | - * @return void |
|
296 | - */ |
|
297 | - protected function normalizeFieldValue(Field &$field) |
|
298 | - { |
|
299 | - if (!array_key_exists($field->field['path'], $this->values)) { |
|
300 | - return; |
|
301 | - } |
|
302 | - if (in_array($field->field['type'], ['radio', 'checkbox'])) { |
|
303 | - $field->field['checked'] = $field->field['value'] == $this->values[$field->field['path']]; |
|
304 | - } else { |
|
305 | - $field->field['value'] = $this->values[$field->field['path']]; |
|
306 | - } |
|
307 | - } |
|
294 | + /** |
|
295 | + * @return void |
|
296 | + */ |
|
297 | + protected function normalizeFieldValue(Field &$field) |
|
298 | + { |
|
299 | + if (!array_key_exists($field->field['path'], $this->values)) { |
|
300 | + return; |
|
301 | + } |
|
302 | + if (in_array($field->field['type'], ['radio', 'checkbox'])) { |
|
303 | + $field->field['checked'] = $field->field['value'] == $this->values[$field->field['path']]; |
|
304 | + } else { |
|
305 | + $field->field['value'] = $this->values[$field->field['path']]; |
|
306 | + } |
|
307 | + } |
|
308 | 308 | } |
@@ -10,17 +10,17 @@ |
||
10 | 10 | |
11 | 11 | class Provider implements ProviderContract |
12 | 12 | { |
13 | - /** |
|
14 | - * @return void |
|
15 | - */ |
|
16 | - public function register(Application $app) |
|
17 | - { |
|
18 | - $app->bind(Application::class, $app); |
|
19 | - $app->singleton(Actions::class, Actions::class); |
|
20 | - $app->singleton(Filters::class, Filters::class); |
|
21 | - $app->singleton(OptionManager::class, OptionManager::class); |
|
22 | - $app->singleton(Translator::class, Translator::class); |
|
23 | - $app->singleton(Translation::class, Translation::class); |
|
24 | - $app->singleton(MainController::class, MainController::class); // this goes last |
|
25 | - } |
|
13 | + /** |
|
14 | + * @return void |
|
15 | + */ |
|
16 | + public function register(Application $app) |
|
17 | + { |
|
18 | + $app->bind(Application::class, $app); |
|
19 | + $app->singleton(Actions::class, Actions::class); |
|
20 | + $app->singleton(Filters::class, Filters::class); |
|
21 | + $app->singleton(OptionManager::class, OptionManager::class); |
|
22 | + $app->singleton(Translator::class, Translator::class); |
|
23 | + $app->singleton(Translation::class, Translation::class); |
|
24 | + $app->singleton(MainController::class, MainController::class); // this goes last |
|
25 | + } |
|
26 | 26 | } |
@@ -8,70 +8,70 @@ |
||
8 | 8 | |
9 | 9 | class ChangeStatus |
10 | 10 | { |
11 | - /** |
|
12 | - * @return array |
|
13 | - */ |
|
14 | - public function handle(Command $command) |
|
15 | - { |
|
16 | - $postId = wp_update_post([ |
|
17 | - 'ID' => $command->id, |
|
18 | - 'post_status' => $command->status, |
|
19 | - ]); |
|
20 | - if (is_wp_error($postId)) { |
|
21 | - glsr_log()->error($postId->get_error_message()); |
|
22 | - return []; |
|
23 | - } |
|
24 | - return [ |
|
25 | - 'class' => 'status-'.$command->status, |
|
26 | - 'counts' => $this->getStatusLinks(), |
|
27 | - 'link' => $this->getPostLink($postId).$this->getPostState($postId), |
|
28 | - 'pending' => wp_count_posts(Application::POST_TYPE, 'readable')->pending, |
|
29 | - ]; |
|
30 | - } |
|
11 | + /** |
|
12 | + * @return array |
|
13 | + */ |
|
14 | + public function handle(Command $command) |
|
15 | + { |
|
16 | + $postId = wp_update_post([ |
|
17 | + 'ID' => $command->id, |
|
18 | + 'post_status' => $command->status, |
|
19 | + ]); |
|
20 | + if (is_wp_error($postId)) { |
|
21 | + glsr_log()->error($postId->get_error_message()); |
|
22 | + return []; |
|
23 | + } |
|
24 | + return [ |
|
25 | + 'class' => 'status-'.$command->status, |
|
26 | + 'counts' => $this->getStatusLinks(), |
|
27 | + 'link' => $this->getPostLink($postId).$this->getPostState($postId), |
|
28 | + 'pending' => wp_count_posts(Application::POST_TYPE, 'readable')->pending, |
|
29 | + ]; |
|
30 | + } |
|
31 | 31 | |
32 | - /** |
|
33 | - * @param int $postId |
|
34 | - * @return string |
|
35 | - */ |
|
36 | - protected function getPostLink($postId) |
|
37 | - { |
|
38 | - $title = _draft_or_post_title($postId); |
|
39 | - return glsr(Builder::class)->a($title, [ |
|
40 | - 'aria-label' => '“'.esc_attr($title).'” ('.__('Edit', 'site-reviews').')', |
|
41 | - 'class' => 'row-title', |
|
42 | - 'href' => get_edit_post_link($postId), |
|
43 | - ]); |
|
44 | - } |
|
32 | + /** |
|
33 | + * @param int $postId |
|
34 | + * @return string |
|
35 | + */ |
|
36 | + protected function getPostLink($postId) |
|
37 | + { |
|
38 | + $title = _draft_or_post_title($postId); |
|
39 | + return glsr(Builder::class)->a($title, [ |
|
40 | + 'aria-label' => '“'.esc_attr($title).'” ('.__('Edit', 'site-reviews').')', |
|
41 | + 'class' => 'row-title', |
|
42 | + 'href' => get_edit_post_link($postId), |
|
43 | + ]); |
|
44 | + } |
|
45 | 45 | |
46 | - /** |
|
47 | - * @param int $postId |
|
48 | - * @return string |
|
49 | - */ |
|
50 | - protected function getPostState($postId) |
|
51 | - { |
|
52 | - ob_start(); |
|
53 | - _post_states(get_post($postId)); |
|
54 | - return ob_get_clean(); |
|
55 | - } |
|
46 | + /** |
|
47 | + * @param int $postId |
|
48 | + * @return string |
|
49 | + */ |
|
50 | + protected function getPostState($postId) |
|
51 | + { |
|
52 | + ob_start(); |
|
53 | + _post_states(get_post($postId)); |
|
54 | + return ob_get_clean(); |
|
55 | + } |
|
56 | 56 | |
57 | - /** |
|
58 | - * @return void|string |
|
59 | - */ |
|
60 | - protected function getStatusLinks() |
|
61 | - { |
|
62 | - global $avail_post_stati; |
|
63 | - require_once ABSPATH.'wp-admin/includes/class-wp-posts-list-table.php'; |
|
64 | - $hookName = 'edit-'.Application::POST_TYPE; |
|
65 | - set_current_screen($hookName); |
|
66 | - $avail_post_stati = get_available_post_statuses(Application::POST_TYPE); |
|
67 | - $table = new \WP_Posts_List_Table(['screen' => $hookName]); |
|
68 | - $views = apply_filters('views_'.$hookName, $table->get_views()); // uses compat get_views() |
|
69 | - if (empty($views)) { |
|
70 | - return; |
|
71 | - } |
|
72 | - foreach ($views as $class => $view) { |
|
73 | - $views[$class] = "\t<li class='$class'>$view"; |
|
74 | - } |
|
75 | - return implode(' |</li>', $views).'</li>'; |
|
76 | - } |
|
57 | + /** |
|
58 | + * @return void|string |
|
59 | + */ |
|
60 | + protected function getStatusLinks() |
|
61 | + { |
|
62 | + global $avail_post_stati; |
|
63 | + require_once ABSPATH.'wp-admin/includes/class-wp-posts-list-table.php'; |
|
64 | + $hookName = 'edit-'.Application::POST_TYPE; |
|
65 | + set_current_screen($hookName); |
|
66 | + $avail_post_stati = get_available_post_statuses(Application::POST_TYPE); |
|
67 | + $table = new \WP_Posts_List_Table(['screen' => $hookName]); |
|
68 | + $views = apply_filters('views_'.$hookName, $table->get_views()); // uses compat get_views() |
|
69 | + if (empty($views)) { |
|
70 | + return; |
|
71 | + } |
|
72 | + foreach ($views as $class => $view) { |
|
73 | + $views[$class] = "\t<li class='$class'>$view"; |
|
74 | + } |
|
75 | + return implode(' |</li>', $views).'</li>'; |
|
76 | + } |
|
77 | 77 | } |
@@ -8,40 +8,40 @@ |
||
8 | 8 | |
9 | 9 | class CreateReview |
10 | 10 | { |
11 | - /** |
|
12 | - * @return void|string |
|
13 | - */ |
|
14 | - public function handle(Command $command) |
|
15 | - { |
|
16 | - $review = glsr(ReviewManager::class)->create($command); |
|
17 | - if (!$review) { |
|
18 | - glsr()->sessionSet($command->form_id.'errors', []); |
|
19 | - glsr()->sessionSet($command->form_id.'message', __('Your review could not be submitted and the error has been logged. Please notify the site admin.', 'site-reviews')); |
|
20 | - return; |
|
21 | - } |
|
22 | - glsr()->sessionSet($command->form_id.'message', __('Your review has been submitted!', 'site-reviews')); |
|
23 | - glsr(Notification::class)->send($review); |
|
24 | - if ($command->ajax_request) { |
|
25 | - return; |
|
26 | - } |
|
27 | - wp_safe_redirect($this->getReferer($command)); |
|
28 | - exit; |
|
29 | - } |
|
11 | + /** |
|
12 | + * @return void|string |
|
13 | + */ |
|
14 | + public function handle(Command $command) |
|
15 | + { |
|
16 | + $review = glsr(ReviewManager::class)->create($command); |
|
17 | + if (!$review) { |
|
18 | + glsr()->sessionSet($command->form_id.'errors', []); |
|
19 | + glsr()->sessionSet($command->form_id.'message', __('Your review could not be submitted and the error has been logged. Please notify the site admin.', 'site-reviews')); |
|
20 | + return; |
|
21 | + } |
|
22 | + glsr()->sessionSet($command->form_id.'message', __('Your review has been submitted!', 'site-reviews')); |
|
23 | + glsr(Notification::class)->send($review); |
|
24 | + if ($command->ajax_request) { |
|
25 | + return; |
|
26 | + } |
|
27 | + wp_safe_redirect($this->getReferer($command)); |
|
28 | + exit; |
|
29 | + } |
|
30 | 30 | |
31 | - /** |
|
32 | - * @return string |
|
33 | - */ |
|
34 | - protected function getReferer(Command $command) |
|
35 | - { |
|
36 | - $referer = trim(strval(get_post_meta($command->post_id, 'redirect_to', true))); |
|
37 | - $referer = apply_filters('site-reviews/review/redirect', $referer, $command); |
|
38 | - if (empty($referer)) { |
|
39 | - $referer = $command->referer; |
|
40 | - } |
|
41 | - if (empty($referer)) { |
|
42 | - glsr_log()->warning('The form referer ($_SERVER[REQUEST_URI]) was empty.')->debug($command); |
|
43 | - $referer = home_url(); |
|
44 | - } |
|
45 | - return $referer; |
|
46 | - } |
|
31 | + /** |
|
32 | + * @return string |
|
33 | + */ |
|
34 | + protected function getReferer(Command $command) |
|
35 | + { |
|
36 | + $referer = trim(strval(get_post_meta($command->post_id, 'redirect_to', true))); |
|
37 | + $referer = apply_filters('site-reviews/review/redirect', $referer, $command); |
|
38 | + if (empty($referer)) { |
|
39 | + $referer = $command->referer; |
|
40 | + } |
|
41 | + if (empty($referer)) { |
|
42 | + glsr_log()->warning('The form referer ($_SERVER[REQUEST_URI]) was empty.')->debug($command); |
|
43 | + $referer = home_url(); |
|
44 | + } |
|
45 | + return $referer; |
|
46 | + } |
|
47 | 47 | } |
@@ -4,131 +4,131 @@ |
||
4 | 4 | |
5 | 5 | // Unprotected review meta has been deprecated |
6 | 6 | add_filter('get_post_metadata', function ($check, $postId, $metaKey, $single) { |
7 | - $metaKeys = array_keys(glsr('Defaults\CreateReviewDefaults')->defaults()); |
|
8 | - if (!in_array($metaKey, $metaKeys) || glsr()->post_type != get_post_type($postId)) { |
|
9 | - return $check; |
|
10 | - } |
|
11 | - glsr()->deprecated[] = sprintf( |
|
12 | - 'The "%1$s" meta_key has been deprecated for Reviews. Please use the protected "_%1$s" meta_key instead.', |
|
13 | - $metaKey |
|
14 | - ); |
|
15 | - return get_post_meta($postId, '_'.$metaKey, $single); |
|
7 | + $metaKeys = array_keys(glsr('Defaults\CreateReviewDefaults')->defaults()); |
|
8 | + if (!in_array($metaKey, $metaKeys) || glsr()->post_type != get_post_type($postId)) { |
|
9 | + return $check; |
|
10 | + } |
|
11 | + glsr()->deprecated[] = sprintf( |
|
12 | + 'The "%1$s" meta_key has been deprecated for Reviews. Please use the protected "_%1$s" meta_key instead.', |
|
13 | + $metaKey |
|
14 | + ); |
|
15 | + return get_post_meta($postId, '_'.$metaKey, $single); |
|
16 | 16 | }, 10, 4); |
17 | 17 | |
18 | 18 | // Modules/Html/Template.php |
19 | 19 | add_filter('site-reviews/interpolate/reviews', function ($context, $template) { |
20 | - $search = '{{ navigation }}'; |
|
21 | - if (false !== strpos($template, $search)) { |
|
22 | - $context['navigation'] = $context['pagination']; |
|
23 | - glsr()->deprecated[] = 'The {{ navigation }} template key in "YOUR_THEME/site-reviews/reviews.php" has been deprecated. Please use the {{ pagination }} template key instead.'; |
|
24 | - } |
|
25 | - return $context; |
|
20 | + $search = '{{ navigation }}'; |
|
21 | + if (false !== strpos($template, $search)) { |
|
22 | + $context['navigation'] = $context['pagination']; |
|
23 | + glsr()->deprecated[] = 'The {{ navigation }} template key in "YOUR_THEME/site-reviews/reviews.php" has been deprecated. Please use the {{ pagination }} template key instead.'; |
|
24 | + } |
|
25 | + return $context; |
|
26 | 26 | }, 10, 2); |
27 | 27 | |
28 | 28 | // Database/ReviewManager.php |
29 | 29 | add_action('site-reviews/review/created', function ($review) { |
30 | - if (has_action('site-reviews/local/review/create')) { |
|
31 | - glsr()->deprecated[] = 'The "site-reviews/local/review/create" hook has been deprecated. Please use the "site-reviews/review/created" hook instead.'; |
|
32 | - do_action('site-reviews/local/review/create', (array) get_post($review->ID), (array) $review, $review->ID); |
|
33 | - } |
|
30 | + if (has_action('site-reviews/local/review/create')) { |
|
31 | + glsr()->deprecated[] = 'The "site-reviews/local/review/create" hook has been deprecated. Please use the "site-reviews/review/created" hook instead.'; |
|
32 | + do_action('site-reviews/local/review/create', (array) get_post($review->ID), (array) $review, $review->ID); |
|
33 | + } |
|
34 | 34 | }, 9); |
35 | 35 | |
36 | 36 | // Handlers/CreateReview.php |
37 | 37 | add_action('site-reviews/review/submitted', function ($review) { |
38 | - if (has_action('site-reviews/local/review/submitted')) { |
|
39 | - glsr()->deprecated[] = 'The "site-reviews/local/review/submitted" hook has been deprecated. Please use the "site-reviews/review/submitted" hook instead.'; |
|
40 | - do_action('site-reviews/local/review/submitted', null, $review); |
|
41 | - } |
|
42 | - if (has_filter('site-reviews/local/review/submitted/message')) { |
|
43 | - glsr()->deprecated[] = 'The "site-reviews/local/review/submitted/message" hook has been deprecated.'; |
|
44 | - } |
|
38 | + if (has_action('site-reviews/local/review/submitted')) { |
|
39 | + glsr()->deprecated[] = 'The "site-reviews/local/review/submitted" hook has been deprecated. Please use the "site-reviews/review/submitted" hook instead.'; |
|
40 | + do_action('site-reviews/local/review/submitted', null, $review); |
|
41 | + } |
|
42 | + if (has_filter('site-reviews/local/review/submitted/message')) { |
|
43 | + glsr()->deprecated[] = 'The "site-reviews/local/review/submitted/message" hook has been deprecated.'; |
|
44 | + } |
|
45 | 45 | }, 9); |
46 | 46 | |
47 | 47 | // Database/ReviewManager.php |
48 | 48 | add_filter('site-reviews/create/review-values', function ($values, $command) { |
49 | - if (has_filter('site-reviews/local/review')) { |
|
50 | - glsr()->deprecated[] = 'The "site-reviews/local/review" hook has been deprecated. Please use the "site-reviews/create/review-values" hook instead.'; |
|
51 | - return apply_filters('site-reviews/local/review', $values, $command); |
|
52 | - } |
|
53 | - return $values; |
|
49 | + if (has_filter('site-reviews/local/review')) { |
|
50 | + glsr()->deprecated[] = 'The "site-reviews/local/review" hook has been deprecated. Please use the "site-reviews/create/review-values" hook instead.'; |
|
51 | + return apply_filters('site-reviews/local/review', $values, $command); |
|
52 | + } |
|
53 | + return $values; |
|
54 | 54 | }, 9, 2); |
55 | 55 | |
56 | 56 | // Handlers/EnqueuePublicAssets.php |
57 | 57 | add_filter('site-reviews/enqueue/public/localize', function ($variables) { |
58 | - if (has_filter('site-reviews/enqueue/localize')) { |
|
59 | - glsr()->deprecated[] = 'The "site-reviews/enqueue/localize" hook has been deprecated. Please use the "site-reviews/enqueue/public/localize" hook instead.'; |
|
60 | - return apply_filters('site-reviews/enqueue/localize', $variables); |
|
61 | - } |
|
62 | - return $variables; |
|
58 | + if (has_filter('site-reviews/enqueue/localize')) { |
|
59 | + glsr()->deprecated[] = 'The "site-reviews/enqueue/localize" hook has been deprecated. Please use the "site-reviews/enqueue/public/localize" hook instead.'; |
|
60 | + return apply_filters('site-reviews/enqueue/localize', $variables); |
|
61 | + } |
|
62 | + return $variables; |
|
63 | 63 | }, 9); |
64 | 64 | |
65 | 65 | // Modules/Rating.php |
66 | 66 | add_filter('site-reviews/rating/average', function ($average) { |
67 | - if (has_filter('site-reviews/average/rating')) { |
|
68 | - glsr()->deprecated[] = 'The "site-reviews/average/rating" hook has been deprecated. Please use the "site-reviews/rating/average" hook instead.'; |
|
69 | - } |
|
70 | - return $average; |
|
67 | + if (has_filter('site-reviews/average/rating')) { |
|
68 | + glsr()->deprecated[] = 'The "site-reviews/average/rating" hook has been deprecated. Please use the "site-reviews/rating/average" hook instead.'; |
|
69 | + } |
|
70 | + return $average; |
|
71 | 71 | }, 9); |
72 | 72 | |
73 | 73 | // Modules/Rating.php |
74 | 74 | add_filter('site-reviews/rating/ranking', function ($ranking) { |
75 | - if (has_filter('site-reviews/bayesian/ranking')) { |
|
76 | - glsr()->deprecated[] = 'The "site-reviews/bayesian/ranking" hook has been deprecated. Please use the "site-reviews/rating/ranking" hook instead.'; |
|
77 | - } |
|
78 | - return $ranking; |
|
75 | + if (has_filter('site-reviews/bayesian/ranking')) { |
|
76 | + glsr()->deprecated[] = 'The "site-reviews/bayesian/ranking" hook has been deprecated. Please use the "site-reviews/rating/ranking" hook instead.'; |
|
77 | + } |
|
78 | + return $ranking; |
|
79 | 79 | }, 9); |
80 | 80 | |
81 | 81 | // Modules/Html/Partials/SiteReviews.php |
82 | 82 | add_filter('site-reviews/review/build/after', function ($renderedFields) { |
83 | - if (has_filter('site-reviews/reviews/review/text')) { |
|
84 | - glsr()->deprecated[] = 'The "site-reviews/reviews/review/text" hook has been deprecated. Please use the "site-reviews/review/build/after" hook instead.'; |
|
85 | - } |
|
86 | - if (has_filter('site-reviews/reviews/review/title')) { |
|
87 | - glsr()->deprecated[] = 'The "site-reviews/reviews/review/title" hook has been deprecated. Please use the "site-reviews/review/build/after" hook instead.'; |
|
88 | - } |
|
89 | - return $renderedFields; |
|
83 | + if (has_filter('site-reviews/reviews/review/text')) { |
|
84 | + glsr()->deprecated[] = 'The "site-reviews/reviews/review/text" hook has been deprecated. Please use the "site-reviews/review/build/after" hook instead.'; |
|
85 | + } |
|
86 | + if (has_filter('site-reviews/reviews/review/title')) { |
|
87 | + glsr()->deprecated[] = 'The "site-reviews/reviews/review/title" hook has been deprecated. Please use the "site-reviews/review/build/after" hook instead.'; |
|
88 | + } |
|
89 | + return $renderedFields; |
|
90 | 90 | }, 9); |
91 | 91 | |
92 | 92 | // Modules/Html/Partials/SiteReviews.php |
93 | 93 | add_filter('site-reviews/review/build/before', function ($review) { |
94 | - if (has_filter('site-reviews/rendered/review')) { |
|
95 | - glsr()->deprecated[] = 'The "site-reviews/rendered/review" hook has been deprecated. Please either use a custom "review.php" template (refer to the documentation), or use the "site-reviews/review/build/after" hook instead.'; |
|
96 | - } |
|
97 | - if (has_filter('site-reviews/rendered/review/meta/order')) { |
|
98 | - glsr()->deprecated[] = 'The "site-reviews/rendered/review/meta/order" hook has been deprecated. Please use a custom "review.php" template instead (refer to the documentation).'; |
|
99 | - } |
|
100 | - if (has_filter('site-reviews/rendered/review/order')) { |
|
101 | - glsr()->deprecated[] = 'The "site-reviews/rendered/review/order" hook has been deprecated. Please use a custom "review.php" template instead (refer to the documentation).'; |
|
102 | - } |
|
103 | - if (has_filter('site-reviews/rendered/review-form/login-register')) { |
|
104 | - glsr()->deprecated[] = 'The "site-reviews/rendered/review-form/login-register" hook has been deprecated. Please use a custom "login-register.php" template instead (refer to the documentation).'; |
|
105 | - } |
|
106 | - if (has_filter('site-reviews/reviews/navigation_links')) { |
|
107 | - glsr()->deprecated[] = 'The "site-reviews/reviews/navigation_links" hook has been deprecated. Please use a custom "pagination.php" template instead (refer to the documentation).'; |
|
108 | - } |
|
109 | - return $review; |
|
94 | + if (has_filter('site-reviews/rendered/review')) { |
|
95 | + glsr()->deprecated[] = 'The "site-reviews/rendered/review" hook has been deprecated. Please either use a custom "review.php" template (refer to the documentation), or use the "site-reviews/review/build/after" hook instead.'; |
|
96 | + } |
|
97 | + if (has_filter('site-reviews/rendered/review/meta/order')) { |
|
98 | + glsr()->deprecated[] = 'The "site-reviews/rendered/review/meta/order" hook has been deprecated. Please use a custom "review.php" template instead (refer to the documentation).'; |
|
99 | + } |
|
100 | + if (has_filter('site-reviews/rendered/review/order')) { |
|
101 | + glsr()->deprecated[] = 'The "site-reviews/rendered/review/order" hook has been deprecated. Please use a custom "review.php" template instead (refer to the documentation).'; |
|
102 | + } |
|
103 | + if (has_filter('site-reviews/rendered/review-form/login-register')) { |
|
104 | + glsr()->deprecated[] = 'The "site-reviews/rendered/review-form/login-register" hook has been deprecated. Please use a custom "login-register.php" template instead (refer to the documentation).'; |
|
105 | + } |
|
106 | + if (has_filter('site-reviews/reviews/navigation_links')) { |
|
107 | + glsr()->deprecated[] = 'The "site-reviews/reviews/navigation_links" hook has been deprecated. Please use a custom "pagination.php" template instead (refer to the documentation).'; |
|
108 | + } |
|
109 | + return $review; |
|
110 | 110 | }, 9); |
111 | 111 | |
112 | 112 | add_filter('site-reviews/validate/custom', function ($result, $request) { |
113 | - if (has_filter('site-reviews/validate/review/submission')) { |
|
114 | - glsr_log()->warning('The "site-reviews/validate/review/submission" hook has been deprecated. Please use the "site-reviews/validate/custom" hook instead.'); |
|
115 | - return apply_filters('site-reviews/validate/review/submission', $result, $request); |
|
116 | - } |
|
117 | - return $result; |
|
113 | + if (has_filter('site-reviews/validate/review/submission')) { |
|
114 | + glsr_log()->warning('The "site-reviews/validate/review/submission" hook has been deprecated. Please use the "site-reviews/validate/custom" hook instead.'); |
|
115 | + return apply_filters('site-reviews/validate/review/submission', $result, $request); |
|
116 | + } |
|
117 | + return $result; |
|
118 | 118 | }, 9, 2); |
119 | 119 | |
120 | 120 | add_filter('site-reviews/views/file', function ($file, $view, $data) { |
121 | - if (has_filter('site-reviews/addon/views/file')) { |
|
122 | - glsr()->deprecated[] = 'The "site-reviews/addon/views/file" hook has been deprecated. Please use the "site-reviews/views/file" hook instead.'; |
|
123 | - $file = apply_filters('site-reviews/addon/views/file', $file, $view, $data); |
|
124 | - } |
|
125 | - return $file; |
|
121 | + if (has_filter('site-reviews/addon/views/file')) { |
|
122 | + glsr()->deprecated[] = 'The "site-reviews/addon/views/file" hook has been deprecated. Please use the "site-reviews/views/file" hook instead.'; |
|
123 | + $file = apply_filters('site-reviews/addon/views/file', $file, $view, $data); |
|
124 | + } |
|
125 | + return $file; |
|
126 | 126 | }, 9, 3); |
127 | 127 | |
128 | 128 | add_action('wp_footer', function () { |
129 | - $notices = array_keys(array_flip(glsr()->deprecated)); |
|
130 | - natsort($notices); |
|
131 | - foreach ($notices as $notice) { |
|
132 | - glsr_log()->warning($notice); |
|
133 | - } |
|
129 | + $notices = array_keys(array_flip(glsr()->deprecated)); |
|
130 | + natsort($notices); |
|
131 | + foreach ($notices as $notice) { |
|
132 | + glsr_log()->warning($notice); |
|
133 | + } |
|
134 | 134 | }); |