]> git.ipfire.org Git - people/jschlag/pbs.git/blame - src/buildservice/mirrors.py
Fix rendering mirrors page
[people/jschlag/pbs.git] / src / buildservice / mirrors.py
CommitLineData
f6e6ff79
MT
1#!/usr/bin/python
2
c660ff59 3import datetime
f6e6ff79
MT
4import logging
5import math
6import socket
c660ff59
MT
7import time
8import tornado.httpclient
9import urlparse
f6e6ff79 10
2c909128
MT
11from . import base
12from . import logs
f6e6ff79 13
c660ff59
MT
14log = logging.getLogger("mirrors")
15log.propagate = 1
16
d3e7a9fb 17from .decorators import lazy_property
f6e6ff79
MT
18
19class Mirrors(base.Object):
c660ff59
MT
20 def __iter__(self):
21 res = self.db.query("SELECT * FROM mirrors \
22 WHERE deleted IS FALSE ORDER BY hostname")
f6e6ff79 23
c660ff59
MT
24 mirrors = []
25 for row in res:
26 mirror = Mirror(self.backend, row.id, data=row)
f6e6ff79
MT
27 mirrors.append(mirror)
28
c660ff59 29 return iter(mirrors)
f6e6ff79 30
c660ff59
MT
31 def _get_mirror(self, query, *args):
32 res = self.db.get(query, *args)
33
34 if res:
35 return Mirror(self.backend, res.id, data=res)
f6e6ff79 36
c660ff59
MT
37 def create(self, hostname, path="", owner=None, contact=None, user=None):
38 mirror = self._get_mirror("INSERT INTO mirrors(hostname, path, owner, contact) \
39 VALUES(%s, %s, %s, %s) RETURNING *", hostname, path, owner, contact)
f6e6ff79 40
c660ff59
MT
41 # Log creation
42 mirror.log("created", user=user)
f6e6ff79 43
c660ff59 44 return mirror
f6e6ff79
MT
45
46 def get_random(self, limit=None):
47 query = "SELECT id FROM mirrors WHERE status = 'enabled' ORDER BY RAND()"
48 args = []
49
50 if limit:
51 query += " LIMIT %s"
52 args.append(limit)
53
54 mirrors = []
55 for mirror in self.db.query(query, *args):
56 mirror = Mirror(self.pakfire, mirror.id)
57 mirrors.append(mirror)
58
59 return mirrors
60
61 def get_by_id(self, id):
c660ff59 62 return self._get_mirror("SELECT * FROM mirrors WHERE id = %s", id)
f6e6ff79
MT
63
64 def get_by_hostname(self, hostname):
c660ff59
MT
65 return self._get_mirror("SELECT * FROM mirrors \
66 WHERE hostname = %s AND deleted IS FALSE", hostname)
f6e6ff79 67
c660ff59
MT
68 def get_for_location(self, address):
69 country_code = self.backend.geoip.guess_from_address(address)
f6e6ff79 70
d3e7a9fb
MT
71 # Cannot return any good mirrors if location is unknown
72 if not country_code:
73 return []
f6e6ff79
MT
74
75 mirrors = []
f6e6ff79 76
d3e7a9fb 77 # Walk through all mirrors
07ee26ad 78 for mirror in self:
d3e7a9fb
MT
79 if mirror.country_code == country_code:
80 mirrors.append(mirror)
f6e6ff79 81
d3e7a9fb 82 # XXX needs to search for nearby countries
f6e6ff79
MT
83
84 return mirrors
85
86 def get_history(self, limit=None, offset=None, mirror=None, user=None):
87 query = "SELECT * FROM mirrors_history"
88 args = []
89
90 conditions = []
91
92 if mirror:
93 conditions.append("mirror_id = %s")
94 args.append(mirror.id)
95
96 if user:
97 conditions.append("user_id = %s")
98 args.append(user.id)
99
100 if conditions:
101 query += " WHERE %s" % " AND ".join(conditions)
102
103 query += " ORDER BY time DESC"
104
105 if limit:
106 if offset:
107 query += " LIMIT %s,%s"
108 args += [offset, limit,]
109 else:
110 query += " LIMIT %s"
111 args += [limit,]
112
113 entries = []
114 for entry in self.db.query(query, *args):
115 entry = logs.MirrorLogEntry(self.pakfire, entry)
116 entries.append(entry)
117
118 return entries
119
c660ff59
MT
120 def check(self, **kwargs):
121 """
122 Runs the mirror check for all mirrors
123 """
124 for mirror in self:
125 with self.db.transaction():
126 mirror.check(**kwargs)
f6e6ff79 127
f6e6ff79 128
c660ff59
MT
129class Mirror(base.DataObject):
130 table = "mirrors"
f6e6ff79 131
c660ff59
MT
132 def __eq__(self, other):
133 if isinstance(other, self.__class__):
134 return self.id == other.id
f6e6ff79
MT
135
136 def log(self, action, user=None):
137 user_id = None
138 if user:
139 user_id = user.id
140
141 self.db.execute("INSERT INTO mirrors_history(mirror_id, action, user_id, time) \
142 VALUES(%s, %s, %s, NOW())", self.id, action, user_id)
143
f6e6ff79 144 def set_hostname(self, hostname):
c660ff59 145 self._set_attribute("hostname", hostname)
f6e6ff79
MT
146
147 hostname = property(lambda self: self.data.hostname, set_hostname)
148
149 @property
150 def path(self):
151 return self.data.path
152
153 def set_path(self, path):
c660ff59 154 self._set_attribute("path", path)
f6e6ff79
MT
155
156 path = property(lambda self: self.data.path, set_path)
157
158 @property
159 def url(self):
c660ff59 160 return self.make_url()
f6e6ff79 161
c660ff59
MT
162 def make_url(self, path=""):
163 url = "http://%s%s" % (self.hostname, self.path)
f6e6ff79 164
c660ff59
MT
165 if path.startswith("/"):
166 path = path[1:]
f6e6ff79 167
c660ff59 168 return urlparse.urljoin(url, path)
f6e6ff79 169
c660ff59
MT
170 def set_owner(self, owner):
171 self._set_attribute("owner", owner)
f6e6ff79 172
c660ff59 173 owner = property(lambda self: self.data.owner or "", set_owner)
f6e6ff79 174
c660ff59
MT
175 def set_contact(self, contact):
176 self._set_attribute("contact", contact)
f6e6ff79 177
c660ff59 178 contact = property(lambda self: self.data.contact or "", set_contact)
f6e6ff79 179
c660ff59
MT
180 def check(self, connect_timeout=10, request_timeout=10):
181 log.info("Running mirror check for %s" % self.hostname)
f6e6ff79 182
c660ff59 183 client = tornado.httpclient.HTTPClient()
f6e6ff79 184
c660ff59
MT
185 # Get URL for .timestamp
186 url = self.make_url(".timestamp")
187 log.debug(" Fetching %s..." % url)
f6e6ff79 188
c660ff59
MT
189 # Record start time
190 time_start = time.time()
f6e6ff79 191
c660ff59
MT
192 http_status = None
193 last_sync_at = None
194 status = "OK"
f6e6ff79 195
c660ff59 196 # XXX needs to catch connection resets, DNS errors, etc.
f6e6ff79 197
c660ff59
MT
198 try:
199 response = client.fetch(url,
200 connect_timeout=connect_timeout,
201 request_timeout=request_timeout)
f6e6ff79 202
c660ff59
MT
203 # We expect the response to be an integer
204 # which holds the timestamp of the last sync
205 # in seconds since epoch UTC
206 try:
207 timestamp = int(response.body)
208 except ValueError:
209 raise
210
211 # Convert to datetime
212 last_sync_at = datetime.datetime.utcfromtimestamp(timestamp)
213
214 # Must have synced within 24 hours
215 now = datetime.datetime.utcnow()
216 if now - last_sync_at >= datetime.timedelta(hours=24):
217 status = "OUTOFSYNC"
218
219 except tornado.httpclient.HTTPError as e:
220 http_status = e.code
221 status = "ERROR"
222
223 finally:
224 response_time = time.time() - time_start
225
226 # Log check
227 self.db.execute("INSERT INTO mirrors_checks(mirror_id, response_time, \
228 http_status, last_sync_at, status) VALUES(%s, %s, %s, %s, %s)",
229 self.id, response_time, http_status, last_sync_at, status)
230
231 @lazy_property
232 def last_check(self):
233 res = self.db.get("SELECT * FROM mirrors_checks \
234 WHERE mirror_id = %s ORDER BY timestamp DESC LIMIT 1", self.id)
235
236 return res
f6e6ff79
MT
237
238 @property
c660ff59
MT
239 def status(self):
240 if self.last_check:
241 return self.last_check.status
f6e6ff79
MT
242
243 @property
c660ff59
MT
244 def average_response_time(self):
245 res = self.db.get("SELECT AVG(response_time) AS response_time \
246 FROM mirrors_checks WHERE mirror_id = %s \
247 AND timestamp >= NOW() - '24 hours'::interval", self.id)
248
249 return res.response_time
f6e6ff79
MT
250
251 @property
252 def address(self):
253 return socket.gethostbyname(self.hostname)
254
d3e7a9fb 255 @lazy_property
f6e6ff79 256 def country_code(self):
d3e7a9fb 257 return self.backend.geoip.guess_from_address(self.address) or "UNKNOWN"
f6e6ff79
MT
258
259 def get_history(self, *args, **kwargs):
260 kwargs["mirror"] = self
261
262 return self.pakfire.mirrors.get_history(*args, **kwargs)