forked from gotbletu/shownotes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package_comments.py
executable file
·264 lines (205 loc) · 8.12 KB
/
package_comments.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
#!/usr/bin/env python
# video demo at: http://www.youtube.com/watch?v=m6wfVxMTedY
#
# -*- coding: utf-8 -*-
#
# Package Comments 0.1
# Copyright 2011 Mladen Mijatov <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
#
"""
This script is used to get comments and ratings for specified package
from Ubuntu software center. Please note that not all packages have comments!
"""
import os
import sys
import json
import time
import urllib2
import textwrap
from threading import Thread
from argparse import ArgumentParser
class PackageComments:
NAME = 'Package Comments'
VERSION = '0.2'
LOCALE = 'en'
BASE_URL = 'http://reviews.ubuntu.com/reviews/api/1.0/reviews/filter/{0}/ubuntu/{1}/any/{2}/page/{3}'
TIME_FORMAT = '%Y-%m-%d %H:%M:%S'
def __init__(self):
self.arguments = None
self.output_file = None
self.terminal_size = (25, 80)
self.padding = 11
self.__line_counter = 0
def __parse_arguments(self):
"""Parse command line arguments and configure application accordingly"""
parser = ArgumentParser(description=self.NAME)
# add arguments
parser.add_argument('package', help='Package name to get comments for.')
parser.add_argument('-v', action='version', version=self.VERSION, help='Print script version and exit.')
parser.add_argument('-q', action='store_true', dest='quiet', help='Operate in quiet mode. Print only data.')
parser.add_argument('-r', dest='release', default='oneiric', help='Specify Ubuntu release name [natty, oneiric, ..].')
parser.add_argument('-o', dest='output_file', help='Save output to a file.')
parser.add_argument('-s', action='store_true', dest='simple', help='Make output simple.')
parser.add_argument('-t', action='store_true', dest='show_timestamp', help='Show timestamp in output.')
parser.add_argument('-g', action='store_true', dest='show_version', help='Show package version in output.')
parser.add_argument('-k', action='store', dest='column', default='id', help='Sort items by column [rating, age, id, user].')
parser.add_argument('-d', action='store_true', dest='sort_descending', help='Sort data in descending order.')
parser.add_argument('-p', action='store_true', dest='pause_display', help='Display one screen at a time. Pause after reaching end of the screen.')
# parse arguments
self.arguments = parser.parse_args()
def __compare_function(self, item1, item2):
"""Compare two items"""
result = 0
if self.arguments.column == 'rating':
# compare by rating
result = cmp(item1['rating'], item2['rating'])
elif self.arguments.column == 'age':
# compare by time stamp
time1 = time.strptime(item1['date_created'], self.TIME_FORMAT)
time2 = time.strptime(item2['date_created'], self.TIME_FORMAT)
result = cmp(time1, time2)
elif self.arguments.column == 'user':
# compare by user name
result = cmp(item1['reviewer_username'], item2['reviewer_username'])
else:
result = cmp(item1['id'], item2['id'])
return result
def __get_review_page(self, page=1):
"""Get user reviews on specified page"""
url = self.BASE_URL.format(
self.LOCALE,
self.arguments.release,
self.arguments.package,
page
)
# get reviews for specified page
socket = urllib2.urlopen(url)
data = socket.read()
socket.close()
# parse results
result = json.loads(data)
return result
def __get_reviews(self, page=1):
"""Get reviews, parse them and return dictionary list"""
result = []
if not self.arguments.quiet:
print 'Downloading user reviews:'
# get first page of reviews
current_page = 1
reviews = self.__get_review_page(current_page)
if len(reviews) > 0:
# package exists and there are some comments
# try to load others
while len(reviews) > 0:
# add reviews to the result list
result.extend(reviews)
# notify user
if not self.arguments.quiet:
print " page {0}: {1}".format(current_page, len(reviews))
# try to get next page
current_page += 1
reviews = self.__get_review_page(current_page)
# sort items
result.sort(self.__compare_function, reverse=self.arguments.sort_descending)
return result
def __print_line(self, text):
"""Printe preformated text to file or screen"""
if self.output_file is None:
# pause if needed
if self.arguments.pause_display:
self.__line_counter += text.count('\n') + 1
# pause if we are printing on the last line in the screen
if self.__line_counter >= self.terminal_size[0]:
self.__line_counter = 0
raw_input('Press return to continue...')
# print text on screen
print text
else:
# write text to opened text file
self.output_file.write(text + '\n')
def __print_review(self, review):
"""Print review to screen or save it to file"""
# fix unicode characters
for key, value in review.iteritems():
review[key] = unicode(value).encode('utf-8')
# format user name
if review.has_key('reviewer_displayname'):
user = '{0} ({1})'.format(review['reviewer_displayname'], review['reviewer_username'])
else:
user = review['reviewer_username']
# print header
if not self.arguments.simple:
# print header with all details
text = '{0}{1} id: {2} rating: {3} origin: {4}'.format(
'user:'.ljust(self.padding),
user.ljust(40),
review['id'].ljust(10),
review['rating'].ljust(3),
review['origin'],
)
self.__print_line(text)
else:
# print short header
self.__print_line('{0}{1} / {2}'.format('user:'.ljust(self.padding), user, review['rating']))
# print time stamp
if self.arguments.show_timestamp:
self.__print_line('{0}{1}'.format('timestamp:'.ljust(self.padding), review['date_created']))
# print package version
if self.arguments.show_version:
self.__print_line('{0}{1}'.format('version:'.ljust(self.padding), review['version']))
# print summary
if not self.arguments.simple:
self.__print_line('{0}{1}'.format('summary:'.ljust(self.padding), review['summary']))
# print review text
text = textwrap.wrap(review['review_text'], self.terminal_size[1] - self.padding)
text = '\n'.join(map(lambda line: ' ' * self.padding + line, text)).lstrip()
self.__print_line('{0}{1}\n'.format('review:'.ljust(self.padding), text))
def __get_terminal_size(self):
"""Get terminal window size"""
return os.popen('stty size', 'r').read().split()
def run(self):
"""Parse arguments and run application"""
self.__parse_arguments()
# get terminal size
self.terminal_size = map(lambda x: int(x), self.__get_terminal_size())
# print basic information
if not self.arguments.quiet:
print '{0} {1}'.format(self.NAME, self.VERSION)
print 'Copyright (c) 2011. by MeanEYE.rcf\n'
print 'Release: {0}'.format(self.arguments.release)
print 'Package: {0}\n'.format(self.arguments.package)
# get reviews
reviews = self.__get_reviews()
if not self.arguments.quiet:
print 'Got total of {0} user reviews!'.format(len(reviews))
# open file if needed
if self.arguments.output_file is not None:
try:
self.output_file = open(self.arguments.output_file, 'w+')
except:
print 'Error opening specified file: {0}'.format(self.arguments.output_file)
sys.exit(1)
# show or save all reviews
map(self.__print_review, reviews)
# close file if open
if self.output_file is not None:
self.output_file.close()
if __name__ == '__main__':
application = PackageComments()
application.run()