chiark / gitweb /
Apply some autopep8-python2 suggestions
[fdroidserver.git] / fdroidserver / lint.py
1 #!/usr/bin/env python2
2 # -*- coding: utf-8 -*-
3 #
4 # lint.py - part of the FDroid server tool
5 # Copyright (C) 2013-2014 Daniel Martí <mvdan@mvdan.cc>
6 #
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU Affero General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See th
15 # GNU Affero General Public License for more details.
16 #
17 # You should have received a copy of the GNU Affero General Public Licen
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20 from optparse import OptionParser
21 import re
22 import logging
23 import common
24 import metadata
25 from collections import Counter
26
27 config = None
28 options = None
29
30 regex_warnings = {
31     'Web Site': [
32         (re.compile(r'.*[^sS]://github\.com/.*'),
33          "github URLs should always use https:// not http://"),
34         (re.compile(r'.*[^sS]://code\.google\.com/.*'),
35          "code.google.com URLs should always use https:// not http://"),
36     ],
37     'Source Code': [
38         (re.compile(r'.*[^sS]://github\.com/.*'),
39          "github URLs should always use https:// (not http://, git://, or git@)"),
40         (re.compile(r'.*code\.google\.com/p/[^/]+[/]*$'),
41          "/source is missing"),
42         (re.compile(r'.*[^sS]://code\.google\.com/.*'),
43          "code.google.com URLs should always use https:// not http://"),
44         (re.compile(r'.*[^sS]://dl\.google\.com/.*'),
45          "dl.google.com URLs should always use https:// not http://"),
46         (re.compile(r'.*[^sS]://gitorious\.org/.*'),
47          "gitorious URLs should always use https:// (not http://, git://, or git@)"),
48     ],
49     'Repo': [
50         (re.compile(r'.*[^sS]://code\.google\.com/.*'),
51          "code.google.com URLs should always use https:// not http://"),
52         (re.compile(r'.*[^sS]://dl\.google\.com/.*'),
53          "dl.google.com URLs should always use https:// not http://"),
54         (re.compile(r'.*[^sS]://github\.com/.*'),
55          "github URLs should always use https:// (not http://, git://, or git@)"),
56         (re.compile(r'.*[^sS]://gitorious\.org/.*'),
57          "gitorious URLs should always use https:// (not http://, git://, or git@)"),
58         (re.compile(r'.*[^sS]://[^.]*\.googlecode\.com/svn/?.*'),
59          "Google Code SVN URLs should always use https:// (not http:// or svn://)"),
60         (re.compile(r'.*[^sS]://svn\.apache\.org/repos/?.*'),
61          "Apache SVN URLs should always use https:// (not http:// or svn://)"),
62         (re.compile(r'.*[^sS]://svn\.code\.sf\.net/.*'),
63          "Sourceforge SVN URLs should always use https:// (not http:// or svn://)"),
64     ],
65     'Issue Tracker': [
66         (re.compile(r'.*code\.google\.com/p/[^/]+[/]*$'),
67          "/issues is missing"),
68         (re.compile(r'.*[^sS]://code\.google\.com/.*'),
69          "code.google.com URLs should always use https:// not http://"),
70         (re.compile(r'.*github\.com/[^/]+/[^/]+[/]*$'),
71          "/issues is missing"),
72         (re.compile(r'.*[^sS]://github\.com/.*'),
73          "github URLs should always use https:// not http://"),
74         (re.compile(r'.*[^sS]://gitorious\.org/.*'),
75          "gitorious URLs should always use https:// not http://"),
76     ],
77     'License': [
78         (re.compile(r'^(|None|Unknown)$'),
79          "No license specified"),
80     ],
81     'Summary': [
82         (re.compile(r'^$'),
83          "Summary yet to be filled"),
84     ],
85     'Description': [
86         (re.compile(r'^No description available$'),
87          "Description yet to be filled"),
88         (re.compile(r'\s*[*#][^ .]'),
89          "Invalid bulleted list"),
90         (re.compile(r'^\s'),
91          "Unnecessary leading space"),
92         (re.compile(r'.*\s$'),
93          "Unnecessary trailing space"),
94     ],
95 }
96
97 regex_pedantic = {
98     'Web Site': [
99         (re.compile(r'.*github\.com/[^/]+/[^/]+\.git'),
100          "Appending .git is not necessary"),
101         (re.compile(r'.*code\.google\.com/p/[^/]+/[^w]'),
102          "Possible incorrect path appended to google code project site"),
103     ],
104     'Source Code': [
105         (re.compile(r'.*github\.com/[^/]+/[^/]+\.git'),
106          "Appending .git is not necessary"),
107         (re.compile(r'.*code\.google\.com/p/[^/]+/source/.*'),
108          "/source is often enough on its own"),
109     ],
110     'Repo': [
111         (re.compile(r'^http://.*'),
112          "use https:// if available"),
113         (re.compile(r'^svn://.*'),
114          "use https:// if available"),
115     ],
116     'Issue Tracker': [
117         (re.compile(r'.*code\.google\.com/p/[^/]+/issues/.*'),
118          "/issues is often enough on its own"),
119         (re.compile(r'.*github\.com/[^/]+/[^/]+/issues/.*'),
120          "/issues is often enough on its own"),
121     ],
122     'Summary': [
123         (re.compile(r'.*\b(free software|open source)\b.*', re.IGNORECASE),
124          "No need to specify that the app is Free Software"),
125         (re.compile(r'.*[a-z0-9][.,!?][ $]'),
126          "Punctuation should be avoided"),
127     ],
128 }
129
130
131 def main():
132
133     global config, options, curid, count
134     curid = None
135
136     count = Counter()
137
138     def warn(message):
139         global curid, count
140         if curid:
141             print "%s:" % curid
142             curid = None
143             count['app'] += 1
144         print '    %s' % message
145         count['warn'] += 1
146
147     def pwarn(message):
148         if options.pedantic:
149             warn(message)
150
151     # Parse command line...
152     parser = OptionParser(usage="Usage: %prog [options] [APPID [APPID ...]]")
153     parser.add_option("-v", "--verbose", action="store_true", default=False,
154                       help="Spew out even more information than normal")
155     parser.add_option("-q", "--quiet", action="store_true", default=False,
156                       help="Restrict output to warnings and errors")
157     parser.add_option("-p", "--pedantic", action="store_true", default=False,
158                       help="Show pedantic warnings that might give false positives")
159     (options, args) = parser.parse_args()
160
161     config = common.read_config(options)
162
163     # Get all apps...
164     allapps = metadata.read_metadata(xref=False)
165     apps = common.read_app_args(args, allapps, False)
166
167     for appid, app in apps.iteritems():
168         if app['Disabled']:
169             continue
170
171         curid = appid
172         count['app_total'] += 1
173
174         curbuild = None
175         for build in app['builds']:
176             if not curbuild or int(build['vercode']) > int(curbuild['vercode']):
177                 curbuild = build
178
179         # Potentially incorrect UCM
180         if (curbuild and curbuild['commit']
181                 and app['Update Check Mode'] == 'RepoManifest' and
182                 any(s in curbuild['commit'] for s in '.,_-/')):
183             pwarn("Last used commit '%s' looks like a tag, but Update Check Mode is '%s'" % (
184                 curbuild['commit'], app['Update Check Mode']))
185
186         # Dangerous auto updates
187         if curbuild and app['Auto Update Mode'] != 'None':
188             for flag in ['target', 'srclibs', 'scanignore']:
189                 if curbuild[flag]:
190                     pwarn("Auto Update Mode is enabled but '%s' is manually set at '%s'" % (flag, curbuild[flag]))
191
192         # Summary size limit
193         summ_chars = len(app['Summary'])
194         if summ_chars > config['char_limits']['Summary']:
195             warn("Summary of length %s is over the %i char limit" % (
196                 summ_chars, config['char_limits']['Summary']))
197
198         # Redundant info
199         if app['Web Site'] and app['Source Code']:
200             if app['Web Site'].lower() == app['Source Code'].lower():
201                 warn("Website '%s' is just the app's source code link" % app['Web Site'])
202                 app['Web Site'] = ''
203
204         name = app['Name'] or app['Auto Name']
205         if app['Summary'] and name:
206             if app['Summary'].lower() == name.lower():
207                 warn("Summary '%s' is just the app's name" % app['Summary'])
208
209         if app['Summary'] and app['Description'] and len(app['Description']) == 1:
210             if app['Summary'].lower() == app['Description'][0].lower():
211                 warn("Description '%s' is just the app's summary" % app['Summary'])
212
213         # Description size limit
214         desc_chars = sum(len(l) for l in app['Description'])
215         if desc_chars > config['char_limits']['Description']:
216             warn("Description of length %s is over the %i char limit" % (
217                 desc_chars, config['char_limits']['Description']))
218
219         # Regex checks in all kinds of fields
220         for f in regex_warnings:
221             for m, r in regex_warnings[f]:
222                 t = metadata.metafieldtype(f)
223                 if t == 'string':
224                     if m.match(app[f]):
225                         warn("%s '%s': %s" % (f, app[f], r))
226                 elif t == 'multiline':
227                     for l in app[f]:
228                         if m.match(l):
229                             warn("%s at line '%s': %s" % (f, l, r))
230
231         # Regex pedantic checks in all kinds of fields
232         if options.pedantic:
233             for f in regex_pedantic:
234                 for m, r in regex_pedantic[f]:
235                     if m.match(app[f]):
236                         warn("%s '%s': %s" % (f, app[f], r))
237
238         # Build warnings
239         for build in app['builds']:
240             if build['disable']:
241                 continue
242             for s in ['master', 'origin', 'HEAD', 'default', 'trunk']:
243                 if build['commit'] and build['commit'].startswith(s):
244                     warn("Branch '%s' used as commit in build '%s'" % (
245                         s, build['version']))
246                 for srclib in build['srclibs']:
247                     ref = srclib.split('@')[1].split('/')[0]
248                     if ref.startswith(s):
249                         warn("Branch '%s' used as commit in srclib '%s'" % (
250                             s, srclib))
251             for s in ['git clone', 'git svn clone', 'svn checkout', 'svn co', 'hg clone']:
252                 for flag in ['init', 'prebuild', 'build']:
253                     if not build[flag]:
254                         continue
255                     if s in build[flag]:
256                         # TODO: This should not be pedantic!
257                         pwarn("'%s' used in %s '%s'" % (s, flag, build[flag]))
258
259         if not curid:
260             print
261
262     logging.info("Found a total of %i warnings in %i apps out of %i total." % (
263         count['warn'], count['app'], count['app_total']))
264
265 if __name__ == "__main__":
266     main()