Compare commits
49 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 85ebc80c7e | |||
| 6588517b2d | |||
| 6d37de5f82 | |||
| 9c902708da | |||
| 66ce09ba03 | |||
| 6499b26ae8 | |||
| da368cc84f | |||
| aa8c9f2a32 | |||
| baa8617364 | |||
| 494e21b4da | |||
| 0ace6cab0b | |||
| c1c9f252f7 | |||
| 2987031bc3 | |||
| 3e7188185d | |||
| 8d5aab49c1 | |||
| cdcc8d2533 | |||
| ae9571694f | |||
| 4ddbd26787 | |||
| 8444bb0600 | |||
| 29c6fd4607 | |||
| 37f2773aa5 | |||
| e682978e5b | |||
| 69ca1455d1 | |||
| 88958248fa | |||
| 2761de0184 | |||
| d2beefd27c | |||
| 8af1077265 | |||
| 9acfade829 | |||
| d3607de929 | |||
| 176d733a44 | |||
| e858ac2776 | |||
| 37c6ed4e7a | |||
| f0070a15e4 | |||
| 6f87a19714 | |||
| 44e77bfa24 | |||
| 016989b79a | |||
| a58cd56c4f | |||
| cddd8e90f4 | |||
| bbff4b57a9 | |||
| f281635c9a | |||
| 8c72b98d9d | |||
| 6a02410a9b | |||
| 2cd263e0bd | |||
| 4e97e6e8b9 | |||
| b4397510e7 | |||
| 682536a9e7 | |||
| 14890de35a | |||
| ff4d8c8c1e | |||
| bf18db78b3 |
@ -5,7 +5,9 @@ Abandon Pocket, Instapaper and other Readability service : adopt poche. It is th
|
|||||||
|
|
||||||
The website of poche is [inthepoche.com](http://inthepoche.com).
|
The website of poche is [inthepoche.com](http://inthepoche.com).
|
||||||
|
|
||||||
To get news from poche, [follow us on twitter](http://twitter.com/getpoche) or [read the poche blog](http://inthepoche.com/blog).
|
To test poche, a demo website is online : [demo.inthepoche.com](http://demo.inthepoche.com) (login poche, password poche).
|
||||||
|
|
||||||
|
To get news from poche, [follow us on twitter](http://twitter.com/getpoche) or [read the poche blog](http://inthepoche.com/blog). A Google Group is also available : [poche-users](https://groups.google.com/forum/#!forum/poche-users).
|
||||||
|
|
||||||
[](http://flattr.com/thing/1265480/poche-a-read-it-later-open-source-system)
|
[](http://flattr.com/thing/1265480/poche-a-read-it-later-open-source-system)
|
||||||
|
|
||||||
@ -23,7 +25,7 @@ You can :
|
|||||||
## Requirements & installation
|
## Requirements & installation
|
||||||
You have to install [sqlite for php](http://www.php.net/manual/en/book.sqlite.php) on your server.
|
You have to install [sqlite for php](http://www.php.net/manual/en/book.sqlite.php) on your server.
|
||||||
|
|
||||||
Get the [latest version](https://github.com/nicosomb/poche) of poche on github. Unzip it and upload it on your server. poche must have write access on assets, cache and db directories.
|
Get the [latest version](https://github.com/inthepoche/poche) of poche on github. Unzip it and upload it on your server. poche must have write access on assets, cache and db directories.
|
||||||
|
|
||||||
That's all, **poche works** !
|
That's all, **poche works** !
|
||||||
|
|
||||||
|
|||||||
90
css/style-dark.css
Normal file
@ -0,0 +1,90 @@
|
|||||||
|
/*** GENERAL ***/
|
||||||
|
body {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #0d0d0d;
|
||||||
|
}
|
||||||
|
|
||||||
|
a, a:hover, a:visited {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#main ul#links li a.current {
|
||||||
|
background-color: #000;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#links a:hover, .backhome a:hover{
|
||||||
|
background-color: #fff;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=submit].delete {
|
||||||
|
background : url('../img/dark/remove.png') no-repeat center center;
|
||||||
|
color : transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
#main .entrie {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #000;
|
||||||
|
border: 1px solid #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#main .entrie h2 a:hover {
|
||||||
|
color: #29B1E3;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.fav span {
|
||||||
|
background: url('../img/dark/star-on.png') no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.fav span:hover {
|
||||||
|
background: url('../img/dark/star-off.png') no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.fav-off span {
|
||||||
|
background: url('../img/dark/star-off.png') no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.fav-off span:hover {
|
||||||
|
background: url('../img/dark/star-on.png') no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.archive span {
|
||||||
|
background: url('../img/dark/checkmark-on.png') no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.archive span:hover {
|
||||||
|
background: url('../img/dark/checkmark-off.png') no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.archive-off span {
|
||||||
|
background: url('../img/dark/checkmark-off.png') no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.archive-off span:hover {
|
||||||
|
background: url('../img/dark/checkmark-on.png') no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*** ***/
|
||||||
|
/*** ARTICLE PAGE ***/
|
||||||
|
|
||||||
|
body.article {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #0d0d0d;
|
||||||
|
}
|
||||||
|
|
||||||
|
#article header {
|
||||||
|
border-bottom: 1px solid #222222;
|
||||||
|
}
|
||||||
|
|
||||||
|
#article article {
|
||||||
|
border-bottom: 1px solid #222222;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vieworiginal a {
|
||||||
|
color: #888888;
|
||||||
|
}
|
||||||
|
|
||||||
|
.entrie {
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
100
css/style-light.css
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
/*** GENERAL ***/
|
||||||
|
body {
|
||||||
|
color: #222222;
|
||||||
|
background-color: #F1F1F1;
|
||||||
|
}
|
||||||
|
|
||||||
|
a, a:hover, a:visited {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bouton {
|
||||||
|
background-color: #000;
|
||||||
|
color: #fff;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
.bouton:hover {
|
||||||
|
background-color: #222222;
|
||||||
|
color: #F1F1F1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#main ul#links li a.current {
|
||||||
|
background-color: #000;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#links a:hover, .backhome a:hover{
|
||||||
|
background-color: #040707;
|
||||||
|
color: #F1F1F1;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=submit].delete {
|
||||||
|
background : url('../img/light/remove.png') no-repeat center center;
|
||||||
|
color : transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
#main .entrie {
|
||||||
|
color: #2e2e2e;
|
||||||
|
background-color: #ffffff;
|
||||||
|
border: 1px solid #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#main .entrie h2 a:hover {
|
||||||
|
color: #F5BE00;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.fav span {
|
||||||
|
background: url('../img/light/star-on.png') no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.fav span:hover {
|
||||||
|
background: url('../img/light/star-off.png') no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.fav-off span {
|
||||||
|
background: url('../img/light/star-off.png') no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.fav-off span:hover {
|
||||||
|
background: url('../img/light/star-on.png') no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.archive span {
|
||||||
|
background: url('../img/light/checkmark-on.png') no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.archive span:hover {
|
||||||
|
background: url('../img/light/checkmark-off.png') no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.archive-off span {
|
||||||
|
background: url('../img/light/checkmark-off.png') no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.archive-off span:hover {
|
||||||
|
background: url('../img/light/checkmark-on.png') no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*** ***/
|
||||||
|
/*** ARTICLE PAGE ***/
|
||||||
|
|
||||||
|
body.article {
|
||||||
|
color: #222222;
|
||||||
|
background-color: #F1F1F1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#article header {
|
||||||
|
border-bottom: 1px solid #222222;
|
||||||
|
}
|
||||||
|
|
||||||
|
#article article {
|
||||||
|
border-bottom: 1px solid #222222;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vieworiginal a {
|
||||||
|
color: #888888;
|
||||||
|
}
|
||||||
|
|
||||||
|
.entrie {
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
@ -1,20 +1,17 @@
|
|||||||
/*** GENERAL ***/
|
/*** GENERAL ***/
|
||||||
body {
|
body {
|
||||||
color: #222222;
|
|
||||||
font: 20px/1.3em Palatino,Georgia,serif;
|
font: 20px/1.3em Palatino,Georgia,serif;
|
||||||
background-color: #F1F1F1;
|
|
||||||
margin: 10px;
|
margin: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
a, a:hover, a:visited {
|
|
||||||
color: #000;
|
|
||||||
}
|
|
||||||
|
|
||||||
header {
|
header {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.bouton {
|
||||||
|
border-radius: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
#main ul#links {
|
#main ul#links {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
@ -28,8 +25,6 @@ header {
|
|||||||
#main ul#links li a.current {
|
#main ul#links li a.current {
|
||||||
-webkit-border-radius: 2px;
|
-webkit-border-radius: 2px;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
background-color: #040707;
|
|
||||||
color: #F1F1F1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#main ul#sort {
|
#main ul#sort {
|
||||||
@ -58,19 +53,12 @@ header {
|
|||||||
#links a:hover, .backhome a:hover{
|
#links a:hover, .backhome a:hover{
|
||||||
-webkit-border-radius: 2px;
|
-webkit-border-radius: 2px;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
background-color: #040707;
|
|
||||||
color: #F1F1F1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*** ***/
|
|
||||||
/*** LOGIN FORM ***/
|
|
||||||
ul#login li {
|
|
||||||
list-style-type: none;
|
|
||||||
}
|
|
||||||
/*** ***/
|
/*** ***/
|
||||||
/*** LINKS DISPLAY ***/
|
/*** LINKS DISPLAY ***/
|
||||||
|
|
||||||
@ -80,11 +68,9 @@ ul#login li {
|
|||||||
}
|
}
|
||||||
|
|
||||||
input[type=submit].delete {
|
input[type=submit].delete {
|
||||||
background : url('../img/remove.png') no-repeat center center;
|
|
||||||
width : 16px;
|
width : 16px;
|
||||||
height :16px;
|
height :16px;
|
||||||
border : none;
|
border : none;
|
||||||
color : transparent;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
font-size : 0;
|
font-size : 0;
|
||||||
}
|
}
|
||||||
@ -94,8 +80,6 @@ input[type=submit].delete {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#main .entrie {
|
#main .entrie {
|
||||||
color: rgb(46, 46, 46);
|
|
||||||
background-color: #ffffff;
|
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
min-height: 8em;
|
min-height: 8em;
|
||||||
border: 1px solid;
|
border: 1px solid;
|
||||||
@ -105,10 +89,6 @@ input[type=submit].delete {
|
|||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#main .entrie h2 a:hover {
|
|
||||||
color: #F5BE00;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tools {
|
.tools {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
@ -135,7 +115,7 @@ input[type=submit].delete {
|
|||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
#article.tools ul li{
|
#article .tools ul li{
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -145,62 +125,23 @@ input[type=submit].delete {
|
|||||||
height: 16px;
|
height: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.fav span {
|
|
||||||
background: url('../img/star-on.png') no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.fav span:hover {
|
|
||||||
background: url('../img/star-off.png') no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.fav-off span {
|
|
||||||
background: url('../img/star-off.png') no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.fav-off span:hover {
|
|
||||||
background: url('../img/star-on.png') no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.archive span {
|
|
||||||
background: url('../img/checkmark-on.png') no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.archive span:hover {
|
|
||||||
background: url('../img/checkmark-off.png') no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.archive-off span {
|
|
||||||
background: url('../img/checkmark-off.png') no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.archive-off span:hover {
|
|
||||||
background: url('../img/checkmark-on.png') no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*** ***/
|
/*** ***/
|
||||||
/*** ARTICLE PAGE ***/
|
/*** ARTICLE PAGE ***/
|
||||||
|
|
||||||
body.article {
|
body.article {
|
||||||
color: #222222;
|
|
||||||
font: 20px/1.3em Palatino,Georgia,serif;
|
font: 20px/1.3em Palatino,Georgia,serif;
|
||||||
background-color: #F1F1F1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#article header {
|
#article header {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
border-bottom: 1px solid #222222;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#article header a {
|
#article header a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#article article {
|
|
||||||
border-bottom: 1px solid #222222;
|
|
||||||
}
|
|
||||||
|
|
||||||
.vieworiginal a {
|
.vieworiginal a {
|
||||||
color: #888888;
|
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -256,4 +197,19 @@ body.article {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*** ***/
|
||||||
|
/*** MESSAGES ***/
|
||||||
|
|
||||||
|
.messages { width: 100%; -moz-border-radius: 4px; border-radius: 4px; display: block; padding: 10px 0; margin: 10px auto 10px; clear: both; }
|
||||||
|
.messages a.closeMessage { margin: -14px -8px 0 0; display:none; width: 16px; height: 16px; float: right; background: url(../img/messages/close.png) no-repeat; }
|
||||||
|
/*.messages:hover a.closeMessage { visibility:visible; }*/
|
||||||
|
.messages p { margin: 3px 0 3px 10px !important; padding: 0 10px 0 23px !important; font-size: 14px; line-height: 16px; }
|
||||||
|
.messages.error { border: 1px solid #C42608; color: #c00 !important; background: #FFF0EF; }
|
||||||
|
.messages.error p { background: url(../img/messages/cross.png ) no-repeat 0px 50%; color:#c00 !important; }
|
||||||
|
.messages.success {background: #E0FBCC; border: 1px solid #6DC70C; }
|
||||||
|
.messages.success p { background: url(../img/messages/tick.png) no-repeat 0px 50%; color: #2B6301 !important; }
|
||||||
|
.messages.warning { background: #FFFCD3; border: 1px solid #EBCD41; color: #000; }
|
||||||
|
.messages.warning p { background: url(../img/messages/warning.png ) no-repeat 0px 50%; color: #5F4E01; }
|
||||||
|
.messages.information, .messages.info { background: #DFEBFB; border: 1px solid #82AEE7; }
|
||||||
|
.messages.information p, .messages.info p { background: url(../img/messages/help.png ) no-repeat 0px 50%; color: #064393; }
|
||||||
|
.messages.information a { text-decoration: underline; }
|
||||||
|
|||||||
BIN
img/dark/checkmark-off.png
Normal file
|
After Width: | Height: | Size: 267 B |
BIN
img/dark/checkmark-on.png
Normal file
|
After Width: | Height: | Size: 221 B |
BIN
img/dark/down.png
Normal file
|
After Width: | Height: | Size: 223 B |
BIN
img/dark/logo.png
Normal file
|
After Width: | Height: | Size: 786 B |
BIN
img/dark/remove.png
Normal file
|
After Width: | Height: | Size: 265 B |
BIN
img/dark/star-off.png
Normal file
|
After Width: | Height: | Size: 330 B |
BIN
img/dark/star-on.png
Normal file
|
After Width: | Height: | Size: 277 B |
BIN
img/dark/up.png
Normal file
|
After Width: | Height: | Size: 225 B |
|
Before Width: | Height: | Size: 277 B After Width: | Height: | Size: 277 B |
|
Before Width: | Height: | Size: 235 B After Width: | Height: | Size: 235 B |
|
Before Width: | Height: | Size: 252 B After Width: | Height: | Size: 252 B |
|
Before Width: | Height: | Size: 314 B After Width: | Height: | Size: 314 B |
|
Before Width: | Height: | Size: 281 B After Width: | Height: | Size: 281 B |
BIN
img/messages/close.png
Normal file
|
After Width: | Height: | Size: 662 B |
BIN
img/messages/cross.png
Normal file
|
After Width: | Height: | Size: 655 B |
BIN
img/messages/help.png
Normal file
|
After Width: | Height: | Size: 786 B |
BIN
img/messages/tick.png
Normal file
|
After Width: | Height: | Size: 537 B |
BIN
img/messages/warning.png
Normal file
|
After Width: | Height: | Size: 666 B |
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* This class extends PHP's DOMElement to allow
|
* This class extends PHP's DOMElement to allow
|
||||||
* users to get and set the innerHTML property of
|
* users to get and set the innerHTML property of
|
||||||
* HTML elements in the same way it's done in
|
* HTML elements in the same way it's done in
|
||||||
* JavaScript.
|
* JavaScript.
|
||||||
*
|
*
|
||||||
* Example usage:
|
* Example usage:
|
||||||
@ -15,16 +15,16 @@
|
|||||||
* $doc->registerNodeClass('DOMElement', 'JSLikeHTMLElement');
|
* $doc->registerNodeClass('DOMElement', 'JSLikeHTMLElement');
|
||||||
* $doc->loadHTML('<div><p>Para 1</p><p>Para 2</p></div>');
|
* $doc->loadHTML('<div><p>Para 1</p><p>Para 2</p></div>');
|
||||||
* $elem = $doc->getElementsByTagName('div')->item(0);
|
* $elem = $doc->getElementsByTagName('div')->item(0);
|
||||||
*
|
*
|
||||||
* // print innerHTML
|
* // print innerHTML
|
||||||
* echo $elem->innerHTML; // prints '<p>Para 1</p><p>Para 2</p>'
|
* echo $elem->innerHTML; // prints '<p>Para 1</p><p>Para 2</p>'
|
||||||
* echo "\n\n";
|
* echo "\n\n";
|
||||||
*
|
*
|
||||||
* // set innerHTML
|
* // set innerHTML
|
||||||
* $elem->innerHTML = '<a href="http://fivefilters.org">FiveFilters.org</a>';
|
* $elem->innerHTML = '<a href="http://fivefilters.org">FiveFilters.org</a>';
|
||||||
* echo $elem->innerHTML; // prints '<a href="http://fivefilters.org">FiveFilters.org</a>'
|
* echo $elem->innerHTML; // prints '<a href="http://fivefilters.org">FiveFilters.org</a>'
|
||||||
* echo "\n\n";
|
* echo "\n\n";
|
||||||
*
|
*
|
||||||
* // print document (with our changes)
|
* // print document (with our changes)
|
||||||
* echo $doc->saveXML();
|
* echo $doc->saveXML();
|
||||||
* @endcode
|
* @endcode
|
||||||
@ -59,7 +59,7 @@ class JSLikeHTMLElement extends DOMElement
|
|||||||
$value = mb_convert_encoding($value, 'HTML-ENTITIES', 'UTF-8');
|
$value = mb_convert_encoding($value, 'HTML-ENTITIES', 'UTF-8');
|
||||||
// Using <htmlfragment> will generate a warning, but so will bad HTML
|
// Using <htmlfragment> will generate a warning, but so will bad HTML
|
||||||
// (and by this point, bad HTML is what we've got).
|
// (and by this point, bad HTML is what we've got).
|
||||||
// We use it (and suppress the warning) because an HTML fragment will
|
// We use it (and suppress the warning) because an HTML fragment will
|
||||||
// be wrapped around <html><body> tags which we don't really want to keep.
|
// be wrapped around <html><body> tags which we don't really want to keep.
|
||||||
// Note: despite the warning, if loadHTML succeeds it will return true.
|
// Note: despite the warning, if loadHTML succeeds it will return true.
|
||||||
$result = @$f->loadHTML('<htmlfragment>'.$value.'</htmlfragment>');
|
$result = @$f->loadHTML('<htmlfragment>'.$value.'</htmlfragment>');
|
||||||
@ -86,7 +86,7 @@ class JSLikeHTMLElement extends DOMElement
|
|||||||
* @code
|
* @code
|
||||||
* $string = $div->innerHTML;
|
* $string = $div->innerHTML;
|
||||||
* @endcode
|
* @endcode
|
||||||
*/
|
*/
|
||||||
public function __get($name)
|
public function __get($name)
|
||||||
{
|
{
|
||||||
if ($name == 'innerHTML') {
|
if ($name == 'innerHTML') {
|
||||||
@ -106,5 +106,4 @@ class JSLikeHTMLElement extends DOMElement
|
|||||||
{
|
{
|
||||||
return '['.$this->tagName.']';
|
return '['.$this->tagName.']';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
@ -1,4 +1,13 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* poche, a read it later open source system
|
||||||
|
*
|
||||||
|
* @category poche
|
||||||
|
* @author Nicolas Lœuillet <support@inthepoche.com>
|
||||||
|
* @copyright 2013
|
||||||
|
* @license http://www.wtfpl.net/ see COPYING file
|
||||||
|
*/
|
||||||
|
|
||||||
class MyTool
|
class MyTool
|
||||||
{
|
{
|
||||||
public static function initPhp()
|
public static function initPhp()
|
||||||
|
|||||||
2164
inc/Readability.php
@ -93,7 +93,7 @@ class Session
|
|||||||
// Force logout
|
// Force logout
|
||||||
public static function logout()
|
public static function logout()
|
||||||
{
|
{
|
||||||
unset($_SESSION['uid'],$_SESSION['info'],$_SESSION['expires_on'],$_SESSION['tokens']);
|
unset($_SESSION['uid'],$_SESSION['info'],$_SESSION['expires_on'],$_SESSION['tokens'], $_SESSION['login'], $_SESSION['pass']);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Make sure user is logged in.
|
// Make sure user is logged in.
|
||||||
|
|||||||
231
inc/class.messages.php
Normal file
@ -0,0 +1,231 @@
|
|||||||
|
<?php
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
// Session-Based Flash Messages v1.0
|
||||||
|
// Copyright 2012 Mike Everhart (http://mikeeverhart.net)
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
//
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// Description:
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
//
|
||||||
|
// Stores messages in Session data to be easily retrieved later on.
|
||||||
|
// This class includes four different types of messages:
|
||||||
|
// - Success
|
||||||
|
// - Error
|
||||||
|
// - Warning
|
||||||
|
// - Information
|
||||||
|
//
|
||||||
|
// See README for basic usage instructions, or see samples/index.php for more advanced samples
|
||||||
|
//
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
// Changelog
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
//
|
||||||
|
// 2011-05-15 - v1.0 - Initial Version
|
||||||
|
//
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
class Messages {
|
||||||
|
|
||||||
|
//-----------------------------------------------------------------------------------------------
|
||||||
|
// Class Variables
|
||||||
|
//-----------------------------------------------------------------------------------------------
|
||||||
|
var $msgId;
|
||||||
|
var $msgTypes = array( 'help', 'info', 'warning', 'success', 'error' );
|
||||||
|
var $msgClass = 'messages';
|
||||||
|
var $msgWrapper = "<div class='%s %s'><a href='#' class='closeMessage'></a>\n%s</div>\n";
|
||||||
|
var $msgBefore = '<p>';
|
||||||
|
var $msgAfter = "</p>\n";
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
* @author Mike Everhart
|
||||||
|
*/
|
||||||
|
public function __construct() {
|
||||||
|
|
||||||
|
// Generate a unique ID for this user and session
|
||||||
|
$this->msgId = md5(uniqid());
|
||||||
|
|
||||||
|
// Create the session array if it doesnt already exist
|
||||||
|
if( !array_key_exists('flash_messages', $_SESSION) ) $_SESSION['flash_messages'] = array();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add a message to the queue
|
||||||
|
*
|
||||||
|
* @author Mike Everhart
|
||||||
|
*
|
||||||
|
* @param string $type The type of message to add
|
||||||
|
* @param string $message The message
|
||||||
|
* @param string $redirect_to (optional) If set, the user will be redirected to this URL
|
||||||
|
* @return bool
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public function add($type, $message, $redirect_to=null) {
|
||||||
|
|
||||||
|
if( !isset($_SESSION['flash_messages']) ) return false;
|
||||||
|
|
||||||
|
if( !isset($type) || !isset($message[0]) ) return false;
|
||||||
|
|
||||||
|
// Replace any shorthand codes with their full version
|
||||||
|
if( strlen(trim($type)) == 1 ) {
|
||||||
|
$type = str_replace( array('h', 'i', 'w', 'e', 's'), array('help', 'info', 'warning', 'error', 'success'), $type );
|
||||||
|
|
||||||
|
// Backwards compatibility...
|
||||||
|
} elseif( $type == 'information' ) {
|
||||||
|
$type = 'info';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Make sure it's a valid message type
|
||||||
|
if( !in_array($type, $this->msgTypes) ) die('"' . strip_tags($type) . '" is not a valid message type!' );
|
||||||
|
|
||||||
|
// If the session array doesn't exist, create it
|
||||||
|
if( !array_key_exists( $type, $_SESSION['flash_messages'] ) ) $_SESSION['flash_messages'][$type] = array();
|
||||||
|
|
||||||
|
$_SESSION['flash_messages'][$type][] = $message;
|
||||||
|
|
||||||
|
if( !is_null($redirect_to) ) {
|
||||||
|
header("Location: $redirect_to");
|
||||||
|
exit();
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
//-----------------------------------------------------------------------------------------------
|
||||||
|
// display()
|
||||||
|
// print queued messages to the screen
|
||||||
|
//-----------------------------------------------------------------------------------------------
|
||||||
|
/**
|
||||||
|
* Display the queued messages
|
||||||
|
*
|
||||||
|
* @author Mike Everhart
|
||||||
|
*
|
||||||
|
* @param string $type Which messages to display
|
||||||
|
* @param bool $print True = print the messages on the screen
|
||||||
|
* @return mixed
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public function display($type='all', $print=true) {
|
||||||
|
$messages = '';
|
||||||
|
$data = '';
|
||||||
|
|
||||||
|
if( !isset($_SESSION['flash_messages']) ) return false;
|
||||||
|
|
||||||
|
if( $type == 'g' || $type == 'growl' ) {
|
||||||
|
$this->displayGrowlMessages();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Print a certain type of message?
|
||||||
|
if( in_array($type, $this->msgTypes) ) {
|
||||||
|
foreach( $_SESSION['flash_messages'][$type] as $msg ) {
|
||||||
|
$messages .= $this->msgBefore . $msg . $this->msgAfter;
|
||||||
|
}
|
||||||
|
|
||||||
|
$data .= sprintf($this->msgWrapper, $this->msgClass, $type, $messages);
|
||||||
|
|
||||||
|
// Clear the viewed messages
|
||||||
|
$this->clear($type);
|
||||||
|
|
||||||
|
// Print ALL queued messages
|
||||||
|
} elseif( $type == 'all' ) {
|
||||||
|
foreach( $_SESSION['flash_messages'] as $type => $msgArray ) {
|
||||||
|
$messages = '';
|
||||||
|
foreach( $msgArray as $msg ) {
|
||||||
|
$messages .= $this->msgBefore . $msg . $this->msgAfter;
|
||||||
|
}
|
||||||
|
$data .= sprintf($this->msgWrapper, $this->msgClass, $type, $messages);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Clear ALL of the messages
|
||||||
|
$this->clear();
|
||||||
|
|
||||||
|
// Invalid Message Type?
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Print everything to the screen or return the data
|
||||||
|
if( $print ) {
|
||||||
|
echo $data;
|
||||||
|
} else {
|
||||||
|
return $data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check to see if there are any queued error messages
|
||||||
|
*
|
||||||
|
* @author Mike Everhart
|
||||||
|
*
|
||||||
|
* @return bool true = There ARE error messages
|
||||||
|
* false = There are NOT any error messages
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public function hasErrors() {
|
||||||
|
return empty($_SESSION['flash_messages']['error']) ? false : true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check to see if there are any ($type) messages queued
|
||||||
|
*
|
||||||
|
* @author Mike Everhart
|
||||||
|
*
|
||||||
|
* @param string $type The type of messages to check for
|
||||||
|
* @return bool
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public function hasMessages($type=null) {
|
||||||
|
if( !is_null($type) ) {
|
||||||
|
if( !empty($_SESSION['flash_messages'][$type]) ) return $_SESSION['flash_messages'][$type];
|
||||||
|
} else {
|
||||||
|
foreach( $this->msgTypes as $type ) {
|
||||||
|
if( !empty($_SESSION['flash_messages']) ) return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Clear messages from the session data
|
||||||
|
*
|
||||||
|
* @author Mike Everhart
|
||||||
|
*
|
||||||
|
* @param string $type The type of messages to clear
|
||||||
|
* @return bool
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public function clear($type='all') {
|
||||||
|
if( $type == 'all' ) {
|
||||||
|
unset($_SESSION['flash_messages']);
|
||||||
|
} else {
|
||||||
|
unset($_SESSION['flash_messages'][$type]);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function __toString() { return $this->hasMessages(); }
|
||||||
|
|
||||||
|
public function __destruct() {
|
||||||
|
//$this->clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
} // end class
|
||||||
|
?>
|
||||||
@ -8,29 +8,59 @@
|
|||||||
* @license http://www.wtfpl.net/ see COPYING file
|
* @license http://www.wtfpl.net/ see COPYING file
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
define ('POCHE_VERSION', '0.2.1');
|
||||||
|
|
||||||
if (!is_dir('db/')) {
|
if (!is_dir('db/')) {
|
||||||
@mkdir('db/',0705);
|
@mkdir('db/',0705);
|
||||||
}
|
}
|
||||||
|
|
||||||
define ('DB_PATH', 'sqlite:./db/poche.sqlite');
|
define ('MODE_DEMO', FALSE);
|
||||||
define ('ABS_PATH', 'assets/');
|
define ('ABS_PATH', 'assets/');
|
||||||
define ('CONVERT_LINKS_FOOTNOTES', TRUE);
|
define ('CONVERT_LINKS_FOOTNOTES', TRUE);
|
||||||
|
define ('REVERT_FORCED_PARAGRAPH_ELEMENTS',FALSE);
|
||||||
define ('DOWNLOAD_PICTURES', TRUE);
|
define ('DOWNLOAD_PICTURES', TRUE);
|
||||||
|
define ('SALT', '464v54gLLw928uz4zUBqkRJeiPY68zCX');
|
||||||
|
$storage_type = 'sqlite'; # sqlite or file
|
||||||
|
|
||||||
include 'db.php';
|
|
||||||
include 'functions.php';
|
include 'functions.php';
|
||||||
require_once 'Readability.php';
|
require_once 'Readability.php';
|
||||||
require_once 'Encoding.php';
|
require_once 'Encoding.php';
|
||||||
require_once 'rain.tpl.class.php';
|
require_once 'rain.tpl.class.php';
|
||||||
require_once 'MyTool.class.php';
|
require_once 'MyTool.class.php';
|
||||||
require_once 'Session.class.php';
|
require_once 'Session.class.php';
|
||||||
|
require_once 'store/store.class.php';
|
||||||
|
require_once 'store/sqlite.class.php';
|
||||||
|
require_once 'store/file.class.php';
|
||||||
|
require_once 'class.messages.php';
|
||||||
|
|
||||||
$db = new db(DB_PATH);
|
Session::init();
|
||||||
|
|
||||||
|
$store = new $storage_type();
|
||||||
# initialisation de RainTPL
|
# initialisation de RainTPL
|
||||||
raintpl::$tpl_dir = './tpl/';
|
raintpl::$tpl_dir = './tpl/';
|
||||||
raintpl::$cache_dir = './cache/';
|
raintpl::$cache_dir = './cache/';
|
||||||
raintpl::$base_url = get_poche_url();
|
raintpl::$base_url = get_poche_url();
|
||||||
raintpl::configure('path_replace', false);
|
raintpl::configure('path_replace', false);
|
||||||
raintpl::configure('debug', false);
|
raintpl::configure('debug', false);
|
||||||
$tpl = new raintpl();
|
$tpl = new raintpl();
|
||||||
|
|
||||||
|
if(!$store->isInstalled())
|
||||||
|
{
|
||||||
|
logm('poche still not installed');
|
||||||
|
$tpl->draw('install');
|
||||||
|
if (isset($_GET['install'])) {
|
||||||
|
if (($_POST['password'] == $_POST['password_repeat'])
|
||||||
|
&& $_POST['password'] != "" && $_POST['login'] != "") {
|
||||||
|
$store->install($_POST['login'], encode_string($_POST['password'] . $_POST['login']));
|
||||||
|
Session::logout();
|
||||||
|
MyTool::redirect();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
exit();
|
||||||
|
}
|
||||||
|
|
||||||
|
$_SESSION['login'] = (isset ($_SESSION['login'])) ? $_SESSION['login'] : $store->getLogin();
|
||||||
|
$_SESSION['pass'] = (isset ($_SESSION['pass'])) ? $_SESSION['pass'] : $store->getPassword();
|
||||||
|
|
||||||
|
$msg = new Messages();
|
||||||
|
$tpl->assign('msg', $msg);
|
||||||
22
inc/db.php
@ -1,22 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* poche, a read it later open source system
|
|
||||||
*
|
|
||||||
* @category poche
|
|
||||||
* @author Nicolas Lœuillet <nicolas@loeuillet.org>
|
|
||||||
* @copyright 2013
|
|
||||||
* @license http://www.wtfpl.net/ see COPYING file
|
|
||||||
*/
|
|
||||||
|
|
||||||
class db {
|
|
||||||
var $handle;
|
|
||||||
function __construct($path) {
|
|
||||||
$this->handle = new PDO($path);
|
|
||||||
$this->handle->exec('CREATE TABLE IF NOT EXISTS "entries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE , "title" VARCHAR, "url" VARCHAR UNIQUE , "is_read" INTEGER DEFAULT 0, "is_fav" INTEGER DEFAULT 0, "content" BLOB)');
|
|
||||||
$this->handle->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getHandle() {
|
|
||||||
return $this->handle;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,4 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* poche, a read it later open source system
|
||||||
|
*
|
||||||
|
* @category poche
|
||||||
|
* @author Nicolas Lœuillet <support@inthepoche.com>
|
||||||
|
* @copyright 2013
|
||||||
|
* @license http://www.wtfpl.net/ see COPYING file
|
||||||
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Permet de générer l'URL de poche pour le bookmarklet
|
* Permet de générer l'URL de poche pour le bookmarklet
|
||||||
@ -15,6 +23,11 @@ function get_poche_url()
|
|||||||
return $protocol . "://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
|
return $protocol . "://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function encode_string($string)
|
||||||
|
{
|
||||||
|
return sha1($string . SALT);
|
||||||
|
}
|
||||||
|
|
||||||
// function define to retrieve url content
|
// function define to retrieve url content
|
||||||
function get_external_file($url)
|
function get_external_file($url)
|
||||||
{
|
{
|
||||||
@ -31,6 +44,10 @@ function get_external_file($url)
|
|||||||
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
|
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
|
||||||
curl_setopt($curl, CURLOPT_HEADER, false);
|
curl_setopt($curl, CURLOPT_HEADER, false);
|
||||||
|
|
||||||
|
// FOR SSL do not verified certificate
|
||||||
|
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
|
||||||
|
curl_setopt($curl, CURLOPT_AUTOREFERER, TRUE );
|
||||||
|
|
||||||
// FeedBurner requires a proper USER-AGENT...
|
// FeedBurner requires a proper USER-AGENT...
|
||||||
curl_setopt($curl, CURL_HTTP_VERSION_1_1, true);
|
curl_setopt($curl, CURL_HTTP_VERSION_1_1, true);
|
||||||
curl_setopt($curl, CURLOPT_ENCODING, "gzip, deflate");
|
curl_setopt($curl, CURLOPT_ENCODING, "gzip, deflate");
|
||||||
@ -46,7 +63,15 @@ function get_external_file($url)
|
|||||||
} else {
|
} else {
|
||||||
|
|
||||||
// create http context and add timeout and user-agent
|
// create http context and add timeout and user-agent
|
||||||
$context = stream_context_create(array('http'=>array('timeout' => $timeout,'header'=> "User-Agent: ".$useragent,/*spoot Mozilla Firefox*/'follow_location' => true)));
|
$context = stream_context_create(array(
|
||||||
|
'http'=>array('timeout' => $timeout,
|
||||||
|
'header'=> "User-Agent: ".$useragent, /*spoot Mozilla Firefox*/
|
||||||
|
'follow_location' => true),
|
||||||
|
// FOR SSL do not verified certificate
|
||||||
|
'ssl' => array('verify_peer' => false,
|
||||||
|
'allow_self_signed' => true)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
// only download page lesser than 4MB
|
// only download page lesser than 4MB
|
||||||
$data = @file_get_contents($url, false, $context, -1, 4000000); // We download at most 4 MB from source.
|
$data = @file_get_contents($url, false, $context, -1, 4000000); // We download at most 4 MB from source.
|
||||||
@ -100,14 +125,26 @@ function prepare_url($url)
|
|||||||
$i=strpos($url,'#xtor=RSS-'); if ($i!==false) $url=substr($url,0,$i);
|
$i=strpos($url,'#xtor=RSS-'); if ($i!==false) $url=substr($url,0,$i);
|
||||||
|
|
||||||
$title = $url;
|
$title = $url;
|
||||||
if (!preg_match('!^https?://!i', $url))
|
|
||||||
$url = 'http://' . $url;
|
|
||||||
|
|
||||||
$html = Encoding::toUTF8(get_external_file($url,15));
|
$html = Encoding::toUTF8(get_external_file($url,15));
|
||||||
|
// If get_external_file if not able to retrieve HTTPS content try the same URL with HTTP protocol
|
||||||
|
if (!preg_match('!^https?://!i', $url) && (!isset($html) || strlen($html) <= 0)) {
|
||||||
|
$url = 'http://' . $url;
|
||||||
|
$html = Encoding::toUTF8(get_external_file($url,15));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (function_exists('tidy_parse_string')) {
|
||||||
|
$tidy = tidy_parse_string($html, array(), 'UTF8');
|
||||||
|
$tidy->cleanRepair();
|
||||||
|
$html = $tidy->value;
|
||||||
|
}
|
||||||
|
|
||||||
if (isset($html) and strlen($html) > 0)
|
if (isset($html) and strlen($html) > 0)
|
||||||
{
|
{
|
||||||
$r = new Readability($html, $url);
|
$r = new Readability($html, $url);
|
||||||
|
|
||||||
$r->convertLinksToFootnotes = CONVERT_LINKS_FOOTNOTES;
|
$r->convertLinksToFootnotes = CONVERT_LINKS_FOOTNOTES;
|
||||||
|
$r->revertForcedParagraphElements = REVERT_FORCED_PARAGRAPH_ELEMENTS;
|
||||||
|
|
||||||
if($r->init())
|
if($r->init())
|
||||||
{
|
{
|
||||||
$content = $r->articleContent->innerHTML;
|
$content = $r->articleContent->innerHTML;
|
||||||
@ -117,7 +154,6 @@ function prepare_url($url)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
logm('error during url preparation');
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -228,20 +264,41 @@ function remove_directory($directory)
|
|||||||
|
|
||||||
function display_view($view, $id = 0, $full_head = 'yes')
|
function display_view($view, $id = 0, $full_head = 'yes')
|
||||||
{
|
{
|
||||||
global $tpl;
|
global $tpl, $store, $msg;
|
||||||
|
|
||||||
switch ($view)
|
switch ($view)
|
||||||
{
|
{
|
||||||
|
case 'export':
|
||||||
|
$entries = $store->retrieveAll();
|
||||||
|
$tpl->assign('export', myTool::renderJson($entries));
|
||||||
|
$tpl->draw('export');
|
||||||
|
logm('export view');
|
||||||
|
break;
|
||||||
|
case 'config':
|
||||||
|
$tpl->assign('load_all_js', 0);
|
||||||
|
$tpl->draw('head');
|
||||||
|
$tpl->draw('home');
|
||||||
|
$tpl->draw('config');
|
||||||
|
$tpl->draw('js');
|
||||||
|
$tpl->draw('footer');
|
||||||
|
logm('config view');
|
||||||
|
break;
|
||||||
case 'view':
|
case 'view':
|
||||||
$entry = get_article($id);
|
$entry = $store->retrieveOneById($id);
|
||||||
|
|
||||||
if ($entry != NULL) {
|
if ($entry != NULL) {
|
||||||
$tpl->assign('id', $entry[0]['id']);
|
$tpl->assign('id', $entry['id']);
|
||||||
$tpl->assign('url', $entry[0]['url']);
|
$tpl->assign('url', $entry['url']);
|
||||||
$tpl->assign('title', $entry[0]['title']);
|
$tpl->assign('title', $entry['title']);
|
||||||
$tpl->assign('content', $entry[0]['content']);
|
$content = $entry['content'];
|
||||||
$tpl->assign('is_fav', $entry[0]['is_fav']);
|
if (function_exists('tidy_parse_string')) {
|
||||||
$tpl->assign('is_read', $entry[0]['is_read']);
|
$tidy = tidy_parse_string($content, array('indent'=>true, 'show-body-only' => true), 'UTF8');
|
||||||
|
$tidy->cleanRepair();
|
||||||
|
$content = $tidy->value;
|
||||||
|
}
|
||||||
|
$tpl->assign('content', $content);
|
||||||
|
$tpl->assign('is_fav', $entry['is_fav']);
|
||||||
|
$tpl->assign('is_read', $entry['is_read']);
|
||||||
$tpl->assign('load_all_js', 0);
|
$tpl->assign('load_all_js', 0);
|
||||||
$tpl->draw('view');
|
$tpl->draw('view');
|
||||||
}
|
}
|
||||||
@ -252,7 +309,7 @@ function display_view($view, $id = 0, $full_head = 'yes')
|
|||||||
logm('view link #' . $id);
|
logm('view link #' . $id);
|
||||||
break;
|
break;
|
||||||
default: # home view
|
default: # home view
|
||||||
$entries = get_entries($view);
|
$entries = $store->getEntriesByView($view);
|
||||||
|
|
||||||
$tpl->assign('entries', $entries);
|
$tpl->assign('entries', $entries);
|
||||||
|
|
||||||
@ -277,7 +334,7 @@ function display_view($view, $id = 0, $full_head = 'yes')
|
|||||||
*/
|
*/
|
||||||
function action_to_do($action, $url, $id = 0)
|
function action_to_do($action, $url, $id = 0)
|
||||||
{
|
{
|
||||||
global $db;
|
global $store, $msg;
|
||||||
|
|
||||||
switch ($action)
|
switch ($action)
|
||||||
{
|
{
|
||||||
@ -285,144 +342,57 @@ function action_to_do($action, $url, $id = 0)
|
|||||||
if ($url == '')
|
if ($url == '')
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if($parametres_url = prepare_url($url)) {
|
if (MyTool::isUrl($url)) {
|
||||||
$sql_action = 'INSERT INTO entries ( url, title, content ) VALUES (?, ?, ?)';
|
if($parametres_url = prepare_url($url)) {
|
||||||
$params_action = array($url, $parametres_url['title'], $parametres_url['content']);
|
if ($store->add($url, $parametres_url['title'], $parametres_url['content'])) {
|
||||||
|
$last_id = $store->getLastId();
|
||||||
|
if (DOWNLOAD_PICTURES) {
|
||||||
|
$content = filtre_picture($parametres_url['content'], $url, $last_id);
|
||||||
|
}
|
||||||
|
$msg->add('s', 'the link has been added successfully');
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$msg->add('e', 'error during insertion : the link wasn\'t added');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$msg->add('e', 'error during url preparation : the link wasn\'t added');
|
||||||
|
logm('error during url preparation');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$msg->add('e', 'error during url preparation : the link is not valid');
|
||||||
|
logm($url . ' is not a valid url');
|
||||||
}
|
}
|
||||||
|
|
||||||
logm('add link ' . $url);
|
logm('add link ' . $url);
|
||||||
break;
|
break;
|
||||||
case 'delete':
|
case 'delete':
|
||||||
remove_directory(ABS_PATH . $id);
|
if ($store->deleteById($id)) {
|
||||||
$sql_action = "DELETE FROM entries WHERE id=?";
|
remove_directory(ABS_PATH . $id);
|
||||||
$params_action = array($id);
|
$msg->add('s', 'the link has been deleted successfully');
|
||||||
logm('delete link #' . $id);
|
logm('delete link #' . $id);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$msg->add('e', 'the link wasn\'t deleted');
|
||||||
|
logm('error : can\'t delete link #' . $id);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case 'toggle_fav' :
|
case 'toggle_fav' :
|
||||||
$sql_action = "UPDATE entries SET is_fav=~is_fav WHERE id=?";
|
$store->favoriteById($id);
|
||||||
$params_action = array($id);
|
|
||||||
logm('mark as favorite link #' . $id);
|
logm('mark as favorite link #' . $id);
|
||||||
break;
|
break;
|
||||||
case 'toggle_archive' :
|
case 'toggle_archive' :
|
||||||
$sql_action = "UPDATE entries SET is_read=~is_read WHERE id=?";
|
$store->archiveById($id);
|
||||||
$params_action = array($id);
|
|
||||||
logm('archive link #' . $id);
|
logm('archive link #' . $id);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
# action query
|
|
||||||
if (isset($sql_action))
|
|
||||||
{
|
|
||||||
$query = $db->getHandle()->prepare($sql_action);
|
|
||||||
$query->execute($params_action);
|
|
||||||
# if we add a link, we have to download pictures
|
|
||||||
if ($action == 'add') {
|
|
||||||
$last_id = $db->getHandle()->lastInsertId();
|
|
||||||
if (DOWNLOAD_PICTURES) {
|
|
||||||
$content = filtre_picture($parametres_url['content'], $url, $last_id);
|
|
||||||
$sql_update = "UPDATE entries SET content=? WHERE id=?";
|
|
||||||
$params_update = array($content, $last_id);
|
|
||||||
$query_update = $db->getHandle()->prepare($sql_update);
|
|
||||||
$query_update->execute($params_update);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch (Exception $e)
|
|
||||||
{
|
|
||||||
logm('action query error : '.$e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Détermine quels liens afficher : home, fav ou archives
|
|
||||||
*/
|
|
||||||
function get_entries($view)
|
|
||||||
{
|
|
||||||
global $db;
|
|
||||||
|
|
||||||
switch ($_SESSION['sort'])
|
|
||||||
{
|
|
||||||
case 'ia':
|
|
||||||
$order = 'ORDER BY id';
|
|
||||||
break;
|
|
||||||
case 'id':
|
|
||||||
$order = 'ORDER BY id DESC';
|
|
||||||
break;
|
|
||||||
case 'ta':
|
|
||||||
$order = 'ORDER BY lower(title)';
|
|
||||||
break;
|
|
||||||
case 'td':
|
|
||||||
$order = 'ORDER BY lower(title) DESC';
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
$order = 'ORDER BY id';
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
switch ($view)
|
|
||||||
{
|
|
||||||
case 'archive':
|
|
||||||
$sql = "SELECT * FROM entries WHERE is_read=? " . $order;
|
|
||||||
$params = array(-1);
|
|
||||||
break;
|
|
||||||
case 'fav' :
|
|
||||||
$sql = "SELECT * FROM entries WHERE is_fav=? " . $order;
|
|
||||||
$params = array(-1);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
$sql = "SELECT * FROM entries WHERE is_read=? " . $order;
|
|
||||||
$params = array(0);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
# view query
|
|
||||||
try
|
|
||||||
{
|
|
||||||
$query = $db->getHandle()->prepare($sql);
|
|
||||||
$query->execute($params);
|
|
||||||
$entries = $query->fetchAll();
|
|
||||||
}
|
|
||||||
catch (Exception $e)
|
|
||||||
{
|
|
||||||
logm('view query error : '.$e->getMessage());
|
|
||||||
}
|
|
||||||
|
|
||||||
return $entries;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Récupère un article en fonction d'un ID
|
|
||||||
*/
|
|
||||||
function get_article($id)
|
|
||||||
{
|
|
||||||
global $db;
|
|
||||||
|
|
||||||
$entry = NULL;
|
|
||||||
$sql = "SELECT * FROM entries WHERE id=?";
|
|
||||||
$params = array(intval($id));
|
|
||||||
|
|
||||||
# view article query
|
|
||||||
try
|
|
||||||
{
|
|
||||||
$query = $db->getHandle()->prepare($sql);
|
|
||||||
$query->execute($params);
|
|
||||||
$entry = $query->fetchAll();
|
|
||||||
}
|
|
||||||
catch (Exception $e)
|
|
||||||
{
|
|
||||||
logm('get article query error : '.$e->getMessage());
|
|
||||||
}
|
|
||||||
|
|
||||||
return $entry;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function logm($message)
|
function logm($message)
|
||||||
{
|
{
|
||||||
$t = strval(date('Y/m/d_H:i:s')).' - '.$_SERVER["REMOTE_ADDR"].' - '.strval($message)."\n";
|
$t = strval(date('Y/m/d_H:i:s')).' - '.$_SERVER["REMOTE_ADDR"].' - '.strval($message)."\n";
|
||||||
file_put_contents('./log.txt',$t,FILE_APPEND);
|
file_put_contents('./log.txt',$t,FILE_APPEND);
|
||||||
}
|
}
|
||||||
|
|||||||
51
inc/store/file.class.php
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* poche, a read it later open source system
|
||||||
|
*
|
||||||
|
* @category poche
|
||||||
|
* @author Nicolas Lœuillet <support@inthepoche.com>
|
||||||
|
* @copyright 2013
|
||||||
|
* @license http://www.wtfpl.net/ see COPYING file
|
||||||
|
*/
|
||||||
|
|
||||||
|
class File extends Store {
|
||||||
|
function __construct() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function add() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function retrieveOneById($id) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function retrieveOneByURL($url) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function deleteById($id) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function favoriteById($id) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function archiveById($id) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getEntriesByView($view) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getLastId() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function updateContentById($id) {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
202
inc/store/sqlite.class.php
Normal file
@ -0,0 +1,202 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* poche, a read it later open source system
|
||||||
|
*
|
||||||
|
* @category poche
|
||||||
|
* @author Nicolas Lœuillet <support@inthepoche.com>
|
||||||
|
* @copyright 2013
|
||||||
|
* @license http://www.wtfpl.net/ see COPYING file
|
||||||
|
*/
|
||||||
|
|
||||||
|
class Sqlite extends Store {
|
||||||
|
|
||||||
|
public static $db_path = 'sqlite:./db/poche.sqlite';
|
||||||
|
var $handle;
|
||||||
|
|
||||||
|
function __construct() {
|
||||||
|
parent::__construct();
|
||||||
|
|
||||||
|
$this->handle = new PDO(self::$db_path);
|
||||||
|
$this->handle->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
|
||||||
|
}
|
||||||
|
|
||||||
|
private function getHandle() {
|
||||||
|
return $this->handle;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function isInstalled() {
|
||||||
|
$sql = "SELECT name FROM sqlite_sequence WHERE name=?";
|
||||||
|
$query = $this->executeQuery($sql, array('config'));
|
||||||
|
$hasConfig = $query->fetchAll();
|
||||||
|
|
||||||
|
if (count($hasConfig) == 0)
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
|
if (!$this->getLogin() || !$this->getPassword())
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function install($login, $password) {
|
||||||
|
$this->getHandle()->exec('CREATE TABLE IF NOT EXISTS "config" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE , "name" VARCHAR UNIQUE, "value" BLOB)');
|
||||||
|
|
||||||
|
$this->handle->exec('CREATE TABLE IF NOT EXISTS "entries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL UNIQUE , "title" VARCHAR, "url" VARCHAR UNIQUE , "is_read" INTEGER DEFAULT 0, "is_fav" INTEGER DEFAULT 0, "content" BLOB)');
|
||||||
|
|
||||||
|
if (!$this->getLogin()) {
|
||||||
|
$sql_login = 'INSERT INTO config ( name, value ) VALUES (?, ?)';
|
||||||
|
$params_login = array('login', $login);
|
||||||
|
$query = $this->executeQuery($sql_login, $params_login);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!$this->getPassword()) {
|
||||||
|
$sql_pass = 'INSERT INTO config ( name, value ) VALUES (?, ?)';
|
||||||
|
$params_pass = array('password', $password);
|
||||||
|
$query = $this->executeQuery($sql_pass, $params_pass);
|
||||||
|
}
|
||||||
|
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getLogin() {
|
||||||
|
$sql = "SELECT value FROM config WHERE name=?";
|
||||||
|
$query = $this->executeQuery($sql, array('login'));
|
||||||
|
$login = $query->fetchAll();
|
||||||
|
|
||||||
|
return isset($login[0]['value']) ? $login[0]['value'] : FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getPassword() {
|
||||||
|
$sql = "SELECT value FROM config WHERE name=?";
|
||||||
|
$query = $this->executeQuery($sql, array('password'));
|
||||||
|
$pass = $query->fetchAll();
|
||||||
|
|
||||||
|
return isset($pass[0]['value']) ? $pass[0]['value'] : FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function updatePassword($password)
|
||||||
|
{
|
||||||
|
$sql_update = "UPDATE config SET value=? WHERE name='password'";
|
||||||
|
$params_update = array($password);
|
||||||
|
$query = $this->executeQuery($sql_update, $params_update);
|
||||||
|
}
|
||||||
|
|
||||||
|
private function executeQuery($sql, $params) {
|
||||||
|
try
|
||||||
|
{
|
||||||
|
$query = $this->getHandle()->prepare($sql);
|
||||||
|
$query->execute($params);
|
||||||
|
return $query;
|
||||||
|
}
|
||||||
|
catch (Exception $e)
|
||||||
|
{
|
||||||
|
logm('execute query error : '.$e->getMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function retrieveAll() {
|
||||||
|
$sql = "SELECT * FROM entries ORDER BY id";
|
||||||
|
$query = $this->executeQuery($sql, array());
|
||||||
|
$entries = $query->fetchAll();
|
||||||
|
|
||||||
|
return $entries;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function retrieveOneById($id) {
|
||||||
|
parent::__construct();
|
||||||
|
|
||||||
|
$entry = NULL;
|
||||||
|
$sql = "SELECT * FROM entries WHERE id=?";
|
||||||
|
$params = array(intval($id));
|
||||||
|
$query = $this->executeQuery($sql, $params);
|
||||||
|
$entry = $query->fetchAll();
|
||||||
|
|
||||||
|
return $entry[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getEntriesByView($view) {
|
||||||
|
parent::__construct();
|
||||||
|
|
||||||
|
switch ($_SESSION['sort'])
|
||||||
|
{
|
||||||
|
case 'ia':
|
||||||
|
$order = 'ORDER BY id';
|
||||||
|
break;
|
||||||
|
case 'id':
|
||||||
|
$order = 'ORDER BY id DESC';
|
||||||
|
break;
|
||||||
|
case 'ta':
|
||||||
|
$order = 'ORDER BY lower(title)';
|
||||||
|
break;
|
||||||
|
case 'td':
|
||||||
|
$order = 'ORDER BY lower(title) DESC';
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
$order = 'ORDER BY id';
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch ($view)
|
||||||
|
{
|
||||||
|
case 'archive':
|
||||||
|
$sql = "SELECT * FROM entries WHERE is_read=? " . $order;
|
||||||
|
$params = array(-1);
|
||||||
|
break;
|
||||||
|
case 'fav' :
|
||||||
|
$sql = "SELECT * FROM entries WHERE is_fav=? " . $order;
|
||||||
|
$params = array(-1);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
$sql = "SELECT * FROM entries WHERE is_read=? " . $order;
|
||||||
|
$params = array(0);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
$query = $this->executeQuery($sql, $params);
|
||||||
|
$entries = $query->fetchAll();
|
||||||
|
|
||||||
|
return $entries;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function add($url, $title, $content) {
|
||||||
|
parent::__construct();
|
||||||
|
$sql_action = 'INSERT INTO entries ( url, title, content ) VALUES (?, ?, ?)';
|
||||||
|
$params_action = array($url, $title, $content);
|
||||||
|
$query = $this->executeQuery($sql_action, $params_action);
|
||||||
|
return $query;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function deleteById($id) {
|
||||||
|
parent::__construct();
|
||||||
|
$sql_action = "DELETE FROM entries WHERE id=?";
|
||||||
|
$params_action = array($id);
|
||||||
|
$query = $this->executeQuery($sql_action, $params_action);
|
||||||
|
return $query;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function favoriteById($id) {
|
||||||
|
parent::__construct();
|
||||||
|
$sql_action = "UPDATE entries SET is_fav=~is_fav WHERE id=?";
|
||||||
|
$params_action = array($id);
|
||||||
|
$query = $this->executeQuery($sql_action, $params_action);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function archiveById($id) {
|
||||||
|
parent::__construct();
|
||||||
|
$sql_action = "UPDATE entries SET is_read=~is_read WHERE id=?";
|
||||||
|
$params_action = array($id);
|
||||||
|
$query = $this->executeQuery($sql_action, $params_action);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getLastId() {
|
||||||
|
parent::__construct();
|
||||||
|
return $this->getHandle()->lastInsertId();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function updateContentById($id) {
|
||||||
|
parent::__construct();
|
||||||
|
$sql_update = "UPDATE entries SET content=? WHERE id=?";
|
||||||
|
$params_update = array($content, $id);
|
||||||
|
$query = $this->executeQuery($sql_update, $params_update);
|
||||||
|
}
|
||||||
|
}
|
||||||
63
inc/store/store.class.php
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* poche, a read it later open source system
|
||||||
|
*
|
||||||
|
* @category poche
|
||||||
|
* @author Nicolas Lœuillet <support@inthepoche.com>
|
||||||
|
* @copyright 2013
|
||||||
|
* @license http://www.wtfpl.net/ see COPYING file
|
||||||
|
*/
|
||||||
|
|
||||||
|
class Store {
|
||||||
|
function __construct() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getLogin() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getPassword() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function add() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function retrieveAll() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function retrieveOneById($id) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function retrieveOneByURL($url) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function deleteById($id) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function favoriteById($id) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function archiveById($id) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getEntriesByView($view) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getLastId() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function updateContentById($id) {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
32
index.php
@ -10,8 +10,8 @@
|
|||||||
|
|
||||||
include dirname(__FILE__).'/inc/config.php';
|
include dirname(__FILE__).'/inc/config.php';
|
||||||
|
|
||||||
# initialize session
|
myTool::initPhp();
|
||||||
Session::init();
|
|
||||||
# XSRF protection with token
|
# XSRF protection with token
|
||||||
if (!empty($_POST)) {
|
if (!empty($_POST)) {
|
||||||
if (!Session::isToken($_POST['token'])) {
|
if (!Session::isToken($_POST['token'])) {
|
||||||
@ -20,11 +20,14 @@ if (!empty($_POST)) {
|
|||||||
unset($_SESSION['tokens']);
|
unset($_SESSION['tokens']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$ref = empty($_SERVER['HTTP_REFERER']) ? '' : $_SERVER['HTTP_REFERER'];
|
||||||
|
|
||||||
if (isset($_GET['login'])) {
|
if (isset($_GET['login'])) {
|
||||||
// Login
|
// Login
|
||||||
if (!empty($_POST['login']) && !empty($_POST['password'])) {
|
if (!empty($_POST['login']) && !empty($_POST['password'])) {
|
||||||
if (Session::login('poche', 'poche', $_POST['login'], $_POST['password'])) {
|
if (Session::login($_SESSION['login'], $_SESSION['pass'], $_POST['login'], encode_string($_POST['password'] . $_POST['login']))) {
|
||||||
logm('login successful');
|
logm('login successful');
|
||||||
|
$msg->add('s', 'welcome in your poche!');
|
||||||
if (!empty($_POST['longlastingsession'])) {
|
if (!empty($_POST['longlastingsession'])) {
|
||||||
$_SESSION['longlastingsession'] = 31536000;
|
$_SESSION['longlastingsession'] = 31536000;
|
||||||
$_SESSION['expires_on'] = time() + $_SESSION['longlastingsession'];
|
$_SESSION['expires_on'] = time() + $_SESSION['longlastingsession'];
|
||||||
@ -34,7 +37,7 @@ if (isset($_GET['login'])) {
|
|||||||
}
|
}
|
||||||
session_regenerate_id(true);
|
session_regenerate_id(true);
|
||||||
|
|
||||||
MyTool::redirect();
|
MyTool::redirect($ref);
|
||||||
}
|
}
|
||||||
logm('login failed');
|
logm('login failed');
|
||||||
die("Login failed !");
|
die("Login failed !");
|
||||||
@ -47,6 +50,22 @@ elseif (isset($_GET['logout'])) {
|
|||||||
Session::logout();
|
Session::logout();
|
||||||
MyTool::redirect();
|
MyTool::redirect();
|
||||||
}
|
}
|
||||||
|
elseif (isset($_GET['config'])) {
|
||||||
|
if (isset($_POST['password']) && isset($_POST['password_repeat'])) {
|
||||||
|
if ($_POST['password'] == $_POST['password_repeat'] && $_POST['password'] != "") {
|
||||||
|
logm('password updated');
|
||||||
|
if (!DEMO) {
|
||||||
|
$store->updatePassword(encode_string($_POST['password'] . $_SESSION['login']));
|
||||||
|
$msg->add('s', 'your password has been updated');
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$msg->add('i', 'in demo mode, you can\'t update password');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
$msg->add('e', 'your password can\'t be empty and you have to repeat it in the second field');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
# Traitement des paramètres et déclenchement des actions
|
# Traitement des paramètres et déclenchement des actions
|
||||||
$view = (isset ($_REQUEST['view'])) ? htmlentities($_REQUEST['view']) : 'index';
|
$view = (isset ($_REQUEST['view'])) ? htmlentities($_REQUEST['view']) : 'index';
|
||||||
@ -55,12 +74,11 @@ $action = (isset ($_REQUEST['action'])) ? htmlentities($_REQUEST['ac
|
|||||||
$_SESSION['sort'] = (isset ($_REQUEST['sort'])) ? htmlentities($_REQUEST['sort']) : 'id';
|
$_SESSION['sort'] = (isset ($_REQUEST['sort'])) ? htmlentities($_REQUEST['sort']) : 'id';
|
||||||
$id = (isset ($_REQUEST['id'])) ? htmlspecialchars($_REQUEST['id']) : '';
|
$id = (isset ($_REQUEST['id'])) ? htmlspecialchars($_REQUEST['id']) : '';
|
||||||
$url = (isset ($_GET['url'])) ? $_GET['url'] : '';
|
$url = (isset ($_GET['url'])) ? $_GET['url'] : '';
|
||||||
$ref = empty($_SERVER['HTTP_REFERER']) ? '' : $_SERVER['HTTP_REFERER'];
|
|
||||||
|
|
||||||
$tpl->assign('isLogged', Session::isLogged());
|
$tpl->assign('isLogged', Session::isLogged());
|
||||||
$tpl->assign('referer', $ref);
|
$tpl->assign('referer', $ref);
|
||||||
$tpl->assign('view', $view);
|
$tpl->assign('view', $view);
|
||||||
$tpl->assign('poche_url', get_poche_url());
|
$tpl->assign('poche_url', myTool::getUrl());
|
||||||
$tpl->assign('title', 'poche, a read it later open source system');
|
$tpl->assign('title', 'poche, a read it later open source system');
|
||||||
|
|
||||||
if (Session::isLogged()) {
|
if (Session::isLogged()) {
|
||||||
@ -69,4 +87,4 @@ if (Session::isLogged()) {
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$tpl->draw('login');
|
$tpl->draw('login');
|
||||||
}
|
}
|
||||||
|
|||||||
31
js/poche.js
@ -23,8 +23,35 @@ function toggle_archive(element, id, view_article) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function sort_links(view, sort) {
|
function sort_links(view, sort) {
|
||||||
//$('#content').load('index.php', { view: view, sort: sort, full_head: 'no' } );
|
|
||||||
$.get('index.php', { view: view, sort: sort, full_head: 'no' }, function(data) {
|
$.get('index.php', { view: view, sort: sort, full_head: 'no' }, function(data) {
|
||||||
$('#content').html(data);
|
$('#content').html(data);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ---------- Swith light or dark view
|
||||||
|
function setActiveStyleSheet(title) {
|
||||||
|
var i, a, main;
|
||||||
|
for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
|
||||||
|
if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title")) {
|
||||||
|
a.disabled = true;
|
||||||
|
if(a.getAttribute("title") == title) a.disabled = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$('#themeswitch').click(function() {
|
||||||
|
// we want the dark
|
||||||
|
if ($('body').hasClass('light-style')) {
|
||||||
|
setActiveStyleSheet('dark-style');
|
||||||
|
$('body').addClass('dark-style');
|
||||||
|
$('body').removeClass('light-style');
|
||||||
|
$('#themeswitch').text('light');
|
||||||
|
// we want the light
|
||||||
|
} else if ($('body').hasClass('dark-style')) {
|
||||||
|
setActiveStyleSheet('light-style');
|
||||||
|
$('body').addClass('light-style');
|
||||||
|
$('body').removeClass('dark-style');
|
||||||
|
$('#themeswitch').text('dark');
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
|||||||
27
tpl/config.html
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
<div id="content">
|
||||||
|
<h2>Bookmarklet</h2>
|
||||||
|
<p>Thanks to the bookmarklet, you will be able to easily add a link to your poche. If you don't know how use a bookmarklet, <a href="http://support.mozilla.org/en-US/kb/bookmarklets-perform-common-web-page-tasks">have a look here</a>.</p>
|
||||||
|
<p>Drag & drop this link to your bookmarks bar and have fun with poche.</p>
|
||||||
|
<p><a style="cursor: move; border: 1px dashed grey; background: white;" title="i am a bookmarklet, use me !" href="javascript:(function(){var%20url%20=%20location.href%20||%20url;window.open('{$poche_url}?action=add&url='%20+%20encodeURIComponent(url),'_self');})();">poche it !</a></p>
|
||||||
|
|
||||||
|
<h2>Password</h2>
|
||||||
|
<form method="post" action="?config" name="loginform">
|
||||||
|
<fieldset class="w500p">
|
||||||
|
<div class="row">
|
||||||
|
<label class="col w150p" for="password">New password</label>
|
||||||
|
<input class="col" type="password" id="password" name="password" placeholder="Password" tabindex="2">
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<label class="col w150p" for="password_repeat">Repeat your new password</label>
|
||||||
|
<input class="col" type="password" id="password_repeat" name="password_repeat" placeholder="Password" tabindex="3">
|
||||||
|
</div>
|
||||||
|
<div class="row mts txtcenter">
|
||||||
|
<button class="bouton" type="submit" tabindex="4">Update</button>
|
||||||
|
</div>
|
||||||
|
</fieldset>
|
||||||
|
<input type="hidden" name="returnurl" value="<?php echo htmlspecialchars($referer);?>">
|
||||||
|
<input type="hidden" name="token" value="<?php echo Session::getToken(); ?>">
|
||||||
|
</form>
|
||||||
|
<h2>Export</h2>
|
||||||
|
<p><a href="?view=export" target="_blank">Click here</a> to export your poche datas.</p>
|
||||||
|
</div>
|
||||||
@ -1,3 +1,4 @@
|
|||||||
|
<div id="content">
|
||||||
{loop="entries"}
|
{loop="entries"}
|
||||||
<div id="entry-{$value.id}" class="entrie mb2">
|
<div id="entry-{$value.id}" class="entrie mb2">
|
||||||
<span class="content">
|
<span class="content">
|
||||||
@ -13,4 +14,5 @@
|
|||||||
</div>
|
</div>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
{/loop}
|
{/loop}
|
||||||
|
</div>
|
||||||
1
tpl/export.html
Normal file
@ -0,0 +1 @@
|
|||||||
|
export {$export}
|
||||||
@ -1,6 +1,4 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer class="mr2 mt3 smaller">
|
<footer class="mr2 mt3 smaller">
|
||||||
<p>powered by <a href="http://inthepoche.com">poche</a><br />follow us on <a href="https://twitter.com/getpoche" title="follow us on twitter">twitter</a></p>
|
<p>powered by <a href="http://inthepoche.com">poche</a><br />follow us on <a href="https://twitter.com/getpoche" title="follow us on twitter">twitter</a></p>
|
||||||
</footer>
|
</footer>
|
||||||
|
|||||||
@ -15,9 +15,8 @@
|
|||||||
<link rel="apple-touch-icon-precomposed" href="./img/apple-touch-icon-precomposed.png">
|
<link rel="apple-touch-icon-precomposed" href="./img/apple-touch-icon-precomposed.png">
|
||||||
<link rel="stylesheet" href="./css/knacss.css" media="all">
|
<link rel="stylesheet" href="./css/knacss.css" media="all">
|
||||||
<link rel="stylesheet" href="./css/style.css" media="all">
|
<link rel="stylesheet" href="./css/style.css" media="all">
|
||||||
</head>
|
<!-- Light Theme -->
|
||||||
<body>
|
<link rel="stylesheet" href="./css/style-light.css" media="all" title="light-style">
|
||||||
<header>
|
<!-- Dark Theme -->
|
||||||
<h1><img src="./img/logo.png" alt="logo poche" />poche</h1>
|
<link rel="alternate stylesheet" href="./css/style-dark.css" media="all" title="dark-style">
|
||||||
</header>
|
</head>
|
||||||
<div id="main">
|
|
||||||
@ -1,12 +1,19 @@
|
|||||||
|
<body class="light-style">
|
||||||
|
<header>
|
||||||
|
<h1><a href="index.php"><img src="./img/logo.png" alt="logo poche" /></a>poche</h1>
|
||||||
|
</header>
|
||||||
|
<div id="main">
|
||||||
<ul id="links">
|
<ul id="links">
|
||||||
<li><a href="index.php" {if="$view == 'index'"}class="current"{/if}>home</a></li>
|
<li><a href="index.php" {if="$view == 'index'"}class="current"{/if}>home</a></li>
|
||||||
<li><a href="?view=fav" {if="$view == 'fav'"}class="current"{/if}>favorites</a></li>
|
<li><a href="?view=fav" {if="$view == 'fav'"}class="current"{/if}>favorites</a></li>
|
||||||
<li><a href="?view=archive" {if="$view == 'archive'"}class="current"{/if}>archive</a></li>
|
<li><a href="?view=archive" {if="$view == 'archive'"}class="current"{/if}>archive</a></li>
|
||||||
<li><a style="cursor: move" title="i am a bookmarklet, use me !" href="javascript:(function(){var%20url%20=%20location.href%20||%20url;window.open('{$poche_url}?action=add&url='%20+%20encodeURIComponent(url),'_self');})();">poche it !</a></li>
|
<li><a href="?view=config" {if="$view == 'config'"}class="current"{/if}>config</a></li>
|
||||||
<li><a href="?logout" title="Logout">logout</a></li>
|
<li><a href="?logout" title="Logout">logout</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
{if condition="isset($entries)"}
|
||||||
<ul id="sort">
|
<ul id="sort">
|
||||||
<li><img src="img/up.png" onclick="sort_links('{$view}', 'ia');" title="by date asc" /> by date <img src="img/down.png" onclick="sort_links('{$view}', 'id');" title="by date desc" /></li>
|
<li><img src="img/up.png" onclick="sort_links('{$view}', 'ia');" title="by date asc" /> by date <img src="img/down.png" onclick="sort_links('{$view}', 'id');" title="by date desc" /></li>
|
||||||
<li><img src="img/up.png" onclick="sort_links('{$view}', 'ta');" title="by title asc" /> by title <img src="img/down.png" onclick="sort_links('{$view}', 'td');" title="by title desc" /></li>
|
<li><img src="img/up.png" onclick="sort_links('{$view}', 'ta');" title="by title asc" /> by title <img src="img/down.png" onclick="sort_links('{$view}', 'td');" title="by title desc" /></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div id="content">
|
{/if}
|
||||||
|
{include="messages"}
|
||||||
30
tpl/install.html
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{include="head"}
|
||||||
|
<body class="light-style">
|
||||||
|
<header>
|
||||||
|
<h1><a href="index.php"><img src="./img/logo.png" alt="logo poche" /></a>poche</h1>
|
||||||
|
</header>
|
||||||
|
<div id="main">
|
||||||
|
<form method="post" action="?install" name="loginform">
|
||||||
|
<fieldset class="w500p center">
|
||||||
|
<h2 class="mbs txtcenter">install your poche</h2>
|
||||||
|
<div class="row">
|
||||||
|
<label class="col w150p" for="login">Login</label>
|
||||||
|
<input class="col" type="text" id="login" name="login" placeholder="Login" tabindex="1" autofocus />
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<label class="col w150p" for="password">Password</label>
|
||||||
|
<input class="col" type="password" id="password" name="password" placeholder="Password" tabindex="2">
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<label class="col w150p" for="password_repeat">Repeat your password</label>
|
||||||
|
<input class="col" type="password" id="password_repeat" name="password_repeat" placeholder="Password" tabindex="3">
|
||||||
|
</div>
|
||||||
|
<div class="row mts txtcenter">
|
||||||
|
<button class="bouton" type="submit" tabindex="4">Install</button>
|
||||||
|
</div>
|
||||||
|
</fieldset>
|
||||||
|
<input type="hidden" name="returnurl" value="<?php echo htmlspecialchars($referer);?>">
|
||||||
|
<input type="hidden" name="token" value="<?php echo Session::getToken(); ?>">
|
||||||
|
</form>
|
||||||
|
|
||||||
|
{include="footer"}
|
||||||
@ -1,23 +1,33 @@
|
|||||||
{include="head"}
|
{include="head"}
|
||||||
|
<body class="light-style">
|
||||||
|
<header>
|
||||||
|
<h1><a href="index.php"><img src="./img/logo.png" alt="logo poche" /></a>poche</h1>
|
||||||
|
</header>
|
||||||
|
<div id="main">
|
||||||
<form method="post" action="?login" name="loginform">
|
<form method="post" action="?login" name="loginform">
|
||||||
<fieldset>
|
<fieldset class="w500p center">
|
||||||
<h2>login to your poche</h2>
|
<h2 class="mbs txtcenter">login to your poche</h2>
|
||||||
<ul id="login">
|
<div class="row">
|
||||||
<li>
|
<label class="col w150p" for="login">Login</label>
|
||||||
<label for="login">Login</label> <input type="text" id="login" name="login" placeholder="Login" tabindex="1">
|
<input class="col" type="text" id="login" name="login" placeholder="Login" tabindex="1" autofocus />
|
||||||
</li>
|
</div>
|
||||||
<li>
|
<div class="row">
|
||||||
<label for="password">Password</label> <input type="password" id="password" name="password" placeholder="Password" tabindex="2">
|
<label class="col w150p" for="password">Password</label>
|
||||||
</li>
|
<input class="col" type="password" id="password" name="password" placeholder="Password" tabindex="2">
|
||||||
<li>
|
</div>
|
||||||
<label><input type="checkbox" name="longlastingsession" tabindex="3"> Stay signed in (Do not check on public computers)</label>
|
<div class="row">
|
||||||
</li>
|
<label class="col w150p">Stay signed in</label>
|
||||||
<li>
|
<div class="col">
|
||||||
<button type="submit" tabindex="4">Sign in</button>
|
<input type="checkbox" name="longlastingsession" tabindex="3">
|
||||||
</li>
|
<small class="inbl">(Do not check on public computers)</small>
|
||||||
</ul>
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row mts txtcenter">
|
||||||
|
<button class="bouton" type="submit" tabindex="4">Sign in</button>
|
||||||
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<input type="hidden" name="returnurl" value="<?php echo htmlspecialchars($referer);?>">
|
<input type="hidden" name="returnurl" value="<?php echo htmlspecialchars($referer);?>">
|
||||||
<input type="hidden" name="token" value="<?php echo Session::getToken(); ?>">
|
<input type="hidden" name="token" value="<?php echo Session::getToken(); ?>">
|
||||||
</form>
|
</form>
|
||||||
{include="footer"}
|
|
||||||
|
{include="footer"}
|
||||||
|
|||||||
1
tpl/messages.html
Normal file
@ -0,0 +1 @@
|
|||||||
|
<div id="messages"><?php echo $msg->display(); ?></div>
|
||||||
@ -15,8 +15,12 @@
|
|||||||
<link rel="apple-touch-icon-precomposed" href="./img/apple-touch-icon-precomposed.png">
|
<link rel="apple-touch-icon-precomposed" href="./img/apple-touch-icon-precomposed.png">
|
||||||
<link rel="stylesheet" href="./css/knacss.css" media="all">
|
<link rel="stylesheet" href="./css/knacss.css" media="all">
|
||||||
<link rel="stylesheet" href="./css/style.css" media="all">
|
<link rel="stylesheet" href="./css/style.css" media="all">
|
||||||
|
<!-- Light Theme -->
|
||||||
|
<link rel="stylesheet" href="./css/style-light.css" media="all" title="light-style">
|
||||||
|
<!-- Dark Theme -->
|
||||||
|
<link rel="alternate stylesheet" href="./css/style-dark.css" media="all" title="dark-style">
|
||||||
</head>
|
</head>
|
||||||
<body class="article">
|
<body class="article light-style">
|
||||||
<div id="article" class="w600p">
|
<div id="article" class="w600p">
|
||||||
<div class="backhome">
|
<div class="backhome">
|
||||||
<a href="index.php" title="back to home">←</a>
|
<a href="index.php" title="back to home">←</a>
|
||||||
@ -24,6 +28,7 @@
|
|||||||
<div class="tools">
|
<div class="tools">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a title="toggle mark as read" class="tool archive {if="$is_read == '0'"}archive-off{/if}" onclick="toggle_archive(this, {$id})"><span></span></a></li>
|
<li><a title="toggle mark as read" class="tool archive {if="$is_read == '0'"}archive-off{/if}" onclick="toggle_archive(this, {$id})"><span></span></a></li>
|
||||||
|
<li><a href="#" id="themeswitch">dark</a></li>
|
||||||
<li><a title="toggle favorite" class="tool fav {if="$is_fav == '0'"}fav-off{/if}" onclick="toggle_favorite(this, {$id})"><span></span></a></li>
|
<li><a title="toggle favorite" class="tool fav {if="$is_fav == '0'"}fav-off{/if}" onclick="toggle_favorite(this, {$id})"><span></span></a></li>
|
||||||
<li><form method="post" onsubmit="return confirm('Are you sure?')" style="display: inline;" action="index.php"><input type="hidden" name="token" id="token" value="<?php echo Session::getToken(); ?>" /><input type="hidden" id="view" name="view" value="index" /><input type="hidden" id="action" name="action" value="delete" /><input type="hidden" id="id" name="id" value="{$id}" /><input type="submit" class="delete" title="toggle delete" /></form></li>
|
<li><form method="post" onsubmit="return confirm('Are you sure?')" style="display: inline;" action="index.php"><input type="hidden" name="token" id="token" value="<?php echo Session::getToken(); ?>" /><input type="hidden" id="view" name="view" value="index" /><input type="hidden" id="action" name="action" value="delete" /><input type="hidden" id="id" name="id" value="{$id}" /><input type="submit" class="delete" title="toggle delete" /></form></li>
|
||||||
<li><a href="?logout" title="Logout">logout</a></li>
|
<li><a href="?logout" title="Logout">logout</a></li>
|
||||||
@ -33,6 +38,7 @@
|
|||||||
<h1><a href="{$url}">{$title}</a></h1>
|
<h1><a href="{$url}">{$title}</a></h1>
|
||||||
<div class="vieworiginal txtright small"><a href="{$url}" target="_blank" title="original : {$title}">view original</a></div>
|
<div class="vieworiginal txtright small"><a href="{$url}" target="_blank" title="original : {$title}">view original</a></div>
|
||||||
</header>
|
</header>
|
||||||
|
{include="messages"}
|
||||||
<article>
|
<article>
|
||||||
<div id="readityourselfcontent">
|
<div id="readityourselfcontent">
|
||||||
{$content}
|
{$content}
|
||||||
@ -42,13 +48,6 @@
|
|||||||
<div class="backhome">
|
<div class="backhome">
|
||||||
<a href="index.php" title="back to home">←</a>
|
<a href="index.php" title="back to home">←</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
|
||||||
{include="js"}
|
{include="js"}
|
||||||
|
{include="footer"}
|
||||||
<footer class="mr2 mt3 smaller">
|
|
||||||
<p>powered by <a href="http://inthepoche.com">poche</a><br />follow us on <a href="https://twitter.com/getpoche" title="follow us on twitter">twitter</a></p>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||