diff options
author | Aaron Parecki <aaron@parecki.com> | 2014-12-24 16:44:44 -0800 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2014-12-24 16:44:44 -0800 |
commit | 2cd148c792a47fea18d760b723d23569ae52d390 (patch) | |
tree | cbd2d277d7c56be7042fc7765ea7a3c26c4cd1f8 /lib/helpers.php | |
parent | 3f090eeb306dec5041d3c2c3b6baa3434f31802b (diff) |
Support for "likes" and adding "settings" page
* Supports a bookmarklet to create "like" posts.
* Beginning a "settings" page to connect silo profiles for POSSEing likes to twitter, facebook and instagram
Diffstat (limited to 'lib/helpers.php')
-rw-r--r-- | lib/helpers.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/helpers.php b/lib/helpers.php index cf751c6..010bd91 100644 --- a/lib/helpers.php +++ b/lib/helpers.php @@ -70,6 +70,26 @@ function get_timezone($lat, $lng) { return null; } +function micropub_post_for_user(&$user, $params) { + // Now send to the micropub endpoint + $r = micropub_post($user->micropub_endpoint, $params, $user->micropub_access_token); + + $user->last_micropub_response = json_encode($r); + $user->last_micropub_response_date = date('Y-m-d H:i:s'); + + // Check the response and look for a "Location" header containing the URL + if($r['response'] && preg_match('/Location: (.+)/', $r['response'], $match)) { + $r['location'] = $match[1]; + $user->micropub_success = 1; + } else { + $r['location'] = false; + } + + $user->save(); + + return $r; +} + function micropub_post($endpoint, $params, $access_token) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $endpoint); |