mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-14 15:02:51 +03:00
Last missing bit of Popen
This commit is contained in:
parent
62c3663df3
commit
c7f2cbd85b
1 changed files with 22 additions and 20 deletions
|
@ -25,9 +25,10 @@ import traceback
|
|||
import glob
|
||||
from optparse import OptionParser
|
||||
import paramiko
|
||||
import common, metadata
|
||||
import socket
|
||||
import subprocess
|
||||
|
||||
import common, metadata
|
||||
from common import FDroidPopen
|
||||
|
||||
def carbon_send(key, value):
|
||||
s = socket.socket()
|
||||
|
@ -121,12 +122,13 @@ def main():
|
|||
for logfile in glob.glob(os.path.join(logsdir,'access-*.log.gz')):
|
||||
if options.verbose:
|
||||
print '...' + logfile
|
||||
p = subprocess.Popen(["zcat", logfile], stdout = subprocess.PIPE)
|
||||
p = FDroidPopen(["zcat", logfile])
|
||||
matches = (logsearch(line) for line in p.stdout)
|
||||
for match in matches:
|
||||
if match and match.group('statuscode') == '200':
|
||||
uri = match.group('uri')
|
||||
if uri.endswith('.apk'):
|
||||
if not uri.endswith('.apk'):
|
||||
continue
|
||||
_, apkname = os.path.split(uri)
|
||||
app = knownapks.getapp(apkname)
|
||||
if app:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue