-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom-card-link.php
172 lines (157 loc) · 4.72 KB
/
custom-card-link.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
160
161
162
163
164
165
166
167
168
169
170
171
172
<?php
Namespace Ccl_Plugin;
/*
Plugin Name: Custom Card Link
Plugin URI: https://github.com/taako-502/custom-card-link
Description: 外部リンクを表示するGutenbergブロック
Version: 1.0.2
Author: takao502
Author URI: https://github.com/taako-502
Text Domain: ccl-plugin
Domain Path: /languages
License: GPL2
*/
const OPTION_GROUP = 'custom-card-link';
const CCL_SLUG = 'custom-card-link';
const TEXT_DOMAIN = 'ccl-plugin';
const DB_NAME = 'custom_card_link_settings';
const MAX_DESCRIPTION_CHAR_OF_NUM = 200; //setting-pc.jsおよびsetting-sp.jsとあわせる
require_once __DIR__ .'/classes/CustomCardLink.php';
require_once __DIR__ .'/library/Get_OGP_InWP/get_ogp_inwp.php';
require_once __DIR__ .'/functions/rest_api.php';
require_once __DIR__ .'/functions/style.php';
require_once __DIR__ .'/functions/data.php';
use function Ccl_Plugin\functions\data\get_setting;
/**
* 翻訳ファイルの読み込み
*/
add_action('init', function() {
load_plugin_textdomain(
TEXT_DOMAIN,
false,
// 公式リポジトリに登録する場合は不要
// basename( plugin_dir_url( __FILE__ ) ) . '/languages'
);
});
/**
* 管理画面追加
*/
add_action('admin_menu', function() {
add_menu_page(
__('Custom Card Link', 'ccl-plugin'),
__('Custom Card Link - Settings', 'ccl-plugin'),
'manage_options',
OPTION_GROUP,
function() {
echo '<div id="ccl-admin"></div>';
},
'',
58
);
});
/**
* 管理画面エンキュー
*/
add_action('admin_enqueue_scripts', function($hook_suffix) {
// 作成したオプションページ以外では読み込まない
if ( 'toplevel_page_'.OPTION_GROUP !== $hook_suffix ) {
return;
}
// CSSファイルの読み込み
wp_enqueue_style(
CCL_SLUG,
plugin_dir_url( __FILE__ ).'build/admin.css',
array('wp-components')
);
// JavaScriptファイルの読み込み
wp_enqueue_media();
$asset_file = include_once ( __DIR__ . '/build/admin.asset.php') ;
wp_enqueue_script(
CCL_SLUG,
plugin_dir_url( __FILE__ ).'build/admin.js',
$asset_file['dependencies'],
$asset_file['version'],
true
);
// FIXME: うまく読み込めない
wp_set_script_translations(
CCL_SLUG,
TEXT_DOMAIN,
// 公式リポジトリに登録する場合は不要
// basename( plugin_dir_url( __FILE__ ) ) . '/languages'
);
});
/**
* サーバ側処理
*/
add_action('init', function() {
register_block_type_from_metadata(__DIR__ . '/build',
array(
'render_callback' => function($attributes) {
//入力チェック
$url = $attributes['url'] ?? '';
$ogps = \Ccl_Plugin\library\Get_OGP_InWP::get(trim($url));
$post_id = url_to_postid($url);
if($url == '' && !is_singular()) {
return __('Please enter the URL.', 'ccl-plugin');
} else if(($ogps == [] && $post_id == 0) && !is_singular()){
return __('Please enter a valid URL.', 'ccl-plugin');
}
if($url == '' || ($ogps == [] && $post_id == 0)){
return;
}
//リンク先の情報と設定画面の設定情報をマージ
$settings = array_merge(get_setting(), getLinkInfo($post_id, $ogps));
//HTMLの作成
$ccl = new \Ccl_Plugin\classes\CustomCardLink($url, $settings);
return $ccl->make_ccl();
},
)
);
});
/**
* リンク先の情報を取得する
* @param string $post_id
* @param array $ogps
* @param string $title_num
* @param string $title_num_sp
* @param string $description_num
* @param string $description_num_sp
* @return array
*/
function getLinkInfo($post_id, $ogps) {
if($post_id != 0) {
//内部リンクの場合
$image = get_the_post_thumbnail_url($post_id , 'large' );
$post_title = get_the_title($post_id );
$description = getDescription($post_id, MAX_DESCRIPTION_CHAR_OF_NUM);
$description_sp = getDescription($post_id, MAX_DESCRIPTION_CHAR_OF_NUM);
$link_type = 'internal';
} else {
//外部リンク
$image = $ogps['og:image'] ?? '';
$post_title = $ogps['og:title'] ?? '';
$description = $ogps['og:description'] ?? '';
$description_sp = $description;
$link_type = 'external';
}
return array(
'image' => $image,
'link_type' => $link_type,
'title' => $post_title,
'description' => $description,
);
}
/**
* 記事情報をディスクリプションに変換
* @param string $content 記事情報
* @param integer $len 文字数
* @return string ディスクリプション
*/
function getDescription($id, $len){
$description = get_post($id)->post_content;
$description = str_replace(array("\r\n","\r","\n"," "),'',$description);
$description = wp_strip_all_tags($description);
$description = preg_replace('/\[.*\]/','',$description);
return mb_substr($description, 0, $len);
}