]> git.immae.eu Git - github/wallabag/wallabag.git/blob - index.php
modif css
[github/wallabag/wallabag.git] / index.php
1 <?php
2 /**
3 * poche, a read it later open source system
4 *
5 * @category poche
6 * @author Nicolas LÅ“uillet <nicolas@loeuillet.org>
7 * @copyright 2013
8 * @license http://www.wtfpl.net/ see COPYING file
9 */
10
11 include dirname(__FILE__).'/inc/config.php';
12 $db = new db(DB_PATH);
13
14 $action = (isset ($_GET['action'])) ? htmlspecialchars($_GET['action']) : '';
15 $view = (isset ($_GET['view'])) ? htmlspecialchars($_GET['view']) : '';
16 $id = (isset ($_GET['id'])) ? htmlspecialchars($_GET['id']) : '';
17
18 switch ($action)
19 {
20 case 'add':
21 $url = (isset ($_GET['url'])) ? $_GET['url'] : '';
22 if ($url == '')
23 continue;
24
25 $url = html_entity_decode(trim($url));
26
27 // We remove the annoying parameters added by FeedBurner and GoogleFeedProxy (?utm_source=...)
28 // from shaarli, by sebsauvage
29 $i=strpos($url,'&utm_source='); if ($i!==false) $url=substr($url,0,$i);
30 $i=strpos($url,'?utm_source='); if ($i!==false) $url=substr($url,0,$i);
31 $i=strpos($url,'#xtor=RSS-'); if ($i!==false) $url=substr($url,0,$i);
32
33 $title = $url;
34 if (!preg_match('!^https?://!i', $url))
35 $url = 'http://' . $url;
36
37 $html = Encoding::toUTF8(get_external_file($url,15));
38 if (isset($html) and strlen($html) > 0)
39 {
40 $r = new Readability($html, $url);
41 if($r->init())
42 {
43 $title = $r->articleTitle->innerHTML;
44 }
45 }
46
47 $query = $db->getHandle()->prepare('INSERT INTO entries ( url, title ) VALUES (?, ?)');
48 $query->execute(array($url, $title));
49 break;
50 case 'delete':
51 $sql_action = "DELETE FROM entries WHERE id=?";
52 $params_action = array($id);
53 break;
54 default:
55 break;
56 }
57
58 try
59 {
60 # action query
61 if (isset($sql_action))
62 {
63 $query = $db->getHandle()->prepare($sql_action);
64 $query->execute($params_action);
65 }
66 }
67 catch (Exception $e)
68 {
69 die('query error : '.$e->getMessage());
70 }
71
72 switch ($view)
73 {
74 case 'archive':
75 $sql = "SELECT * FROM entries WHERE is_read=? ORDER BY id desc";
76 $params = array(-1);
77 break;
78 case 'fav' :
79 $sql = "SELECT * FROM entries WHERE is_fav=? ORDER BY id desc";
80 $params = array(-1);
81 break;
82 default:
83 $sql = "SELECT * FROM entries WHERE is_read=? ORDER BY id desc";
84 $params = array(0);
85 $view = 'index';
86 break;
87 }
88
89 # view query
90 try
91 {
92 $query = $db->getHandle()->prepare($sql);
93 $query->execute($params);
94 $entries = $query->fetchAll();
95 }
96 catch (Exception $e)
97 {
98 die('query error : '.$e->getMessage());
99 }
100
101 ?>
102 <!DOCTYPE html>
103 <!--[if lte IE 6]> <html class="no-js ie6 ie67 ie678" lang="en"> <![endif]-->
104 <!--[if lte IE 7]> <html class="no-js ie7 ie67 ie678" lang="en"> <![endif]-->
105 <!--[if IE 8]> <html class="no-js ie8 ie678" lang="en"> <![endif]-->
106 <!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
107 <html>
108 <head>
109 <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0">
110 <meta charset="utf-8">
111 <meta http-equiv="X-UA-Compatible" content="IE=10">
112 <title>poche, a read it later open source system</title>
113 <link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico" />
114 <link rel="apple-touch-icon-precomposed" sizes="144x144" href="img/apple-touch-icon-144x144-precomposed.png">
115 <link rel="apple-touch-icon-precomposed" sizes="72x72" href="img/apple-touch-icon-72x72-precomposed.png">
116 <link rel="apple-touch-icon-precomposed" href="img/apple-touch-icon-precomposed.png">
117 <link rel="stylesheet" href="css/knacss.css" media="all">
118 <link rel="stylesheet" href="css/style.css" media="all">
119 </head>
120 <body>
121 <header>
122 <h1><img src="img/logo.png" alt="logo poche" />poche</h1>
123 </header>
124 <div id="main">
125 <ul id="links">
126 <li><a href="index.php" <?php echo (($view == 'index') ? 'class="current"' : ''); ?>>home</a></li>
127 <li><a href="?view=fav" <?php echo (($view == 'fav') ? 'class="current"' : ''); ?>>favorites</a></li>
128 <li><a href="?view=archive" <?php echo (($view == 'archive') ? 'class="current"' : ''); ?>>archive</a></li>
129 <li><a style="cursor: move" title="i am a bookmarklet, use me !" href="javascript:(function(){var%20url%20=%20location.href;var%20title%20=%20document.title%20||%20url;window.open('<?php echo url()?>?action=add&url='%20+%20encodeURIComponent(url),'_self');})();">poche it !</a></li>
130 </ul>
131 <div id="content">
132 <ul id="entries">
133 <?php
134 $i = 1;
135 foreach ($entries as $entry)
136 {
137 ?>
138 <li id="entry-<?php echo $entry['id']; ?>" class="entrie mb2">
139 <span class="content">
140 <h2 class="h6-like">
141 <a href="readityourself.php?url=<?php echo urlencode($entry['url']); ?>"><?php echo $entry['title']; ?>
142 </h2>
143 <div class="tools">
144 <a title="toggle mark as read" class="tool archive <?php echo ( ($entry['is_read'] == '0') ? 'archive-off' : '' ); ?>" onclick="toggle_archive(<?php echo $entry['id']; ?>)"><span></span></a>
145 <a title="toggle favorite" class="tool fav <?php echo ( ($entry['is_fav'] == '0') ? 'fav-off' : '' ); ?>" onclick="toggle_favorite(this, <?php echo $entry['id']; ?>)"><span></span></a>
146 <a href="?action=delete&id=<?php echo $entry['id']; ?>" title="toggle delete" onclick="return confirm('Are you sure?')" class="tool delete"><span></span></a>
147 </div>
148 </span>
149 </li>
150 <?php
151 $i++;
152 }
153 ?>
154 </ul>
155 </div>
156 </div>
157 <footer class="mr2 mt3 smaller">
158 <p><a href="http://github.com/nicosomb/poche">poche</a> is a read it later open source system, based on <a href="http://www.memiks.fr/readityourself/">ReadItYourself</a>.<br />
159 Follow us on <a href="https://twitter.com/getpoche" title="follow us on twitter">@getpoche</a>.</<br />
160 Logo by <a href="http://www.iconfinder.com/icondetails/43256/128/jeans_monotone_pocket_icon">Brightmix</a>.<br />
161 poche is developed by <a href="http://nicolas.loeuillet.org">Nicolas LÅ“uillet</a> under the <a href="http://www.wtfpl.net/">WTFPL</a>.</p>
162 </footer>
163 <script type="text/javascript" src="js/jquery-1.9.1.min.js"></script>
164 <script type="text/javascript" src="js/poche.js"></script>
165 </body>
166 </html>