Browse Source

fix returning resolved URL

pull/82/head
Aaron Parecki 6 years ago
parent
commit
820ad1b827
No known key found for this signature in database GPG Key ID: 276C2817346D6056
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      controllers/micropub.php

+ 5
- 5
controllers/micropub.php View File

@ -26,7 +26,7 @@ $app->post('/micropub/post', function() use($app) {
$app->response()->body(json_encode(array( $app->response()->body(json_encode(array(
'request' => htmlspecialchars($r['request']), 'request' => htmlspecialchars($r['request']),
'response' => htmlspecialchars($r['response']), 'response' => htmlspecialchars($r['response']),
'location' => (isset($r['location']) ? Mf2\resolveUrl($user->micropub_endpoint, $r['location']) : null),
'location' => (isset($r['location']) && $r['location'] ? Mf2\resolveUrl($user->micropub_endpoint, $r['location']) : null),
'error' => $r['error'], 'error' => $r['error'],
'curlinfo' => $r['curlinfo'] 'curlinfo' => $r['curlinfo']
))); )));
@ -69,7 +69,7 @@ $app->post('/micropub/multipart', function() use($app) {
$app->response()['Content-type'] = 'application/json'; $app->response()['Content-type'] = 'application/json';
$app->response()->body(json_encode(array( $app->response()->body(json_encode(array(
'response' => (isset($r['response']) ? htmlspecialchars($r['response']) : null), 'response' => (isset($r['response']) ? htmlspecialchars($r['response']) : null),
'location' => (isset($r['location']) ? Mf2\resolveUrl($user->micropub_endpoint, $r['location']) : null),
'location' => (isset($r['location']) && $r['location'] ? Mf2\resolveUrl($user->micropub_endpoint, $r['location']) : null),
'error' => (isset($r['error']) ? $r['error'] : null), 'error' => (isset($r['error']) ? $r['error'] : null),
))); )));
} }
@ -108,10 +108,10 @@ $app->post('/micropub/postjson', function() use($app) {
$r = micropub_post_for_user($user, json_decode($params['data'], true), null, true); $r = micropub_post_for_user($user, json_decode($params['data'], true), null, true);
$app->response()['Content-type'] = 'application/json'; $app->response()['Content-type'] = 'application/json';
$app->response()->body(json_encode(array(
'location' => $r['location'],
$app->response()->body(json_encode([
'location' => (isset($r['location']) && $r['location'] ? Mf2\resolveUrl($user->micropub_endpoint, $r['location']) : null),
'error' => $r['error'], 'error' => $r['error'],
'response' => $r['response'] 'response' => $r['response']
)));
]));
} }
}); });

Loading…
Cancel
Save