summaryrefslogtreecommitdiff
path: root/controllers
diff options
context:
space:
mode:
authorKyle Mahan <kyle.mahan@gmail.com>2015-04-04 19:45:21 -0700
committerKyle Mahan <kyle.mahan@gmail.com>2015-04-04 19:45:21 -0700
commitf0d8b180519bce1f0e8498a98f6970723ca88231 (patch)
treea2d5f4af12ae98999451881e0cc97dcd3dee0bea /controllers
parent1c4bf54da4ca2419598a8cb541b3cb3737452aab (diff)
add reply={url} query param for posting a note
Support reply bookmarklets, and hopefully the Firefox Social API "Share" provider too.
Diffstat (limited to 'controllers')
-rw-r--r--controllers/controllers.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/controllers/controllers.php b/controllers/controllers.php
index 0fef6df..3f09aac 100644
--- a/controllers/controllers.php
+++ b/controllers/controllers.php
@@ -43,9 +43,14 @@ function generate_login_token() {
$app->get('/new', function() use($app) {
if($user=require_login($app)) {
+ $params = $app->request()->params();
$entry = false;
$photo_url = false;
+ $in_reply_to = '';
+
+ if(array_key_exists('reply', $params))
+ $in_reply_to = $params['reply'];
$test_response = '';
if($user->last_micropub_response) {
@@ -60,6 +65,7 @@ $app->get('/new', function() use($app) {
$html = render('new-post', array(
'title' => 'New Post',
+ 'in_reply_to' => $in_reply_to,
'micropub_endpoint' => $user->micropub_endpoint,
'micropub_scope' => $user->micropub_scope,
'micropub_access_token' => $user->micropub_access_token,