diff options
author | Aaron Parecki <aaron@parecki.com> | 2014-05-24 14:41:21 -0700 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2014-05-24 14:41:21 -0700 |
commit | 3f82ec2f757c62c25a31b461e0a0cddc14886117 (patch) | |
tree | 8eb85c7f356df87f2bf477a54c7ab521002492a1 /controllers/controllers.php |
Working app! Copied signin logic from OwnYourGram. New "post" interface for writing a simple text post. Also supports browser geolocation.
Diffstat (limited to 'controllers/controllers.php')
-rw-r--r-- | controllers/controllers.php | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/controllers/controllers.php b/controllers/controllers.php new file mode 100644 index 0000000..18879e3 --- /dev/null +++ b/controllers/controllers.php @@ -0,0 +1,83 @@ +<?php + +function require_login(&$app) { + if(!array_key_exists('user_id', $_SESSION)) { + $app->redirect('/'); + return false; + } else { + return ORM::for_table('users')->find_one($_SESSION['user_id']); + } +} + +$app->get('/new', function() use($app) { + if($user=require_login($app)) { + + $entry = false; + $photo_url = false; + + $test_response = ''; + if($user->last_micropub_response) { + try { + if(@json_decode($user->last_micropub_response)) { + $d = json_decode($user->last_micropub_response); + $test_response = $d->response; + } + } catch(Exception $e) { + } + } + + $html = render('dashboard', array( + 'title' => 'New Post', + 'micropub_endpoint' => $user->micropub_endpoint, + 'micropub_scope' => $user->micropub_scope, + 'micropub_access_token' => $user->micropub_access_token, + 'response_date' => $user->last_micropub_response_date, + 'test_response' => $test_response + )); + $app->response()->body($html); + } +}); + +$app->get('/creating-a-token-endpoint', function() use($app) { + $app->redirect('http://indiewebcamp.com/token-endpoint', 301); +}); +$app->get('/creating-a-micropub-endpoint', function() use($app) { + $html = render('creating-a-micropub-endpoint', array('title' => 'Creating a Micropub Endpoint')); + $app->response()->body($html); +}); + +$app->get('/docs', function() use($app) { + $html = render('docs', array('title' => 'Documentation')); + $app->response()->body($html); +}); + +$app->post('/micropub/post', function() use($app) { + if($user=require_login($app)) { + $params = $app->request()->params(); + + // Now send to the micropub endpoint + $r = micropub_post($user->micropub_endpoint, $params, $user->micropub_access_token); + $response = $r['response']; + + $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($response && preg_match('/Location: (.+)/', $response, $match)) { + $location = $match[1]; + $user->micropub_success = 1; + } else { + $location = false; + } + + $user->save(); + + $app->response()->body(json_encode(array( + 'response' => htmlspecialchars($response), + 'location' => $location, + 'error' => $r['error'], + 'curlinfo' => $r['curlinfo'] + ))); + } +}); + |