-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlugin.php
More file actions
414 lines (372 loc) · 14 KB
/
Plugin.php
File metadata and controls
414 lines (372 loc) · 14 KB
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
<?php
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
/**
* 将 Typecho 文章同步到 Notion
*
* @package TypechoSyncNotion
* @author levywang
* @version 1.0.0
* @link https://github.com/levywang/typecho-sync-notion
*/
class TypechoSyncNotion_Plugin implements Typecho_Plugin_Interface
{
const NOTION_API_VERSION = '2022-06-28';
const NOTION_API_BASE = 'https://api.notion.com/v1';
/**
* 激活插件方法,如果激活失败,直接抛出异常
*/
public static function activate()
{
Typecho_Plugin::factory('admin/write-post.php')->option = array(__CLASS__, 'render');
Typecho_Plugin::factory('admin/write-page.php')->option = array(__CLASS__, 'render');
Typecho_Plugin::factory('Widget_Contents_Post_Edit')->finishPublish = array(__CLASS__, 'sync');
Typecho_Plugin::factory('Widget_Contents_Page_Edit')->finishPublish = array(__CLASS__, 'sync');
return _t('插件启用成功');
}
/**
* 禁用插件方法,如果禁用失败,直接抛出异常
*/
public static function deactivate()
{
return _t('插件禁用成功');
}
/**
* 获取插件配置面板
*/
public static function config(Typecho_Widget_Helper_Form $form)
{
$notionToken = new Typecho_Widget_Helper_Form_Element_Text(
'notionToken',
NULL,
'',
_t('Notion API Token'),
_t('请输入您的 Notion API Token,一般以ntn_开头
API配置页面: https://www.notion.so/profile/integrations/')
);
$notionToken->addRule('required', _t('Notion API Token 不能为空'));
$form->addInput($notionToken);
$databaseId = new Typecho_Widget_Helper_Form_Element_Text(
'databaseId',
NULL,
'',
_t('Notion 数据库 ID'),
_t('请输入您要同步到的 Notion 数据库 ID。<br/>'.
'请确保您已经完成以下步骤:<br/>'.
'1. 在 Notion 中创建一个数据库页面<br/>'.
'2. 在数据库页面中点击右上角的"Share"按钮<br/>'.
'3. 点击"Add connections",选择您创建的集成<br/>'.
'4. 复制数据库页面的 URL,从中提取数据库 ID')
);
$databaseId->addRule('required', _t('数据库 ID 不能为空'));
$form->addInput($databaseId);
}
/**
* 个人用户的配置面板
*/
public static function personalConfig(Typecho_Widget_Helper_Form $form){}
/**
* 插件实现方法
*/
public static function render()
{
echo '<tr><td><label class="typecho-label" for="syncToNotion">同步到 Notion</label></td>
<td colspan="3"><div><input type="checkbox" id="syncToNotion" name="syncToNotion" value="1" />
<label for="syncToNotion">将此文章同步到 Notion</label></div></td></tr>';
}
/**
* 同步文章到 Notion
*/
public static function sync($contents, $class)
{
if (!isset($_POST['syncToNotion']) || $_POST['syncToNotion'] != 1) return;
$config = Typecho_Widget::widget('Widget_Options')->plugin('TypechoSyncNotion');
$databaseId = str_replace('-', '', $config->databaseId);
if (self::checkExistingArticle($databaseId, $contents['title'], $config->notionToken)) {
throw new Typecho_Plugin_Exception("文章《{$contents['title']}》已存在于 Notion 中");
}
$blocks = self::parseMarkdownToBlocks($contents['text']);
$page = self::createNotionPage([
'parent' => ['database_id' => $databaseId],
'properties' => [
'title' => [
'title' => [[
'text' => ['content' => $contents['title']]
]]
]
],
'children' => array_slice($blocks, 0, 100)
], $config->notionToken);
if (count($blocks) > 100) {
self::appendRemainingBlocks($page['id'], array_slice($blocks, 100), $config->notionToken);
}
return $contents;
}
private static function request($endpoint, $data, $token)
{
$ch = curl_init(self::NOTION_API_BASE . $endpoint);
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => json_encode($data),
CURLOPT_HTTPHEADER => [
'Authorization: Bearer ' . $token,
'Notion-Version: ' . self::NOTION_API_VERSION,
'Content-Type: application/json'
]
]);
$result = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
if ($httpCode !== 200) {
$error = json_decode($result, true);
throw new Typecho_Plugin_Exception('同步到 Notion 失败:' . ($error['message'] ?? '未知错误'));
}
return json_decode($result, true);
}
private static function checkExistingArticle($databaseId, $title, $token)
{
$result = self::request("/databases/$databaseId/query", [
'filter' => [
'property' => 'title',
'title' => ['equals' => $title]
]
], $token);
return !empty($result['results']);
}
private static function createNotionPage($data, $token)
{
return self::request('/pages', $data, $token);
}
private static function appendRemainingBlocks($pageId, $blocks, $token)
{
foreach (array_chunk($blocks, 100) as $batch) {
self::request("/blocks/$pageId/children", ['children' => $batch], $token);
}
}
private static function parseMarkdownToBlocks($markdown)
{
$blocks = [];
$lines = explode("\n", preg_replace('/<!--markdown-->/', '', $markdown));
$context = ['inCode' => false, 'content' => '', 'inTable' => false, 'tableData' => []];
foreach ($lines as $line) {
$line = rtrim($line);
$block = self::parseLine($line, $context, $lines);
if ($block) {
// 确保返回的是数组
if (isset($block[0])) {
$blocks = array_merge($blocks, $block);
} else {
$blocks[] = $block;
}
}
}
// 处理未闭合的内容
if ($context['inCode']) {
$block = self::createCodeBlock($context['content'], $context['language']);
if (isset($block[0])) {
$blocks = array_merge($blocks, $block);
} else {
$blocks[] = $block;
}
}
if ($context['inTable']) {
$block = self::createTableBlock($context['tableData']);
if ($block) {
$blocks[] = $block;
}
}
return array_values($blocks); // 确保返回索引数组
}
private static function parseLine(&$line, &$context, $lines)
{
// 处理代码块
if (preg_match('/^```(\w*)/', $line, $matches)) {
if (!$context['inCode']) {
$context['inCode'] = true;
$context['content'] = '';
$context['language'] = $matches[1];
return null;
}
$block = self::createCodeBlock($context['content'], $context['language']);
$context['inCode'] = false;
return $block;
}
if ($context['inCode']) {
$context['content'] .= ($context['content'] ? "\n" : '') . $line;
return null;
}
// 处理表格
if (preg_match('/^\|(.+)\|$/', $line)) {
if (!preg_match('/^[\|\s-:]+$/', $line)) {
$cells = array_map('trim', explode('|', trim($line, '|')));
$context['tableData'][] = $cells;
$context['inTable'] = true;
return null;
}
return null;
}
if ($context['inTable'] && trim($line) === '') {
$block = self::createTableBlock($context['tableData']);
$context['inTable'] = false;
$context['tableData'] = [];
return $block;
}
// 处理其他格式
return self::parseOtherFormats($line, $lines);
}
private static function createCodeBlock($content, $language)
{
if (strlen($content) <= 1900) {
return array(
'object' => 'block',
'type' => 'code',
'code' => array(
'rich_text' => array(array(
'type' => 'text',
'text' => array('content' => $content)
)),
'language' => $language ?: 'plain text'
)
);
} else {
// 长代码块使用文本格式
return array_map(function($chunk) {
return array(
'object' => 'block',
'type' => 'paragraph',
'paragraph' => array(
'rich_text' => array(array(
'type' => 'text',
'text' => array('content' => $chunk),
'annotations' => array(
'code' => true,
'color' => 'gray'
)
))
)
);
}, str_split($content, 1900));
}
}
private static function createTableBlock($tableData)
{
if (empty($tableData)) return null;
return array(
'object' => 'block',
'type' => 'table',
'table' => array(
'table_width' => count($tableData[0]),
'has_column_header' => true,
'has_row_header' => false,
'children' => array_map(function($row) {
return array(
'object' => 'block',
'type' => 'table_row',
'table_row' => array(
'cells' => array_map(function($cell) {
return [array(
'type' => 'text',
'text' => array(
'content' => str_replace('<br />', "\n", $cell)
)
)];
}, $row)
)
);
}, $tableData)
)
);
}
private static function parseOtherFormats($line, $lines)
{
// 处理图片
if (preg_match('/!\[(.*?)\]\((.*?)\)/', $line, $matches) ||
preg_match('/!\[(.*?)\]\[(\d+)\]/', $line, $matches)) {
$imageUrl = '';
$imageCaption = $matches[1];
if (isset($matches[2])) {
if (is_numeric($matches[2])) {
// 处理引用格式的图片
$refKey = '[' . $matches[2] . ']:';
foreach ($lines as $refLine) {
if (strpos($refLine, $refKey) === 0) {
$imageUrl = trim(substr($refLine, strlen($refKey)));
break;
}
}
} else {
$imageUrl = $matches[2];
}
}
if ($imageUrl) {
return array(
'object' => 'block',
'type' => 'image',
'image' => array(
'type' => 'external',
'external' => array('url' => $imageUrl),
'caption' => array(array(
'type' => 'text',
'text' => array('content' => $imageCaption)
))
)
);
}
}
// 处理标题
if (preg_match('/^(#{1,6})\s+(.+)$/', $line, $matches)) {
$level = strlen($matches[1]);
return array(
'object' => 'block',
'type' => "heading_$level",
"heading_$level" => array(
'rich_text' => array(array(
'type' => 'text',
'text' => array('content' => $matches[2])
))
)
);
}
// 处理列表
if (preg_match('/^(\s*)([-*+]|\d+\.)\s+(.+)$/', $line, $matches)) {
$type = is_numeric(rtrim($matches[2], '.')) ? 'numbered_list_item' : 'bulleted_list_item';
return array(
'object' => 'block',
'type' => $type,
$type => array(
'rich_text' => array(array(
'type' => 'text',
'text' => array('content' => $matches[3])
))
)
);
}
// 处理引用
if (preg_match('/^>\s*(.+)$/', $line, $matches)) {
return array(
'object' => 'block',
'type' => 'quote',
'quote' => array(
'rich_text' => array(array(
'type' => 'text',
'text' => array('content' => $matches[1])
))
)
);
}
// 处理普通段落
if (trim($line) !== '') {
return array(
'object' => 'block',
'type' => 'paragraph',
'paragraph' => array(
'rich_text' => array(array(
'type' => 'text',
'text' => array('content' => $line)
))
)
);
}
return null;
}
}