adds bookmark posting interface with bookmarklet. now any URL can auto-login given a login token.
This commit is contained in:
parent
9cfa0ff2c1
commit
cf8ecf1fc9
8 changed files with 278 additions and 100 deletions
|
@ -1,6 +1,21 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
function require_login(&$app) {
|
function require_login(&$app) {
|
||||||
|
$params = $app->request()->params();
|
||||||
|
if(array_key_exists('token', $params)) {
|
||||||
|
try {
|
||||||
|
$data = JWT::decode($params['token'], Config::$jwtSecret);
|
||||||
|
$_SESSION['user_id'] = $data->user_id;
|
||||||
|
$_SESSION['me'] = $data->me;
|
||||||
|
} catch(DomainException $e) {
|
||||||
|
header('X-Error: DomainException');
|
||||||
|
$app->redirect('/', 301);
|
||||||
|
} catch(UnexpectedValueException $e) {
|
||||||
|
header('X-Error: UnexpectedValueException');
|
||||||
|
$app->redirect('/', 301);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if(!array_key_exists('user_id', $_SESSION)) {
|
if(!array_key_exists('user_id', $_SESSION)) {
|
||||||
$app->redirect('/');
|
$app->redirect('/');
|
||||||
return false;
|
return false;
|
||||||
|
@ -9,6 +24,14 @@ function require_login(&$app) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function generate_login_token() {
|
||||||
|
return JWT::encode(array(
|
||||||
|
'user_id' => $_SESSION['user_id'],
|
||||||
|
'me' => $_SESSION['me'],
|
||||||
|
'created_at' => time()
|
||||||
|
), Config::$jwtSecret);
|
||||||
|
}
|
||||||
|
|
||||||
$app->get('/new', function() use($app) {
|
$app->get('/new', function() use($app) {
|
||||||
if($user=require_login($app)) {
|
if($user=require_login($app)) {
|
||||||
|
|
||||||
|
@ -26,7 +49,7 @@ $app->get('/new', function() use($app) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$html = render('dashboard', array(
|
$html = render('new-post', array(
|
||||||
'title' => 'New Post',
|
'title' => 'New Post',
|
||||||
'micropub_endpoint' => $user->micropub_endpoint,
|
'micropub_endpoint' => $user->micropub_endpoint,
|
||||||
'micropub_scope' => $user->micropub_scope,
|
'micropub_scope' => $user->micropub_scope,
|
||||||
|
@ -40,6 +63,38 @@ $app->get('/new', function() use($app) {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
$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)
|
||||||
|
));
|
||||||
|
$app->response()->body($html);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
$app->post('/prefs', function() use($app) {
|
$app->post('/prefs', function() use($app) {
|
||||||
if($user=require_login($app)) {
|
if($user=require_login($app)) {
|
||||||
$params = $app->request()->params();
|
$params = $app->request()->params();
|
||||||
|
|
|
@ -27,6 +27,10 @@ function partial($template, $data=array(), $debug=false) {
|
||||||
return ob_get_clean();
|
return ob_get_clean();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function js_bookmarklet($partial, $context) {
|
||||||
|
return str_replace('+','%20',urlencode(str_replace(array("\n"),array(''),partial($partial, $context))));
|
||||||
|
}
|
||||||
|
|
||||||
function session($key) {
|
function session($key) {
|
||||||
if(array_key_exists($key, $_SESSION))
|
if(array_key_exists($key, $_SESSION))
|
||||||
return $_SESSION[$key];
|
return $_SESSION[$key];
|
||||||
|
|
|
@ -109,3 +109,84 @@ body {
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* new posts */
|
||||||
|
|
||||||
|
#syndication-container ul {
|
||||||
|
list-style-type: none;
|
||||||
|
margin: 0;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
#syndication-container li {
|
||||||
|
padding: 0;
|
||||||
|
margin-bottom: 6px;
|
||||||
|
}
|
||||||
|
#syndication-container button {
|
||||||
|
max-width: 240px;
|
||||||
|
text-shadow: none;
|
||||||
|
}
|
||||||
|
#syndication-container button img {
|
||||||
|
float: left;
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#last_response_date {
|
||||||
|
font-size: 80%;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
#btn_post {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media all and (max-width: 480px) {
|
||||||
|
#note_location_img_wide {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
#note_location_img_small {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media all and (min-width: 480px) {
|
||||||
|
#note_location_img_wide {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
#note_location_img_small {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.img-visible {
|
||||||
|
-webkit-border-bottom-right-radius: 0;
|
||||||
|
-webkit-border-bottom-left-radius: 0;
|
||||||
|
-moz-border-radius-bottomright: 0;
|
||||||
|
-moz-border-radius-bottomleft: 0;
|
||||||
|
border-bottom-right-radius: 0;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#note_location_img img {
|
||||||
|
margin-top: -1px;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
-webkit-border-bottom-right-radius: 4px;
|
||||||
|
-webkit-border-bottom-left-radius: 4px;
|
||||||
|
-moz-border-radius-bottomright: 4px;
|
||||||
|
-moz-border-radius-bottomleft: 4px;
|
||||||
|
border-bottom-right-radius: 4px;
|
||||||
|
border-bottom-left-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.callout {
|
||||||
|
border-left: 4px #5bc0de solid;
|
||||||
|
background-color: #f4f8fa;
|
||||||
|
padding: 20px;
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
.callout table {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -57,6 +57,7 @@
|
||||||
|
|
||||||
<? if(session('me')) { ?>
|
<? if(session('me')) { ?>
|
||||||
<li><a href="/new">New Post</a></li>
|
<li><a href="/new">New Post</a></li>
|
||||||
|
<li><a href="/bookmark">Bookmark</a></li>
|
||||||
<? } ?>
|
<? } ?>
|
||||||
|
|
||||||
<li><a href="/docs">Docs</a></li>
|
<li><a href="/docs">Docs</a></li>
|
||||||
|
|
106
views/new-bookmark.php
Normal file
106
views/new-bookmark.php
Normal file
|
@ -0,0 +1,106 @@
|
||||||
|
<div class="narrow">
|
||||||
|
<?= partial('partials/header') ?>
|
||||||
|
|
||||||
|
<div style="float: right; margin-top: 6px;">
|
||||||
|
<button class="btn btn-success" id="btn_post">Save Bookmark</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div style="clear: both;">
|
||||||
|
<div class="alert alert-success hidden" id="test_success"><strong>Success! We found a Location header in the response!</strong><br>Your post should be on your website now!<br><a href="" id="post_href">View your post</a></div>
|
||||||
|
<div class="alert alert-danger hidden" id="test_error"><strong>Your endpoint did not return a Location header.</strong><br>See <a href="/creating-a-micropub-endpoint">Creating a Micropub Endpoint</a> for more information.</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<form role="form" style="margin-top: 20px;" id="note_form">
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="note_bookmark"><code>bookmark</code></label>
|
||||||
|
<input type="text" id="note_bookmark" value="<?= $this->bookmark_url ?>" class="form-control">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="note_name"><code>name</code></label>
|
||||||
|
<input type="text" id="note_name" value="<?= $this->bookmark_name ?>" class="form-control">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="note_content"><code>content</code> (optional)</label>
|
||||||
|
<textarea id="note_content" value="" class="form-control" style="height: 5em;"><?= $this->bookmark_content ?></textarea>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="note_category"><code>category</code> (optional, comma-separated list of tags)</label>
|
||||||
|
<input type="text" id="note_category" value="<?= $this->bookmark_tags ?>" class="form-control" placeholder="e.g. web, personal">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="note_syndicate-to"><code>syndicate-to</code> <a href="javascript:reload_syndications()">(refresh)</a></label>
|
||||||
|
<div id="syndication-container">
|
||||||
|
<?php
|
||||||
|
if($this->syndication_targets) {
|
||||||
|
echo '<ul>';
|
||||||
|
foreach($this->syndication_targets as $syn) {
|
||||||
|
echo '<li><button data-syndication="'.$syn['target'].'" class="btn btn-default btn-block"><img src="'.$syn['favicon'].'" width="16" height="16"> '.$syn['target'].'</button></li>';
|
||||||
|
}
|
||||||
|
echo '</ul>';
|
||||||
|
} else {
|
||||||
|
?><div class="bs-callout bs-callout-warning">No syndication targets were found on your site.
|
||||||
|
You can provide a <a href="/docs#syndication">list of supported syndication targets</a> that will appear as checkboxes here.</div><?php
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
<div style="text-align: right;">
|
||||||
|
Bookmarklet: <a href="javascript:<?= js_bookmarklet('partials/bookmark-bookmarklet', $this) ?>" class="btn btn-default btn-xs">bookmark</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
$(function(){
|
||||||
|
|
||||||
|
$("#btn_post").click(function(){
|
||||||
|
|
||||||
|
var syndications = [];
|
||||||
|
$("#syndication-container button.btn-info").each(function(i,btn){
|
||||||
|
syndications.push($(btn).data('syndication'));
|
||||||
|
});
|
||||||
|
|
||||||
|
$.post("/micropub/post", {
|
||||||
|
bookmark: $("#note_bookmark").val(),
|
||||||
|
name: $("#note_name").val(),
|
||||||
|
content: $("#note_content").val(),
|
||||||
|
category: $("#note_category").val(),
|
||||||
|
'syndicate-to': syndications.join(',')
|
||||||
|
}, function(data){
|
||||||
|
var response = JSON.parse(data);
|
||||||
|
|
||||||
|
if(response.location != false) {
|
||||||
|
|
||||||
|
// $("#test_success").removeClass('hidden');
|
||||||
|
$("#test_error").addClass('hidden');
|
||||||
|
// $("#post_href").attr("href", response.location);
|
||||||
|
|
||||||
|
// $("#note_bookmark").val("");
|
||||||
|
// $("#note_content").val("");
|
||||||
|
// $("#note_category").val("");
|
||||||
|
|
||||||
|
window.location = response.location;
|
||||||
|
} else {
|
||||||
|
$("#test_success").addClass('hidden');
|
||||||
|
$("#test_error").removeClass('hidden');
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
|
||||||
|
bind_syndication_buttons();
|
||||||
|
});
|
||||||
|
|
||||||
|
<?= partial('partials/syndication-js') ?>
|
||||||
|
|
||||||
|
</script>
|
|
@ -212,106 +212,8 @@ $(function(){
|
||||||
bind_syndication_buttons();
|
bind_syndication_buttons();
|
||||||
});
|
});
|
||||||
|
|
||||||
function reload_syndications() {
|
<?= partial('partials/syndication-js') ?>
|
||||||
$.getJSON("/micropub/syndications", function(data){
|
|
||||||
if(data.targets) {
|
|
||||||
$("#syndication-container").html('<ul></ul>');
|
|
||||||
for(var i in data.targets) {
|
|
||||||
var target = data.targets[i].target;
|
|
||||||
var favicon = data.targets[i].favicon;
|
|
||||||
$("#syndication-container ul").append('<li><button data-syndication="'+target+'" class="btn btn-default btn-block"><img src="'+favicon+'" width="16" height="16"> '+target+'</button></li>');
|
|
||||||
}
|
|
||||||
bind_syndication_buttons();
|
|
||||||
} else {
|
|
||||||
|
|
||||||
}
|
|
||||||
console.log(data);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function bind_syndication_buttons() {
|
|
||||||
$("#syndication-container button").unbind("click").click(function(){
|
|
||||||
$(this).toggleClass('btn-info');
|
|
||||||
return false;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
<style type="text/css">
|
|
||||||
|
|
||||||
#syndication-container ul {
|
|
||||||
list-style-type: none;
|
|
||||||
margin: 0;
|
|
||||||
padding: 10px;
|
|
||||||
}
|
|
||||||
#syndication-container li {
|
|
||||||
padding: 0;
|
|
||||||
margin-bottom: 6px;
|
|
||||||
}
|
|
||||||
#syndication-container button {
|
|
||||||
max-width: 240px;
|
|
||||||
text-shadow: none;
|
|
||||||
}
|
|
||||||
#syndication-container button img {
|
|
||||||
float: left;
|
|
||||||
margin-left: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#last_response_date {
|
|
||||||
font-size: 80%;
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
#btn_post {
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media all and (max-width: 480px) {
|
|
||||||
#note_location_img_wide {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
#note_location_img_small {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@media all and (min-width: 480px) {
|
|
||||||
#note_location_img_wide {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
#note_location_img_small {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.img-visible {
|
|
||||||
-webkit-border-bottom-right-radius: 0;
|
|
||||||
-webkit-border-bottom-left-radius: 0;
|
|
||||||
-moz-border-radius-bottomright: 0;
|
|
||||||
-moz-border-radius-bottomleft: 0;
|
|
||||||
border-bottom-right-radius: 0;
|
|
||||||
border-bottom-left-radius: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#note_location_img img {
|
|
||||||
margin-top: -1px;
|
|
||||||
border: 1px solid #ccc;
|
|
||||||
-webkit-border-bottom-right-radius: 4px;
|
|
||||||
-webkit-border-bottom-left-radius: 4px;
|
|
||||||
-moz-border-radius-bottomright: 4px;
|
|
||||||
-moz-border-radius-bottomleft: 4px;
|
|
||||||
border-bottom-right-radius: 4px;
|
|
||||||
border-bottom-left-radius: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.callout {
|
|
||||||
border-left: 4px #5bc0de solid;
|
|
||||||
background-color: #f4f8fa;
|
|
||||||
padding: 20px;
|
|
||||||
margin-top: 10px;
|
|
||||||
}
|
|
||||||
.callout table {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
</style>
|
|
||||||
|
|
5
views/partials/bookmark-bookmarklet.php
Normal file
5
views/partials/bookmark-bookmarklet.php
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
javascript:(function(){
|
||||||
|
var t;try{t=((window.getSelection&&window.getSelection())||(document.getSelection&&document.getSelection())||(document.selection&&document.selection.createRange&&document.selection.createRange().text));}catch(e){t="";};
|
||||||
|
window.location="http://quill.dev/bookmark?url="+encodeURIComponent(window.location.href)+"&content="+encodeURIComponent('"'+t+'"')+"&name="+encodeURIComponent(document.title)+"&token=<?= $this->token ?>";
|
||||||
|
})();
|
||||||
|
|
24
views/partials/syndication-js.php
Normal file
24
views/partials/syndication-js.php
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
|
||||||
|
function reload_syndications() {
|
||||||
|
$.getJSON("/micropub/syndications", function(data){
|
||||||
|
if(data.targets) {
|
||||||
|
$("#syndication-container").html('<ul></ul>');
|
||||||
|
for(var i in data.targets) {
|
||||||
|
var target = data.targets[i].target;
|
||||||
|
var favicon = data.targets[i].favicon;
|
||||||
|
$("#syndication-container ul").append('<li><button data-syndication="'+target+'" class="btn btn-default btn-block"><img src="'+favicon+'" width="16" height="16"> '+target+'</button></li>');
|
||||||
|
}
|
||||||
|
bind_syndication_buttons();
|
||||||
|
} else {
|
||||||
|
|
||||||
|
}
|
||||||
|
console.log(data);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function bind_syndication_buttons() {
|
||||||
|
$("#syndication-container button").unbind("click").click(function(){
|
||||||
|
$(this).toggleClass('btn-info');
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue