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
|
<?php
$app->get('/editor', function() use($app) {
$user = require_login($app, false);
$html = $app->render('editor.php', [
'user' => $user
]);
$app->response()->body($html);
});
$app->post('/editor/publish', function() use($app) {
if($user=require_login($app)) {
$params = $app->request()->params();
$content = $params['body'];
// Clean up the HTML from the editor
$content = sanitize_editor_html($content);
if($user->micropub_optin_html_content) {
$content = ['html' => $content];
$micropub_request = array(
'name' => [$params['name']],
'content' => [$content]
);
$json = true;
} else {
$json = false;
$micropub_request = array(
'h' => 'entry',
'name' => [$params['name']],
'content' => [$content]
);
}
if(array_key_exists('category', $params) && $params['category'])
$micropub_request['category'] = $params['category'];
if(array_key_exists('slug', $params) && $params['slug'])
$micropub_request[$user->micropub_slug_field] = $params['slug'];
if(array_key_exists('status', $params) && $params['status']) {
if($params['status'] == 'draft')
$micropub_request['post-status'] = $params['status'];
}
if(array_key_exists('publish', $params) && $params['publish'] != 'now') {
$micropub_request['published'] = $params['publish'];
}
if($json) {
$micropub_request = [
'type' => ['h-entry'],
'properties' => $micropub_request
];
}
$r = micropub_post_for_user($user, $micropub_request, null, $json);
$app->response()['Content-type'] = 'application/json';
$app->response()->body(json_encode([
'location' => $r['location'],
'response' => trim(htmlspecialchars($r['response']))
]));
}
});
$app->post('/editor/upload', function() use($app) {
if($user=require_login($app)) {
$fn = $_FILES['files']['tmp_name'][0];
$imageURL = false;
if($user->micropub_media_endpoint) {
// If the user has a media endpoint, upload to that and return that URL
correct_photo_rotation($fn);
$r = micropub_media_post_for_user($user, $fn);
if(!empty($r['location'])) {
$imageURL = $r['location'];
}
}
if(!$imageURL) {
// Otherwise, fake a file uploader by echo'ing back the data URI
$imageData = base64_encode(file_get_contents($fn));
$imageURL = 'data:'.mime_content_type($fn).';base64,'.$imageData;
}
$app->response()['Content-type'] = 'application/json';
$app->response()->body(json_encode([
'files' => [
['url'=>$imageURL]
]
]));
}
});
$app->post('/editor/parse-date', function() use($app) {
$date = false;
$params = $app->request()->params();
if(isset($params['date'])) {
if($params['date'] == 'now') {
$date = 'now';
} else {
try {
// Check if the provided date has a timezone offset
$has_timezone = preg_match('/[-+]\d\d:?\d\d$/', $params['date']);
if(!$has_timezone && $params['tzoffset']) {
$s = (-60) * $params['tzoffset'];
$h = $params['tzoffset'] / (-60);
$tz = new DateTimeZone($h);
$d = new DateTime($params['date'], $tz);
} else {
$d = new DateTime($params['date']);
}
$date = $d->format('c');
} catch(Exception $e) {
}
}
}
$app->response()['Content-type'] = 'application/json';
$app->response()->body(json_encode(['date'=>$date]));
});
$app->post('/editor/delete-file', function() use($app) {
$app->response()['Content-type'] = 'application/json';
$app->response()->body(json_encode(['result'=>'deleted']));
});
$app->get('/editor/oembed', function() use($app) {
$url = 'http://medium.iframe.ly/api/oembed?iframe=1&url='.urlencode($app->request()->params()['url']);
$json = file_get_contents($url);
$app->response()['Content-type'] = 'application/json';
$app->response()->body($json);
});
$app->post('/editor/test-login', function() use($app) {
$logged_in = array_key_exists('user_id', $_SESSION);
$app->response()['Content-type'] = 'application/json';
$app->response()->body(json_encode(['logged_in'=>$logged_in]));
});
|