浏览代码

Merge pull request #50 from pointhi/results

Showing publish Date of articles in search results
Adam Tauber 11 年前
父节点
当前提交
1467a2e0fc

+ 9
- 0
searx/engines/google_news.py 查看文件

@@ -2,6 +2,7 @@
2 2
 
3 3
 from urllib import urlencode
4 4
 from json import loads
5
+from datetime import datetime, timedelta
5 6
 
6 7
 categories = ['news']
7 8
 
@@ -31,7 +32,15 @@ def response(resp):
31 32
         return []
32 33
 
33 34
     for result in search_res['responseData']['results']:
35
+# S.149 (159), library.pdf
36
+# datetime.strptime("Mon, 10 Mar 2014 16:26:15 -0700", "%a, %d %b %Y %H:%M:%S %z")
37
+#        publishedDate = parse(result['publishedDate'])
38
+        publishedDate = datetime.strptime(str.join(' ',result['publishedDate'].split(None)[0:5]), "%a, %d %b %Y %H:%M:%S")
39
+        #utc_offset = timedelta(result['publishedDate'].split(None)[5])  # local = utc + offset
40
+        #publishedDate = publishedDate + utc_offset
41
+
34 42
         results.append({'url': result['unescapedUrl'],
35 43
                         'title': result['titleNoFormatting'],
44
+						'publishedDate': publishedDate,
36 45
                         'content': result['content']})
37 46
     return results

+ 19
- 1
searx/engines/yahoo_news.py 查看文件

@@ -4,6 +4,8 @@ from urllib import urlencode
4 4
 from lxml import html
5 5
 from searx.engines.xpath import extract_text, extract_url
6 6
 from searx.engines.yahoo import parse_url
7
+from datetime import datetime, timedelta
8
+import re
7 9
 
8 10
 categories = ['news']
9 11
 search_url = 'http://news.search.yahoo.com/search?{query}&b={offset}'
@@ -11,6 +13,7 @@ results_xpath = '//div[@class="res"]'
11 13
 url_xpath = './/h3/a/@href'
12 14
 title_xpath = './/h3/a'
13 15
 content_xpath = './/div[@class="abstr"]'
16
+publishedDate_xpath = './/span[@class="timestamp"]'
14 17
 suggestion_xpath = '//div[@id="satat"]//a'
15 18
 
16 19
 paging = True
@@ -37,7 +40,22 @@ def response(resp):
37 40
         url = parse_url(extract_url(result.xpath(url_xpath), search_url))
38 41
         title = extract_text(result.xpath(title_xpath)[0])
39 42
         content = extract_text(result.xpath(content_xpath)[0])
40
-        results.append({'url': url, 'title': title, 'content': content})
43
+        publishedDate = extract_text(result.xpath(publishedDate_xpath)[0])
44
+
45
+        if re.match("^[0-9]+ minute(s|) ago$", publishedDate):
46
+            publishedDate = datetime.now() - timedelta(minutes=int(re.match(r'\d+', publishedDate).group()))
47
+        else:
48
+            if re.match("^[0-9]+ hour(s|), [0-9]+ minute(s|) ago$", publishedDate):
49
+                timeNumbers = re.findall(r'\d+', publishedDate)
50
+                publishedDate = datetime.now() - timedelta(hours=int(timeNumbers[0])) - timedelta(minutes=int(timeNumbers[1]))
51
+            else:
52
+                # TODO year in string possible?
53
+                publishedDate = datetime.strptime(publishedDate,"%b %d %H:%M%p")
54
+
55
+        if publishedDate.year == 1900:
56
+            publishedDate = publishedDate.replace(year=datetime.now().year)
57
+
58
+        results.append({'url': url, 'title': title, 'content': content,'publishedDate':publishedDate})
41 59
 
42 60
     if not suggestion_xpath:
43 61
         return results

+ 1
- 0
searx/static/css/style.css 查看文件

@@ -35,6 +35,7 @@ a{text-decoration:none;color:#1a11be}a:visited{color:#8e44ad}
35 35
 .result h3{font-size:1em;word-wrap:break-word;margin:5px 0 1px 0;padding:0}
36 36
 .result .content{font-size:.8em;margin:0;padding:0;max-width:54em;word-wrap:break-word;line-height:1.24}
37 37
 .result .url{font-size:.8em;margin:3px 0 0 0;padding:0;max-width:54em;word-wrap:break-word;color:#c0392b}
38
+.result .published_date{font-size:.8em;color:#888;margin:5px 20px}
38 39
 .engines{color:#888}
39 40
 .small_font{font-size:.8em}
40 41
 .small p{margin:2px 0}

+ 3
- 0
searx/static/less/definitions.less 查看文件

@@ -64,6 +64,9 @@
64 64
 // Url to result
65 65
 @color-result-url-font: #C0392B;
66 66
 
67
+// Publish Date
68
+@color-result-publishdate-font: #888;
69
+
67 70
 // Images
68 71
 @color-result-image-span-background-hover: rgba(0, 0, 0, 0.6);
69 72
 @color-result-image-span-font: #FFF;

+ 6
- 0
searx/static/less/style.less 查看文件

@@ -248,6 +248,12 @@ a {
248 248
 		word-wrap:break-word;
249 249
 		color: @color-result-url-font;
250 250
 	}
251
+
252
+	.published_date {
253
+		font-size: 0.8em;
254
+		color: @color-result-publishdate-font;
255
+    	margin: 5px 20px;
256
+	}
251 257
 }
252 258
 
253 259
 .engines {

+ 1
- 0
searx/templates/result_templates/default.html 查看文件

@@ -6,6 +6,7 @@
6 6
 
7 7
   <div>
8 8
     <h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3>
9
+	{% if result.publishedDate %}<p class="published_date">{{ result.publishedDate }}</p>{% endif %}
9 10
     <p class="content">{% if result.content %}{{ result.content|safe }}<br />{% endif %}</p>
10 11
     <p class="url">{{ result.pretty_url }}</p>
11 12
   </div>

+ 8
- 0
searx/translations/en/LC_MESSAGES/messages.po 查看文件

@@ -37,6 +37,14 @@ msgstr ""
37 37
 msgid "Errors"
38 38
 msgstr ""
39 39
 
40
+#: searx/webapp.py:167
41
+msgid "{minutes} minute(s) ago"
42
+msgstr ""
43
+
44
+#: searx/webapp.py:169
45
+msgid "{hours} hour(s), {minutes} minute(s) ago"
46
+msgstr ""
47
+
40 48
 #: searx/templates/index.html:7
41 49
 msgid "about"
42 50
 msgstr ""

+ 15
- 1
searx/webapp.py 查看文件

@@ -26,12 +26,13 @@ import json
26 26
 import cStringIO
27 27
 import os
28 28
 
29
+from datetime import datetime, timedelta
29 30
 from itertools import chain
30 31
 from flask import (
31 32
     Flask, request, render_template, url_for, Response, make_response,
32 33
     redirect, send_from_directory
33 34
 )
34
-from flask.ext.babel import Babel
35
+from flask.ext.babel import Babel, gettext, ngettext, format_date
35 36
 from searx import settings, searx_dir
36 37
 from searx.engines import (
37 38
     search as do_search, categories, engines, get_engines_stats,
@@ -156,6 +157,19 @@ def index():
156 157
             if engine in favicons:
157 158
                 result['favicon'] = engine
158 159
 
160
+        # TODO, check if timezone is calculated right
161
+        if 'publishedDate' in result:
162
+            if result['publishedDate'] >= datetime.now() - timedelta(days=1):
163
+                timedifference = datetime.now() - result['publishedDate']
164
+                minutes = int((timedifference.seconds/60)%60)
165
+                hours = int(timedifference.seconds/60/60)
166
+                if hours == 0:
167
+                    result['publishedDate'] = gettext(u'{minutes} minute(s) ago').format(minutes=minutes)
168
+                else:
169
+                    result['publishedDate'] = gettext(u'{hours} hour(s), {minutes} minute(s) ago').format(hours=hours, minutes=minutes)
170
+            else:
171
+                result['publishedDate'] = format_date(result['publishedDate'])
172
+
159 173
     if search.request_data.get('format') == 'json':
160 174
         return Response(json.dumps({'query': search.query,
161 175
                                     'results': search.results}),