mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-14 23:12:46 +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
|
import glob
|
||||||
from optparse import OptionParser
|
from optparse import OptionParser
|
||||||
import paramiko
|
import paramiko
|
||||||
import common, metadata
|
|
||||||
import socket
|
import socket
|
||||||
import subprocess
|
|
||||||
|
import common, metadata
|
||||||
|
from common import FDroidPopen
|
||||||
|
|
||||||
def carbon_send(key, value):
|
def carbon_send(key, value):
|
||||||
s = socket.socket()
|
s = socket.socket()
|
||||||
|
@ -121,12 +122,13 @@ def main():
|
||||||
for logfile in glob.glob(os.path.join(logsdir,'access-*.log.gz')):
|
for logfile in glob.glob(os.path.join(logsdir,'access-*.log.gz')):
|
||||||
if options.verbose:
|
if options.verbose:
|
||||||
print '...' + logfile
|
print '...' + logfile
|
||||||
p = subprocess.Popen(["zcat", logfile], stdout = subprocess.PIPE)
|
p = FDroidPopen(["zcat", logfile])
|
||||||
matches = (logsearch(line) for line in p.stdout)
|
matches = (logsearch(line) for line in p.stdout)
|
||||||
for match in matches:
|
for match in matches:
|
||||||
if match and match.group('statuscode') == '200':
|
if match and match.group('statuscode') == '200':
|
||||||
uri = match.group('uri')
|
uri = match.group('uri')
|
||||||
if uri.endswith('.apk'):
|
if not uri.endswith('.apk'):
|
||||||
|
continue
|
||||||
_, apkname = os.path.split(uri)
|
_, apkname = os.path.split(uri)
|
||||||
app = knownapks.getapp(apkname)
|
app = knownapks.getapp(apkname)
|
||||||
if app:
|
if app:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue