]> git.ipfire.org Git - people/jschlag/pbs.git/blob - src/buildservice/mirrors.py
Fix rendering mirrors page
[people/jschlag/pbs.git] / src / buildservice / mirrors.py
1 #!/usr/bin/python
2
3 import datetime
4 import logging
5 import math
6 import socket
7 import time
8 import tornado.httpclient
9 import urlparse
10
11 from . import base
12 from . import logs
13
14 log = logging.getLogger("mirrors")
15 log.propagate = 1
16
17 from .decorators import lazy_property
18
19 class Mirrors(base.Object):
20 def __iter__(self):
21 res = self.db.query("SELECT * FROM mirrors \
22 WHERE deleted IS FALSE ORDER BY hostname")
23
24 mirrors = []
25 for row in res:
26 mirror = Mirror(self.backend, row.id, data=row)
27 mirrors.append(mirror)
28
29 return iter(mirrors)
30
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)
36
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)
40
41 # Log creation
42 mirror.log("created", user=user)
43
44 return mirror
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):
62 return self._get_mirror("SELECT * FROM mirrors WHERE id = %s", id)
63
64 def get_by_hostname(self, hostname):
65 return self._get_mirror("SELECT * FROM mirrors \
66 WHERE hostname = %s AND deleted IS FALSE", hostname)
67
68 def get_for_location(self, address):
69 country_code = self.backend.geoip.guess_from_address(address)
70
71 # Cannot return any good mirrors if location is unknown
72 if not country_code:
73 return []
74
75 mirrors = []
76
77 # Walk through all mirrors
78 for mirror in self:
79 if mirror.country_code == country_code:
80 mirrors.append(mirror)
81
82 # XXX needs to search for nearby countries
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
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)
127
128
129 class Mirror(base.DataObject):
130 table = "mirrors"
131
132 def __eq__(self, other):
133 if isinstance(other, self.__class__):
134 return self.id == other.id
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
144 def set_hostname(self, hostname):
145 self._set_attribute("hostname", hostname)
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):
154 self._set_attribute("path", path)
155
156 path = property(lambda self: self.data.path, set_path)
157
158 @property
159 def url(self):
160 return self.make_url()
161
162 def make_url(self, path=""):
163 url = "http://%s%s" % (self.hostname, self.path)
164
165 if path.startswith("/"):
166 path = path[1:]
167
168 return urlparse.urljoin(url, path)
169
170 def set_owner(self, owner):
171 self._set_attribute("owner", owner)
172
173 owner = property(lambda self: self.data.owner or "", set_owner)
174
175 def set_contact(self, contact):
176 self._set_attribute("contact", contact)
177
178 contact = property(lambda self: self.data.contact or "", set_contact)
179
180 def check(self, connect_timeout=10, request_timeout=10):
181 log.info("Running mirror check for %s" % self.hostname)
182
183 client = tornado.httpclient.HTTPClient()
184
185 # Get URL for .timestamp
186 url = self.make_url(".timestamp")
187 log.debug(" Fetching %s..." % url)
188
189 # Record start time
190 time_start = time.time()
191
192 http_status = None
193 last_sync_at = None
194 status = "OK"
195
196 # XXX needs to catch connection resets, DNS errors, etc.
197
198 try:
199 response = client.fetch(url,
200 connect_timeout=connect_timeout,
201 request_timeout=request_timeout)
202
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
237
238 @property
239 def status(self):
240 if self.last_check:
241 return self.last_check.status
242
243 @property
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
250
251 @property
252 def address(self):
253 return socket.gethostbyname(self.hostname)
254
255 @lazy_property
256 def country_code(self):
257 return self.backend.geoip.guess_from_address(self.address) or "UNKNOWN"
258
259 def get_history(self, *args, **kwargs):
260 kwargs["mirror"] = self
261
262 return self.pakfire.mirrors.get_history(*args, **kwargs)