request()->params(); if(array_key_exists('token', $params)) { try { $data = JWT::decode($params['token'], Config::$jwtSecret, array('HS256')); $_SESSION['user_id'] = $data->user_id; $_SESSION['me'] = $data->me; } catch(DomainException $e) { if($redirect) { header('X-Error: DomainException'); $app->redirect('/', 301); } else { return false; } } catch(UnexpectedValueException $e) { if($redirect) { header('X-Error: UnexpectedValueException'); $app->redirect('/', 301); } else { return false; } } } if(!array_key_exists('user_id', $_SESSION)) { if($redirect) $app->redirect('/'); return false; } else { return ORM::for_table('users')->find_one($_SESSION['user_id']); } } function generate_login_token() { return JWT::encode(array( 'user_id' => $_SESSION['user_id'], 'me' => $_SESSION['me'], 'created_at' => time() ), Config::$jwtSecret); } $app->get('/dashboard', function() use($app) { if($user=require_login($app)) { $html = render('dashboard', array( 'title' => 'Dashboard', 'authorizing' => false )); $app->response()->body($html); } }); $app->get('/new', function() use($app) { if($user=require_login($app)) { $params = $app->request()->params(); $entry = false; $in_reply_to = ''; if(array_key_exists('reply', $params)) $in_reply_to = $params['reply']; $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('new-post', array( 'title' => 'New Post', 'in_reply_to' => $in_reply_to, 'micropub_endpoint' => $user->micropub_endpoint, 'media_endpoint' => $user->micropub_media_endpoint, 'micropub_scope' => $user->micropub_scope, 'micropub_access_token' => $user->micropub_access_token, 'response_date' => $user->last_micropub_response_date, 'syndication_targets' => json_decode($user->syndication_targets, true), 'test_response' => $test_response, 'location_enabled' => $user->location_enabled, 'user' => $user, 'authorizing' => false )); $app->response()->body($html); } }); $app->get('/bookmark', function() use($app) { if($user=require_login($app)) { $params = $app->request()->params(); $url = ''; $name = ''; $content = ''; $tags = ''; if(array_key_exists('url', $params)) $url = $params['url']; if(array_key_exists('name', $params)) $name = $params['name']; if(array_key_exists('content', $params)) $content = $params['content']; $html = render('new-bookmark', array( 'title' => 'New Bookmark', 'bookmark_url' => $url, 'bookmark_name' => $name, 'bookmark_content' => $content, 'bookmark_tags' => $tags, 'token' => generate_login_token(), 'syndication_targets' => json_decode($user->syndication_targets, true), 'authorizing' => false )); $app->response()->body($html); } }); $app->get('/favorite', function() use($app) { if($user=require_login($app)) { $params = $app->request()->params(); $url = ''; if(array_key_exists('url', $params)) $url = $params['url']; $html = render('new-favorite', array( 'title' => 'New Favorite', 'url' => $url, 'token' => generate_login_token(), 'authorizing' => false )); $app->response()->body($html); } }); $app->get('/event', function() use($app) { if($user=require_login($app)) { $params = $app->request()->params(); $html = render('event', array( 'title' => 'Event', 'authorizing' => false )); $app->response()->body($html); } }); $app->get('/itinerary', function() use($app) { if($user=require_login($app)) { $params = $app->request()->params(); $html = render('new-itinerary', array( 'title' => 'Itinerary', 'authorizing' => false )); $app->response()->body($html); } }); $app->get('/photo', function() use($app) { if($user=require_login($app)) { $params = $app->request()->params(); $html = render('photo', array( 'title' => 'New Photo', 'note_content' => '', 'authorizing' => false )); $app->response()->body($html); } }); $app->get('/review', function() use($app) { if($user=require_login($app)) { $params = $app->request()->params(); $html = render('review', array( 'title' => 'Review', 'authorizing' => false )); $app->response()->body($html); } }); $app->get('/repost', function() use($app) { if($user=require_login($app)) { $params = $app->request()->params(); $url = ''; if(array_key_exists('url', $params)) $url = $params['url']; $html = render('new-repost', array( 'title' => 'New Repost', 'url' => $url, 'token' => generate_login_token(), 'authorizing' => false )); $app->response()->body($html); } }); $app->post('/prefs', function() use($app) { if($user=require_login($app)) { $params = $app->request()->params(); $user->location_enabled = $params['enabled']; $user->save(); } $app->response()['Content-type'] = 'application/json'; $app->response()->body(json_encode(array( 'result' => 'ok' ))); }); $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', 'authorizing' => false)); $app->response()->body($html); }); $app->get('/docs', function() use($app) { $html = render('docs', array('title' => 'Documentation', 'authorizing' => false)); $app->response()->body($html); }); $app->get('/privacy', function() use($app) { $html = render('privacy', array('title' => 'Quill Privacy Policy', 'authorizing' => false)); $app->response()->body($html); }); $app->get('/add-to-home', function() use($app) { $params = $app->request()->params(); header("Cache-Control: no-cache, must-revalidate"); if(array_key_exists('token', $params) && !session('add-to-home-started')) { unset($_SESSION['add-to-home-started']); // Verify the token and sign the user in try { $data = JWT::decode($params['token'], Config::$jwtSecret, array('HS256')); $_SESSION['user_id'] = $data->user_id; $_SESSION['me'] = $data->me; $app->redirect('/new', 301); } catch(DomainException $e) { header('X-Error: DomainException'); $app->redirect('/', 301); } catch(UnexpectedValueException $e) { header('X-Error: UnexpectedValueException'); $app->redirect('/', 301); } } else { if($user=require_login($app)) { if(array_key_exists('start', $params)) { $_SESSION['add-to-home-started'] = true; $token = JWT::encode(array( 'user_id' => $_SESSION['user_id'], 'me' => $_SESSION['me'], 'created_at' => time() ), Config::$jwtSecret); $app->redirect('/add-to-home?token='.$token, 301); } else { unset($_SESSION['add-to-home-started']); $html = render('add-to-home', array('title' => 'Quill')); $app->response()->body($html); } } } }); $app->get('/email', function() use($app) { if($user=require_login($app)) { $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) { } } if(!$user->email_username) { $host = parse_url($user->url, PHP_URL_HOST); $user->email_username = $host . '.' . rand(100000,999999); $user->save(); } $html = render('email', array( 'title' => 'Post-by-Email', 'micropub_endpoint' => $user->micropub_endpoint, 'test_response' => $test_response, 'user' => $user )); $app->response()->body($html); } }); $app->get('/settings', function() use($app) { if($user=require_login($app)) { $html = render('settings', array('title' => 'Settings', 'include_facebook' => true, 'authorizing' => false)); $app->response()->body($html); } }); $app->post('/settings/html-content', function() use($app) { if($user=require_login($app)) { $params = $app->request()->params(); $user->micropub_optin_html_content = $params['html'] ? 1 : 0; $user->save(); $app->response()['Content-type'] = 'application/json'; $app->response()->body(json_encode(array( 'html' => $user->micropub_optin_html_content ))); } }); $app->get('/settings/html-content', function() use($app) { if($user=require_login($app)) { $app->response()['Content-type'] = 'application/json'; $app->response()->body(json_encode(array( 'html' => $user->micropub_optin_html_content ))); } }); $app->get('/favorite-popup', function() use($app) { if($user=require_login($app)) { $params = $app->request()->params(); $html = $app->render('favorite-popup.php', array( 'url' => $params['url'], 'token' => $params['token'] )); $app->response()->body($html); } }); function create_favorite(&$user, $url) { $micropub_request = array( 'like-of' => $url ); $r = micropub_post_for_user($user, $micropub_request); $facebook_id = false; $instagram_id = false; $tweet_id = false; /* // Facebook likes are posted via Javascript, so pass the FB ID to the javascript code if(preg_match('/https?:\/\/(?:www\.)?facebook\.com\/(?:[^\/]+)\/posts\/(\d+)/', $url, $match)) { $facebook_id = $match[1]; } if(preg_match('/https?:\/\/(?:www\.)?facebook\.com\/photo\.php\?fbid=(\d+)/', $url, $match)) { $facebook_id = $match[1]; } */ if(preg_match('/https?:\/\/(?:www\.)?instagram\.com\/p\/([^\/]+)/', $url, $match)) { $instagram_id = $match[1]; if($user->instagram_access_token) { $instagram = instagram_client(); $instagram->setAccessToken($user->instagram_access_token); $ch = curl_init('https://api.instagram.com/v1/media/shortcode/' . $instagram_id . '?access_token=' . $user->instagram_access_token); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $result = json_decode(curl_exec($ch)); $result = $instagram->likeMedia($result->data->id); } else { // TODO: indicate that the instagram post couldn't be liked because no access token was available } } if($user->twitter_access_token && preg_match('/https?:\/\/(?:www\.)?twitter\.com\/[^\/]+\/status(?:es)?\/(\d+)/', $url, $match)) { $tweet_id = $match[1]; $twitter = new \TwitterOAuth\Api(Config::$twitterClientID, Config::$twitterClientSecret, $user->twitter_access_token, $user->twitter_token_secret); $result = $twitter->post('favorites/create', array( 'id' => $tweet_id )); } return $r; } function create_repost(&$user, $url) { $micropub_request = array( 'repost-of' => $url ); $r = micropub_post_for_user($user, $micropub_request); $tweet_id = false; if($user->twitter_access_token && preg_match('/https?:\/\/(?:www\.)?twitter\.com\/[^\/]+\/status(?:es)?\/(\d+)/', $url, $match)) { $tweet_id = $match[1]; $twitter = new \TwitterOAuth\Api(Config::$twitterClientID, Config::$twitterClientSecret, $user->twitter_access_token, $user->twitter_token_secret); $result = $twitter->post('statuses/retweet/'.$tweet_id); } return $r; } $app->get('/favorite.js', function() use($app) { $app->response()->header("Content-type", "text/javascript"); if($user=require_login($app, false)) { $params = $app->request()->params(); if(array_key_exists('url', $params)) { $r = create_favorite($user, $params['url']); $app->response()->body($app->render('favorite-js.php', array( 'url' => $params['url'], 'like_url' => $r['location'], 'error' => $r['error'], // 'facebook_id' => $facebook_id ))); } else { $app->response()->body('alert("no url");'); } } else { $app->response()->body('alert("invalid token");'); } }); $app->post('/favorite', function() use($app) { if($user=require_login($app)) { $params = $app->request()->params(); $r = create_favorite($user, $params['url']); $app->response()['Content-type'] = 'application/json'; $app->response()->body(json_encode(array( 'location' => $r['location'], 'error' => $r['error'] ))); } }); $app->post('/repost', function() use($app) { if($user=require_login($app)) { $params = $app->request()->params(); $r = create_repost($user, $params['url']); $app->response()['Content-type'] = 'application/json'; $app->response()->body(json_encode(array( 'location' => $r['location'], 'error' => $r['error'] ))); } }); $app->get('/micropub/syndications', function() use($app) { if($user=require_login($app)) { $data = get_micropub_config($user, ['q'=>'syndicate-to']); $app->response()['Content-type'] = 'application/json'; $app->response()->body(json_encode(array( 'targets' => $data['targets'], 'response' => $data['response'] ))); } }); $app->post('/micropub/post', function() use($app) { if($user=require_login($app)) { $params = $app->request()->params(); // Remove any blank params $params = array_filter($params, function($v){ return $v !== ''; }); $r = micropub_post_for_user($user, $params); $app->response()['Content-type'] = 'application/json'; $app->response()->body(json_encode(array( 'request' => htmlspecialchars($r['request']), 'response' => htmlspecialchars($r['response']), 'location' => $r['location'], 'error' => $r['error'], 'curlinfo' => $r['curlinfo'] ))); } }); $app->post('/micropub/multipart', function() use($app) { if($user=require_login($app)) { // var_dump($app->request()->post()); // // Since $app->request()->post() with multipart is always // empty (bug in Slim?) We're using the raw $_POST here. // PHP empties everything in $_POST if the file upload size exceeds // that is why we have to test if the variables exist first. $file = isset($_FILES['photo']) ? $_FILES['photo'] : null; if($file) { $error = validate_photo($file); unset($_POST['null']); if(!$error) { $file_path = $file['tmp_name']; correct_photo_rotation($file_path); $r = micropub_post_for_user($user, $_POST, $file_path); } else { $r = array('error' => $error); } } else { unset($_POST['null']); $r = micropub_post_for_user($user, $_POST); } // Populate the error if there was no location header. if(empty($r['location']) && empty($r['error'])) { $r['error'] = "No 'Location' header in response."; } $app->response()['Content-type'] = 'application/json'; $app->response()->body(json_encode(array( 'response' => (isset($r['response']) ? htmlspecialchars($r['response']) : null), 'location' => (isset($r['location']) ? $r['location'] : null), 'error' => (isset($r['error']) ? $r['error'] : null), ))); } }); $app->post('/micropub/media', function() use($app) { if($user=require_login($app)) { $file = isset($_FILES['photo']) ? $_FILES['photo'] : null; $error = validate_photo($file); unset($_POST['null']); if(!$error) { $file_path = $file['tmp_name']; correct_photo_rotation($file_path); $r = micropub_media_post_for_user($user, $file_path); } else { $r = array('error' => $error); } if(empty($r['location']) && empty($r['error'])) { $r['error'] = "No 'Location' header in response."; } $app->response()['Content-type'] = 'application/json'; $app->response()->body(json_encode(array( 'location' => (isset($r['location']) ? $r['location'] : null), 'error' => (isset($r['error']) ? $r['error'] : null), ))); } }); $app->post('/micropub/postjson', function() use($app) { if($user=require_login($app)) { $params = $app->request()->params(); $r = micropub_post_for_user($user, json_decode($params['data'], true), null, true); $app->response()['Content-type'] = 'application/json'; $app->response()->body(json_encode(array( 'location' => $r['location'], 'error' => $r['error'], 'response' => $r['response'] ))); } });