PluginProbe
codoc / 0.9.3
codoc v0.9.3
0.9.8.8 0.9.8.9 0.9.9 0.9.9.1 trunk 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.8.1 0.8.2 0.8.3 0.8.4 0.8.6 0.8.7 0.8.8 0.8.9 0.9 0.9.1 0.9.10 0.9.11 All 114 releases
← All changes | class-codoc.php +168 -250 0.70.9.3 View file →
@@ -1,6 +1,6 @@
1 1 <?php
2 -
2 +require_once(plugin_dir_path( __FILE__ ) .'class-codoc-util.php');
3 3 final class Codoc {
4 4
5 5 public function __construct() {
6 6 if (is_admin()) {
@@ -6,46 +6,51 @@
6 6 if (is_admin()) {
7 7 // setting
8 8 $this->add_settings();
9 9 }
10 +
11 + // usercode, token はadminページのみDBから取得する
12 + $this->util = new CodocUtil();
13 +
14 + // paywall用の本文非表示化とcodocタグへの属性追加
15 + add_filter('the_content',[$this,'the_content']);
16 +
10 17 $auth_info = get_option(CODOC_AUTHINFO_OPTION_NAME);
11 - if (!$auth_info) {
12 - return $this;
13 - }
14 18
15 - // データ同期 (save_postはis_adminで実行されないケースがある)
16 - add_action( 'save_post', [$this,'save_post'], 20, 3 );
17 - add_action( 'added_post_meta', [$this,'updated_post_meta'], 10, 3 );
18 - add_action( 'updated_post_meta',[$this,'updated_post_meta'], 10, 3 );
19 - add_action( 'deleted_post_meta',[$this,'deleted_post_meta'], 10, 4 );
20 -
21 - if (is_admin()) {
22 - // gutenberg
23 - require_once 'src/init.php';
19 + if ($auth_info) {
20 + // データ同期 (save_postはis_adminで実行されないケースがある)
21 + add_action( 'save_post', [$this,'save_post'], 20, 3 );
22 + add_action( 'added_post_meta', [$this,'updated_post_meta'], 10, 3 );
23 + add_action( 'updated_post_meta',[$this,'updated_post_meta'], 10, 3 );
24 + add_action( 'deleted_post_meta',[$this,'deleted_post_meta'], 10, 4 );
25 + }
26 + if (is_admin() and $auth_info) { //管理画面
27 + // Gutenberg のサポートがない場合は何もしない
28 + if ( function_exists( 'register_block_type' ) ) {
29 + // gutenberg
30 + require_once 'src/init.php';
31 + add_action('wp_loaded', function() {
32 + wp_localize_script('wordpress-cgb-block-js', 'OPTIONS', array(
33 + 'codoc_url' => CODOC_URL,
34 + 'codoc_usercode' => get_option(CODOC_USERCODE_OPTION_NAME),
35 + 'codoc_plugin_version' => CODOC_PLUGIN_VERSION,
36 + 'codoc_sdk_path' => CODOC_SDK_PATH,
37 + ));
38 + });
39 + }
24 40 // tinymce
25 41 $this->add_mce();
26 - add_action('wp_loaded', function() {
27 - wp_localize_script('wordpress-cgb-block-js', 'OPTIONS', array(
28 - 'codoc_url' => CODOC_URL,
29 - 'codoc_usercode' => get_option(CODOC_USERCODE_OPTION_NAME),
30 - 'codoc_plugin_version' => CODOC_PLUGIN_VERSION,
31 - ));
32 - });
33 - return $this;
34 - }
35 -
36 - // codocのJS登録
37 - add_action( 'wp_enqueue_scripts', function() {
38 - wp_enqueue_script( 'codoc-injector-js', CODOC_URL . '/js/cms.js' );
39 - });
40 - // 登録したscriptタグに属性をつける
41 - add_filter('script_loader_tag', [$this,'modifier_script_tag'],10,2);
42 - // tinymce用のショートコード
43 - add_shortcode('codoc', [$this, 'injector_shortcode']);
44 -
45 - // paywall用の本文非表示化とcodocタグへの属性追加
46 - add_filter('the_content',[$this,'the_content']);
47 - return $this;
42 + } else { // ブログ画面
43 + // codocのJS登録
44 + add_action( 'wp_enqueue_scripts', function() {
45 + wp_enqueue_script( 'codoc-injector-js', CODOC_URL . '/js/cms.js' );
46 + });
47 + // 登録したscriptタグに属性をつける
48 + add_filter('script_loader_tag', [$this,'modifier_script_tag'],10,2);
49 + // tinymce用のショートコード
50 + add_shortcode('codoc', [$this, 'injector_shortcode']);
51 + }
52 + return $this;
48 53 }
49 54
50 55 public function modifier_script_tag($tag,$handle) {
51 56 if($handle !== 'codoc-injector-js') {
@@ -55,9 +60,10 @@
55 60 $data_css = '';
56 61 if ($css_path = $CODOC_SETTINGS['css_path']) {
57 62 $data_css = sprintf(' data-css="%s" ',$css_path);
58 63 }
59 - return str_replace(' src=', $data_css . ' defer src=', $tag);
64 + //return str_replace(' src=', $data_css . ' defer src=', $tag);
65 + return preg_replace('/(src=[^>]+)/',' ${1} ' . $data_css . ' defer',$tag);
60 66 }
61 67 public function injector_shortcode($atts) {
62 68 global $post;
63 69 ob_start();
@@ -63,50 +69,8 @@
63 69 ob_start();
64 70 require 'views/codoc-injector.php';
65 71 return ob_get_clean();
66 72 }
67 - public function callAPI($method,$path,$body = [],$headers = []) {
68 - $usercode = get_option(CODOC_USERCODE_OPTION_NAME);
69 - $token = get_option(CODOC_TOKEN_OPTION_NAME);
70 -
71 - $headers['X-CodocToken'] = $token;
72 - $host = CODOC_URL;
73 - $sslverify = true;
74 -
75 - if (preg_match('/local/',CODOC_URL)) {
76 - $sslverify = false;
77 - $host = 'https://host.docker.internal';
78 - }
79 - $url = sprintf("%s/api/v1/cms/%s%s",$host,$usercode,$path);
80 - $http = new WP_Http();
81 - try {
82 - $response = $http->request(
83 - $url,
84 - [
85 - 'sslverify' => $sslverify,
86 - 'method' => $method,
87 - 'timeout' => 10,
88 - 'headers' => $headers,
89 - 'body' => $body,
90 - ]
91 - );
92 - if ( is_wp_error($response) || $response['response']['code'] != 200 ) {
93 - //何もしない
94 - //var_dump( $response );
95 - }
96 - } catch(Exception $e) {
97 - }
98 -
99 - if (!is_wp_error($response) and
100 - isset($response['body']) and
101 - is_string($response['body']) and
102 - is_array(json_decode($response['body'], true)) and
103 - (json_last_error() == JSON_ERROR_NONE)) {
104 - return json_decode($response['body']);
105 - } else {
106 - return null;
107 - }
108 - }
109 73 # settings / 設定関連
110 74 public function add_settings() {
111 75 global $CODOC_SETTINGS;
112 76 add_action( 'admin_menu' ,function(){
@@ -120,9 +84,9 @@
120 84 echo '<form method="post" action="options.php">';
121 85 settings_fields( 'codoc_option_group' );
122 86 do_settings_sections( 'codoc' );
123 87 submit_button(); // 送信ボタン
124 - echo '</div>';
88 + echo '</form></div>';
125 89 }
126 90 );
127 91 });
128 92
@@ -131,12 +95,14 @@
131 95 if (isset($_GET['page']) and $_GET['page'] == 'codoc' and isset($_GET['fetch_token_key'])) {
132 96 $key = sanitize_text_field($_GET['fetch_token_key']);
133 97 $usercode = sanitize_text_field($_GET['usercode']);
134 98 update_option(CODOC_USERCODE_OPTION_NAME,$usercode);
135 - $data = $this->callAPI('GET','/token',[ "fetch_token_key" => $key ]);
99 + //$data = $this->callAPI('GET','/token',[ "fetch_token_key" => $key ]);
100 + $data = $this->util->get_token([ "fetch_token_key" => $key ],["usercode" => $usercode, "token" => "1"]);
136 101 if ($data->status and $token = $data->token) {
137 102 update_option(CODOC_TOKEN_OPTION_NAME,$token);
138 - $data = $this->callAPI('GET','');
103 + //$data = $this->callAPI('GET','');
104 + $data = $this->util->get_user_info([],["usercode" => $usercode, "token" => $token]);
139 105 if ($data->status and $user = $data->user) {
140 106 update_option(CODOC_AUTHINFO_OPTION_NAME,[
141 107 'email' => $user->email,
142 108 'name' => $user->name,
@@ -143,9 +109,9 @@
143 109 ]);
144 110 }
145 111 #$current_url = (empty($_SERVER['HTTPS']) ? 'http://' : 'https://').$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
146 112 #$current_url = preg_replace('/(.*)fetch_token_key.*/','${1}&codoc_auth_finished=1',$current_url);
147 - add_settings_error( 'general', 'settings_updated', __( 'OKKK' ), 'success' );
113 + //add_settings_error( 'general', 'settings_updated', __( 'OK' ), 'success' );
148 114 $current_url = admin_url('options-general.php') . '?page=codoc&codoc_auth_finished=1';
149 115
150 116 wp_redirect( $current_url);
151 117 exit;
@@ -172,8 +138,14 @@
172 138 }
173 139 if (!isset($CODOC_SETTINGS['str_replace_binded_url_to'])) {
174 140 $CODOC_SETTINGS['str_replace_binded_url_to'] = '';
175 141 }
142 + if (!isset($CODOC_SETTINGS['str_before_codoc_tag'])) {
143 + $CODOC_SETTINGS['str_before_codoc_tag'] = '';
144 + }
145 + if (!isset($CODOC_SETTINGS['str_after_codoc_tag'])) {
146 + $CODOC_SETTINGS['str_after_codoc_tag'] = '';
147 + }
176 148
177 149 add_settings_section(
178 150 'setting_section_id', // id
179 151 'codoc 設定ページ', // title
@@ -209,8 +181,23 @@
209 181 'codoc', //page
210 182 'setting_section_id' //Section
211 183 );
212 184
185 + add_settings_field(
186 + 'str_around_codoc_tag', // id
187 + 'codocタグの前後にHTMLを挿入', // title
188 + function() {
189 + global $CODOC_SETTINGS;
190 + echo sprintf('<textarea name="%s[str_before_codoc_tag]" cols="40">%s</textarea>',CODOC_SETTINGS_OPTION_NAME,$CODOC_SETTINGS['str_before_codoc_tag']);
191 + echo ('を前に挿入<br />');
192 + echo sprintf('<textarea name="%s[str_after_codoc_tag]" cols="40">%s</textarea>',CODOC_SETTINGS_OPTION_NAME,$CODOC_SETTINGS['str_after_codoc_tag']);
193 + echo ('を後に挿入');
194 +
195 + },
196 + 'codoc', //page
197 + 'setting_section_id' //Section
198 + );
199 +
213 200 register_setting(
214 201 'codoc_option_group', // option group
215 202 CODOC_USERCODE_OPTION_NAME
216 203 );
@@ -229,9 +216,9 @@
229 216 function() {
230 217 global $CODOC_USERCODE;
231 218 global $CODOC_TOKEN;
232 219 global $CODOC_AUTHINFO;
233 - $script = "javascript:document.getElementById('codoc-usercode').value='';document.getElementById('codoc-token').value=' ';document.getElementById('codoc-auth-message').innerText='解除を完了するには変更を保存してください';document.getElementById('codoc-auth-message').color='red';";
220 + $script = "javascript:document.getElementById('codoc-usercode').value='-';document.getElementById('codoc-token').value='-';document.getElementById('codoc-auth-message').innerText='解除を完了するには変更を保存してください';document.getElementById('codoc-auth-message').color='red';";
234 221
235 222 echo sprintf('<p><font color="green" id="codoc-auth-message"><strong>%s</strong> で認証済</font></p>',$CODOC_AUTHINFO['email']);
236 223
237 224 echo sprintf('<input id="codoc-usercode" type="hidden" name="%s" value="%s">',CODOC_USERCODE_OPTION_NAME,$CODOC_USERCODE);
@@ -267,27 +254,31 @@
267 254 'setting_section_id'
268 255 );
269 256 }
270 257 // ない場合かつ自分で認証する場合
271 - if (!$CODOC_AUTHINFO and (isset($_GET['auth_by_myself']) and $_GET['auth_by_myself'])) {
258 + if (!$CODOC_AUTHINFO and (
259 + (isset($_GET['auth_by_myself']) and $_GET['auth_by_myself']) or
260 + (isset($_POST['auth_by_myself']) and $_POST['auth_by_myself'])
261 + )) {
272 262 register_setting(
273 263 'codoc_option_group', // option group
274 264 CODOC_USERCODE_OPTION_NAME
275 265 );
266 + register_setting(
267 + 'codoc_option_group', // option group
268 + CODOC_TOKEN_OPTION_NAME
269 + );
276 270 add_settings_field(
277 271 'codoc_usercode',
278 272 'ユーザーコード',
279 273 function() {
280 274 global $CODOC_USERCODE;
275 + echo '<input type="hidden" name="auth_by_myself" value="1">';
281 276 echo sprintf('<input type="text" name="%s" value="%s">',CODOC_USERCODE_OPTION_NAME,$CODOC_USERCODE);
282 277 },
283 278 'codoc',
284 279 'setting_section_id'
285 280 );
286 - register_setting(
287 - 'codoc_option_group', // option group
288 - CODOC_TOKEN_OPTION_NAME
289 - );
290 281 add_settings_field(
291 282 'codoc_token',
292 283 'APIトークン',
293 284 function() {
@@ -310,9 +301,13 @@
310 301 },10,2);
311 302 add_action('updated_option',function(){
312 303 global $CODOC_RE_AUTHORIZE;
313 304 if ($CODOC_RE_AUTHORIZE) {
314 - $data = $this->callAPI('GET','');
305 + //$data = $this->callAPI('GET','');
306 + $data = $this->util->get_user_info([],[
307 + "usercode" => get_option(CODOC_USERCODE_OPTION_NAME),
308 + "token" => get_option(CODOC_TOKEN_OPTION_NAME),
309 + ]);
315 310 if ($data->status and $user = $data->user) {
316 311 update_option(CODOC_AUTHINFO_OPTION_NAME,[
317 312 'email' => $user->email,
318 313 'name' => $user->name,
@@ -335,62 +330,55 @@
335 330 );
336 331
337 332 }
338 333 public function add_mce() {
339 - // Add Shortcode options in the WordPres visual editors
340 - // wp_enqueue_script( 'codoc-editor-script', plugins_url( 'codoc/src_mce/codoc-editor.js', __DIR__ ));
341 - add_action( 'init', function() {
334 + add_action( 'admin_enqueue_scripts', function() {
342 335 if ( ! current_user_can( 'edit_posts' ) && ! current_user_can( 'edit_pages' ) ) {
343 336 return;
344 337 }
345 - if ( get_user_option( 'rich_editing' ) == 'true' ) {
346 - // プラグイン内で使うCSRF を生成
347 - $path = plugins_url( 'codoc/src_mce/codoc-editor-onload.js', __DIR__ );
348 - wp_enqueue_script( 'codoc-editor-onload', $path, array('jquery'), '', true );
349 - // I just want to insert this global variables but i don't know how i can do it..
350 - wp_localize_script(
351 - 'codoc-editor-onload',
352 - 'CODOCEDITOR',
353 - array(
354 - 'action' => 'codoc_shortcodes',
355 - 'nonce' => wp_create_nonce( 'codoc_shortcodes' )
356 - )
357 - );
358 - // ここでtinymceのプラグイン追加
359 - wp_enqueue_style( 'codoc-admin-style', plugins_url( 'codoc/src_mce/codoc-admin.css', __DIR__ ) );
360 - add_filter( 'mce_external_plugins', function( $plugin_array ) {
361 - $plugin_array['codoc'] = plugins_url( 'codoc/src_mce/codoc-editor.js', __DIR__ );
362 - return $plugin_array;
363 - } );
364 - add_filter( 'mce_buttons', function( $buttons ) {
365 - array_push( $buttons, "|", "codoc" );
366 - return $buttons;
367 - } );
368 - add_action( 'wp_ajax_codoc_shortcodes', function(){
369 - check_ajax_referer( 'codoc_shortcodes' );
370 - if ($usercode = sanitize_text_field($_GET['usercode'])) {
371 - update_option('codoc_usercode',$usercode);
372 - }
373 - $usercode = get_option(CODOC_USERCODE_OPTION_NAME) ? get_option(CODOC_USERCODE_OPTION_NAME) : 'nocode';
374 - $uri = CODOC_URL . '/api/v1/paywall/' . $usercode . '/entries';
375 - if ($entrycode = sanitize_text_field($_GET['entrycode'])) {
376 - $uri = $uri . '/' . $entrycode;
377 - }
378 - $args = preg_match('/local/',CODOC_URL) ? ['sslverify' => false ] : [];
379 - $response = wp_remote_request( $uri, $args );
380 -
381 - if ($response instanceof WP_Error) {
382 - exit;
383 - }
384 -
385 - $response['body'] = json_decode($response['body'], true);
386 - $entries = $response['body']['entries'];
338 + $current_screen = get_current_screen();
339 + if ( ( method_exists( $current_screen, 'is_block_editor' ) && $current_screen->is_block_editor() ) || ( function_exists( 'is_gutenberg_page' ) && is_gutenberg_page() ) ) {
340 + // Gutenberg Editor
341 + // なにもしない
342 + } else {
343 + // tinymce
344 + if ( get_user_option( 'rich_editing' ) == 'true' ) {
345 + // プラグイン内で使うCSRF を生成
346 + $path = plugins_url( 'codoc/src_mce/codoc-editor-onload.js', __DIR__ );
347 + wp_enqueue_script( 'codoc-editor-onload', $path, array('jquery'), '', true );
348 + // I just want to insert this global variables but i don't know how i can do it..
349 + wp_localize_script(
350 + 'codoc-editor-onload',
351 + 'CODOCEDITOR',
352 + array(
353 + 'action' => 'codoc_shortcodes',
354 + 'nonce' => wp_create_nonce( 'codoc_shortcodes' ),
355 +
356 + 'codoc_url' => CODOC_URL,
357 + 'codoc_usercode' => get_option(CODOC_USERCODE_OPTION_NAME),
358 + 'codoc_plugin_version' => CODOC_PLUGIN_VERSION,
359 + 'codoc_sdk_path' => CODOC_SDK_PATH,
360 + )
361 + );
387 362
388 - require 'views/codoc-shortcodes-list.php';
389 -
390 - wp_die();
391 - } );
392 - }
363 + // ここでtinymceのプラグイン追加
364 + //wp_enqueue_style( 'codoc-admin-style', plugins_url( 'codoc/src_mce/codoc-admin.css', __DIR__ ) );
365 + //add_editor_style( plugins_url( 'codoc/src_mce/codoc-admin.css', __DIR__ ) );
366 + wp_enqueue_style( 'codoc-admin-style', CODOC_URL . CODOC_SDK_PATH . '.tinymce.css?c=' . date('Ymd') );
367 + add_editor_style( CODOC_URL . CODOC_SDK_PATH . '.tinymce.css' );
368 +
369 + add_filter( 'mce_external_plugins', function( $plugin_array ) {
370 + //$plugin_array['codoc'] = plugins_url( 'codoc/src_mce/codoc-editor.js', __DIR__ );
371 + $plugin_array['codoc'] = CODOC_URL . CODOC_SDK_PATH . '.tinymce.js?c=' . date('Ymd');
372 + return $plugin_array;
373 + } );
374 + add_filter( 'mce_buttons', function( $buttons ) {
375 + array_push( $buttons, "|", "codoc" );
376 + return $buttons;
377 + } );
378 +
379 + }
380 + }
393 381 } );
394 382 }
395 383 public function save_post($post_ID,$post,$update) {
396 384 if (preg_match('/^(auto-draft|inherit)$/',$post->post_status)) {
@@ -395,64 +383,25 @@
395 383 public function save_post($post_ID,$post,$update) {
396 384 if (preg_match('/^(auto-draft|inherit)$/',$post->post_status)) {
397 385 return;
398 386 }
399 -
400 - $post_content = $post->post_content;
401 - preg_match('/wp:codoc\/codoc-block +?({.*})/',$post_content,$matches);
402 - // GUTENBERG で指定されたjson(記事情報)がない場合
403 - if (!$matches) {
404 - return;
405 - }
406 - // GUTENBERG で保存している内容を取得
407 - $codoc_info = json_decode($matches[1],true);
408 - // codoc タグがない場合はなにもしない
409 - preg_match('/(<span +data-id="codoc-tag"[^>]+>(?:.+|)<\/span>)/',$post_content,$matches);
410 - if (!$matches) {
411 - return;
412 - }
413 - // TODO: split or html parse? HTMLがつながってる場合はおかしくなる
414 - $splited = preg_split('/<\!-- +wp:codoc\/codoc-block .*<\!-- +\/wp:codoc\/codoc-block +-->/s',$post_content);
415 - $status = $post->post_status == 'publish' ? 1 : 0;
416 - # $body_free = '';
417 - # $body_paywalled = '';
418 - # if (count($splited) >= 2) {
419 - #
420 - # }
421 - $binded_url = get_permalink($post_ID);
422 - $CODOC_SETTINGS = get_option(CODOC_SETTINGS_OPTION_NAME);
423 - if (isset($CODOC_SETTINGS['str_replace_binded_url_from']) and
424 - isset($CODOC_SETTINGS['str_replace_binded_url_to']) and
425 - $CODOC_SETTINGS['str_replace_binded_url_from']) {
426 - $binded_url = str_replace(sanitize_text_field($CODOC_SETTINGS['str_replace_binded_url_from']),
427 - sanitize_text_field($CODOC_SETTINGS['str_replace_binded_url_to']),
428 - $binded_url);
429 - }
430 -
431 - $params = [
432 - 'title' => $post->post_title,
433 - 'body_free' => $splited[0],
434 - 'body_paywalled' => $splited[1],
435 - 'status' => $status,
436 - 'binded_url' => $binded_url,
437 - 'show_price' => isset($codoc_info['showPrice']) ? ($codoc_info['showPrice'] ? 1 : 0) : 0,
438 - 'price' => isset($codoc_info['price']) ? $codoc_info['price'] : 100,
439 - 'limited' => isset($codoc_info['limited']) ? ($codoc_info['limited'] ? 1 : 0) : 0,
440 - 'limited_count' => isset($codoc_info['limitedCount']) ? $codoc_info['limitedCount'] : 1,
441 - 'affiliate_mode' => isset($codoc_info['affiliateMode']) ? ($codoc_info['affiliateMode'] ? 1 : 0) : 0,
442 - 'affiliate_rate' => isset($codoc_info['affiliateRate']) ? $codoc_info['affiliateRate'] : '0.0500',
443 - 'show_support' => isset($codoc_info['showSupport']) ? ($codoc_info['showSupport'] ? 1 : 0) : 0,
444 - 'subscriptions' => isset($codoc_info['subscriptions']) ? array_keys($codoc_info['subscriptions']) : [],
445 - ];
387 +
446 388 $entryCode = get_post_meta($post_ID,'codoc_entry_code',true);
447 - if ($entryCode) {
448 - $res = $this->callAPI('PUT','/entries/' . $entryCode ,$params);
449 - } else {
450 - $res = $this->callAPI('POST', '/entries', $params);
451 - if (is_object($res) and $res->status) {
452 - update_post_meta($post_ID,'codoc_entry_code',$res->entry->code);
453 - }
389 + $res = $this->util->sync_entry([
390 + "post_title" => $post->post_title,
391 + "post_content" => $post->post_content,
392 + "post_status" => ($post->post_status == 'publish' ? 1 : 0),
393 + "post_permalink" => get_permalink($post_ID),
394 + "codoc_entry_code" => $entryCode,
395 + ],[
396 + "usercode" => get_option(CODOC_USERCODE_OPTION_NAME),
397 + "token" => get_option(CODOC_TOKEN_OPTION_NAME),
398 + ]);
399 +
400 + if (is_object($res) and $res->status and !$entryCode) {
401 + update_post_meta($post_ID,'codoc_entry_code',$res->entry->code);
454 402 }
403 +
455 404 return true;
456 405 }
457 406 function updated_post_meta( $meta_ID, $post_ID, $meta_key ) {
458 407 if ($meta_key != '_thumbnail_id') {
@@ -461,35 +410,17 @@
461 410 if ( has_post_thumbnail($post_ID) ) {
462 411 $attachment = wp_get_attachment_metadata( get_post_thumbnail_id($post_ID));
463 412 $upload_dir = wp_upload_dir();
464 413 $file_path = sprintf ('%s/%s',$upload_dir['basedir'],$attachment['file']);
465 -
466 - if (is_readable($file_path)) {
467 - $name = 'file';
468 -
469 - $boundary = wp_generate_password(24);
470 -
471 - $payload = '';
472 - $payload .= '--' . $boundary;
473 - $payload .= "\r\n";
474 - $payload .= 'Content-Disposition: form-data; name="' . $name . '"; filename="' . basename( $file_path ) . '"' . "\r\n";
475 - $payload .= "Content-Type: application/octet-stream\r\n";
476 - $payload .= "Content-Transfer-Encoding: binary\r\n";
477 - $payload .= "\r\n";
478 - $payload .= file_get_contents( $file_path );
479 - $payload .= "\r\n";
480 -
481 - $payload .= '--' . $boundary . '--';
482 -
483 -
484 - $entryCode = get_post_meta($post_ID,'codoc_entry_code',true);
485 - $res = $this->callAPI(
486 - 'POST',
487 - '/entries/' . $entryCode . '/thumbnail',
488 - $payload,
489 - ['content-type' => 'multipart/form-data; boundary=' . $boundary]
490 - );
491 - }
414 +
415 + return $this->util->post_thumbnail([
416 + "file_path" => $file_path,
417 + "boundary" => wp_generate_password(24),
418 + "codoc_entry_code" => get_post_meta($post_ID,'codoc_entry_code',true),
419 + ],[
420 + "usercode" => get_option(CODOC_USERCODE_OPTION_NAME),
421 + "token" => get_option(CODOC_TOKEN_OPTION_NAME),
422 + ]);
492 423 }
493 424 }
494 425 function deleted_post_meta( $meta_ids, $post_ID, $meta_key,$meta_value ) {
495 426 if ($meta_key != '_thumbnail_id') {
@@ -494,40 +425,27 @@
494 425 function deleted_post_meta( $meta_ids, $post_ID, $meta_key,$meta_value ) {
495 426 if ($meta_key != '_thumbnail_id') {
496 427 return;
497 428 }
498 - $entryCode = get_post_meta($post_ID,'codoc_entry_code',true);
499 - $res = $this->callAPI(
500 - 'POST',
501 - '/entries/' . $entryCode . '/thumbnail',
502 - [ "reset" => 1 ]
503 - );
504 - }
429 + return $this->util->reset_thumbnail(
430 + ["codoc_entry_code" => get_post_meta($post_ID,'codoc_entry_code',true)],
431 + [
432 + "usercode" => get_option(CODOC_USERCODE_OPTION_NAME),
433 + "token" => get_option(CODOC_TOKEN_OPTION_NAME),
434 + ]
435 + );
436 + }
437 +
505 438 function the_content( $post_content ) {
506 - if ( is_single() && in_the_loop() && is_main_query() ) {
507 - }
508 - // codoc タグがあるかどうか
509 - preg_match('/(<span +data-id="codoc-tag[^>]+>(?:.+|)<\/span>)/',$post_content,$matches);
510 - // data-wp-plugin-ver が無いタグは分割しない
511 - if (!$matches) {
512 - return $post_content;
513 - }
514 - $tag_regex = '/<div><span data-id="codoc-tag" class="codoc-entries">(?:.+|)<\/span><\/div>/';
515 - if ( is_preview() ) {
516 - $post_content = preg_replace($tag_regex,'<div class="codoc-continue">ここから上は無料で表示されます</div>',$post_content);
517 - return $post_content;
518 - }
519 - // codoc タグの前後で分ける
520 - $splited = preg_split($tag_regex,$post_content);
521 - // codco タグにentrycodeをつける
439 + if ( is_single() && in_the_loop() && is_main_query() ) {
440 + }
522 441 $post = get_post();
523 - $entryCode = sprintf('"codoc-entry-%s" ',get_post_meta($post->ID,'codoc_entry_code',true));
524 - $codoc_tag = str_replace('span','span id=' . $entryCode, $matches[1]);
525 - // codoc タグに属性をつける
526 - $codoc_tag = str_replace('span','span data-without-body="1" ',$codoc_tag);
527 - // 無料部分のみ表示
528 - return $splited[0] . sprintf('<div class="wp-block-codoc-codoc-block">%s</div>',$codoc_tag);
442 + return $this->util->filter_content([
443 + "post_content" => $post_content,
444 + "preview" => is_preview(),
445 + "codoc_entry_code" => get_post_meta($post->ID,'codoc_entry_code',true),
446 + "codoc_settings" => get_option(CODOC_SETTINGS_OPTION_NAME),
447 + ]);
529 448 }
530 -
531 449
532 450 }
533 451