Browse Source

use "file" key to send file to media endpoint

pull/52/head
Aaron Parecki 7 years ago
parent
commit
faf0bcc2c3
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      lib/helpers.php

+ 3
- 3
lib/helpers.php View File

@ -111,7 +111,7 @@ function micropub_post_for_user(&$user, $params, $file_path = NULL, $json = fals
function micropub_media_post_for_user(&$user, $file_path) { function micropub_media_post_for_user(&$user, $file_path) {
// Send to the media endpoint // Send to the media endpoint
$r = micropub_post($user->micropub_media_endpoint, [], $user->micropub_access_token, $file_path, true);
$r = micropub_post($user->micropub_media_endpoint, [], $user->micropub_access_token, $file_path, true, 'file');
// Check the response and look for a "Location" header containing the URL // Check the response and look for a "Location" header containing the URL
if($r['response'] && preg_match('/Location: (.+)/', $r['response'], $match)) { if($r['response'] && preg_match('/Location: (.+)/', $r['response'], $match)) {
@ -123,7 +123,7 @@ function micropub_media_post_for_user(&$user, $file_path) {
return $r; return $r;
} }
function micropub_post($endpoint, $params, $access_token, $file_path = NULL, $json = false) {
function micropub_post($endpoint, $params, $access_token, $file_path = NULL, $json = false, $file_prop = 'photo') {
$ch = curl_init(); $ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $endpoint); curl_setopt($ch, CURLOPT_URL, $endpoint);
curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POST, true);
@ -154,7 +154,7 @@ function micropub_post($endpoint, $params, $access_token, $file_path = NULL, $js
$mimetype = finfo_file($finfo, $file_path); $mimetype = finfo_file($finfo, $file_path);
$multipart = new p3k\Multipart(); $multipart = new p3k\Multipart();
$multipart->addArray($params); $multipart->addArray($params);
$multipart->addFile('photo', $file_path, $mimetype);
$multipart->addFile($file_prop, $file_path, $mimetype);
$post = $multipart->data(); $post = $multipart->data();
array_push($httpheaders, 'Content-Type: ' . $multipart->contentType()); array_push($httpheaders, 'Content-Type: ' . $multipart->contentType());
} }

Loading…
Cancel
Save