summaryrefslogtreecommitdiff
path: root/morph-cache-server
blob: 938ecb1f1a7a590f1ca5638e3699f28b4b7b2905 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
#!/usr/bin/env python
#
# Copyright (C) 2013-2015 Codethink Limited
# 
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License along
# with this program.  If not, see <http://www.gnu.org/licenses/>.


import base64
import cliapp
import json
import logging
import os
import urllib
import urllib2
import shutil

from bottle import Bottle, request, response, run, static_file
from flup.server.fcgi import WSGIServer
from morphcacheserver.repocache import RepoCache
from morphlib.artifactcachereference import ArtifactCacheReference
from morphlib.ostreeartifactcache import OSTreeArtifactCache
from morphlib.remoteartifactcache import RemoteArtifactCache


defaults = {
    'repo-dir': '/var/cache/morph-cache-server/gits',
    'bundle-dir': '/var/cache/morph-cache-server/bundles',
    'artifact-dir': '/var/cache/morph-cache-server/artifacts',
    'port': 8080,
    'ostree-port': 12324,
    'ostree-repo-mode': 'archive_z2',
}


class MorphCacheServer(cliapp.Application):

    def add_settings(self):
        self.settings.integer(['port'],
                              'port to listen on',
                              metavar='PORTNUM',
                              default=defaults['port'])
        self.settings.integer(['ostree-port'],
                              'port for accessing the ostree repo for '
                              'the artifact cache',
                              default=defaults['ostree-port'])
        self.settings.string(['port-file'],
                              'write port number to FILE',
                              metavar='FILE',
                              default='')
        self.settings.string(['repo-dir'],
                             'path to the repository cache directory',
                             metavar='PATH',
                             default=defaults['repo-dir'])
        self.settings.string(['bundle-dir'],
                             'path to the bundle cache directory',
                             metavar='PATH',
                             default=defaults['bundle-dir'])
        self.settings.string(['artifact-dir'],
                             'path to the artifact cache directory',
                             metavar='PATH',
                             default=defaults['artifact-dir'])
        self.settings.string(['ostree-repo-mode'],
                             'mode of the ostree artifact cache - either '
                             'archive_z2 or bare, for servers and users '
                             'respectively.',
                             default=defaults['ostree-repo-mode'])
        self.settings.boolean(['direct-mode'],
                              'cache directories are directly managed')
        self.settings.boolean(['enable-writes'],
                              'enable the write methods (fetch and delete)')
        self.settings.boolean(['fcgi-server'],
                              'runs a fcgi-server',
                              default=True)

    def _fetch_artifacts(self, server, cacheid, artifacts):
        ret = {}
        cache = OSTreeArtifactCache(self.settings['artifact-dir'],
                                    mode=self.settings['ostree-repo-mode'])
        remote = RemoteArtifactCache('http://%s/' % server)
        try:
            for artifact in artifacts:
                logging.debug('%s.%s' % (cacheid, artifact))
                cache_artifact = ArtifactCacheReference(
                    '.'.join((cacheid, artifact)))
                cache.copy_from_remote(cache_artifact, remote)
        except Exception, e:
            logging.debug('OSTree raised an Exception: %s' % e)
            raise
        return ret


    def process_args(self, args):
        app = Bottle()

        repo_cache = RepoCache(self,
                               self.settings['repo-dir'],
                               self.settings['bundle-dir'],
                               self.settings['direct-mode'])

        def writable(prefix):
            """Selectively enable bottle prefixes.

            prefix -- The path prefix we are enabling

            If the runtime configuration setting --enable-writes is provided
            then we return the app.get() decorator for the given path prefix
            otherwise we return a lambda which passes the function through
            undecorated.

            This has the effect of being a runtime-enablable @app.get(...)

            """
            if self.settings['enable-writes']:
                return app.get(prefix)
            return lambda fn: fn

        @writable('/list')
        def list():
            response.set_header('Cache-Control', 'no-cache')
            results = {}
            files = {}
            results["files"] = files
            for artifactdir, __, filenames in \
                    os.walk(self.settings['artifact-dir']):
                fsstinfo = os.statvfs(artifactdir)
                results["freespace"] = fsstinfo.f_bsize * fsstinfo.f_bavail
                for fname in filenames:
                    if not fname.startswith(".dl."):
                        try:
                            stinfo = os.stat("%s/%s" % (artifactdir, fname))
                            files[fname] = {
                                "atime": stinfo.st_atime,
                                "size": stinfo.st_size,
                                "used": stinfo.st_blocks * 512,
                                }
                        except Exception, e:
                            print(e)
            return results

        @writable('/fetch')
        def fetch():
            host = self._unescape_parameter(request.query.host)
            cacheid = self._unescape_parameter(request.query.cacheid)
            artifacts = self._unescape_parameter(request.query.artifacts)
            try:
                response.set_header('Cache-Control', 'no-cache')
                artifacts = artifacts.split(",")
                return self._fetch_artifacts(host, cacheid, artifacts)
            except Exception, e:
                response.status = 500
                logging.debug('%s' % e)

        @writable('/delete')
        def delete():
            artifact = self._unescape_parameter(request.query.artifact)
            try:
                os.unlink('%s/%s' % (self.settings['artifact-dir'],
                                     artifact))
                return { "status": 0, "reason": "success" }
            except OSError, ose:
                return { "status": ose.errno, "reason": ose.strerror }
            except Exception, e:
                response.status = 500
                logging.debug('%s' % e)

        @app.get('/sha1s')
        def sha1():
            repo = self._unescape_parameter(request.query.repo)
            ref = self._unescape_parameter(request.query.ref)
            try:
                response.set_header('Cache-Control', 'no-cache')
                sha1, tree = repo_cache.resolve_ref(repo, ref)
                return {
                    'repo': '%s' % repo,
                    'ref': '%s' % ref,
                    'sha1': '%s' % sha1,
                    'tree': '%s' % tree
                }
            except Exception, e:
                response.status = 404
                logging.debug('%s' % e)

        @app.post('/sha1s')
        def sha1s():
            result = []
            for pair in request.json:
                repo = pair['repo']
                ref = pair['ref']
                try:
                    sha1, tree = repo_cache.resolve_ref(repo, ref)
                    result.append({
                        'repo': '%s' % repo,
                        'ref': '%s' % ref,
                        'sha1': '%s' % sha1,
                        'tree': '%s' % tree
                    })
                except Exception, e:
                    logging.debug('%s' % e)
                    result.append({
                        'repo': '%s' % repo,
                        'ref': '%s' % ref,
                        'error': '%s' % e
                    })
            response.set_header('Cache-Control', 'no-cache')
            response.set_header('Content-Type', 'application/json')
            return json.dumps(result)
        
        @app.get('/files')
        def file():
            repo = self._unescape_parameter(request.query.repo)
            ref = self._unescape_parameter(request.query.ref)
            filename = self._unescape_parameter(request.query.filename)
            try:
                content = repo_cache.cat_file(repo, ref, filename)
                response.set_header('Content-Type', 'application/octet-stream')
                return content
            except Exception, e:
                response.status = 404
                logging.debug('%s' % e)

        @app.post('/files')
        def files():
            result = []
            for pair in request.json:
                repo = pair['repo']
                ref = pair['ref']
                filename = pair['filename']
                try:
                    content = repo_cache.cat_file(repo, ref, filename)
                    result.append({
                        'repo': '%s' % repo,
                        'ref': '%s' % ref,
                        'filename': '%s' % filename,
                        'data': '%s' % base64.b64encode(content),
                    })
                except Exception, e:
                    logging.debug('%s' % e)
                    result.append({
                        'repo': '%s' % repo,
                        'ref': '%s' % ref,
                        'filename': '%s' % filename,
                        'error': '%s' % e
                    })
            response.set_header('Content-Type', 'application/json')
            return json.dumps(result)

        @app.get('/trees')
        def tree():
            repo = self._unescape_parameter(request.query.repo)
            ref = self._unescape_parameter(request.query.ref)
            path = self._unescape_parameter(request.query.path)
            try:
                tree = repo_cache.ls_tree(repo, ref, path)
                return {
                    'repo': '%s' % repo,
                    'ref': '%s' % ref,
                    'tree': tree,
                }
            except Exception, e:
                response.status = 404
                logging.debug('%s' % e)

        @app.get('/bundles')
        def bundle():
            repo = self._unescape_parameter(request.query.repo)
            filename = repo_cache.get_bundle_filename(repo)
            dirname = os.path.dirname(filename)
            basename = os.path.basename(filename)
            return static_file(basename, root=dirname, download=True)

        @app.get('/artifacts')
        def artifact():
            basename = self._unescape_parameter(request.query.filename)
            cache = OSTreeArtifactCache(self.settings['artifact-dir'],
                                        mode=self.settings['ostree-repo-mode'])
            try:
                cachekey, kind, name = basename.split('.', 2)
                a = ArtifactCacheReference(basename)
            except ValueError:
                # We can't split the name as expected, we want metadata
                cachekey, metadata_name = basename.split('.', 1)
                logging.debug('Looking for artifact metadata: %s'
                              % metadata_name)
                a = ArtifactCacheReference(cachekey)
                if cache.has_artifact_metadata(a, metadata_name):
                    filename = cache._artifact_metadata_filename(
                        a, metadata_name)
                    return static_file(basename,
                                       root=self.settings['artifact-dir'],
                                       download=True)
                else:
                    response.status = 404
                    logging.debug('artifact metadata %s does not exist'
                                  % metadata_name)

            if cache.has(a):
                if kind == 'stratum':
                    logging.debug('Stratum %s is in the cache' % name)
                    return static_file(basename,
                                       root=self.settings['artifact-dir'],
                                       download=True)
                else:
                    response.status = 500
                    logging.error('use `ostree pull` to get non-stratum '
                                  'artifacts')
            else:
                response.status = 404
                logging.debug('artifact %s does not exist' % basename)

        @app.post('/artifacts')
        def post_artifacts():
            if request.content_type != 'application/json':
                logging.warning('Content-type is not json: '
                    'expecting a json post request')

            artifacts = json.load(request.body)
            results = {}

            logging.debug('Received a POST request for /artifacts')

            cache = OSTreeArtifactCache(self.settings['artifact-dir'],
                                        mode=self.settings['ostree-repo-mode'])
            for basename in artifacts:
                if basename.startswith('/'):
                    response.status = 500
                    logging.error("%s: artifact name cannot start with a '/'"
                        % basename)
                    return

                a = ArtifactCacheReference(basename)
                results[basename] = cache.has(a)

                if results[basename]:
                    logging.debug('%s is in the cache', artifact)
                else:
                    logging.debug('%s is NOT in the cache', artifact)

            return results

        @app.get('/method')
        def method():
            return 'ostree'

        @app.get('/ostreeinfo')
        def ostree_info():
            logging.debug('returning %s' % self.settings['ostree-port'])
            return str(self.settings['ostree-port'])

        root = Bottle()
        root.mount(app, '/1.0')


        if self.settings['fcgi-server']:
            WSGIServer(root).run()
        elif self.settings['port-file']:
            import wsgiref.simple_server

            server_port_file = self.settings['port-file']
            class DebugServer(wsgiref.simple_server.WSGIServer):
                '''WSGI-like server that uses an ephemeral port.
                
                Rather than use a specified port, or default, the
                DebugServer binds to an ephemeral port on 127.0.0.1
                and writes its number to port-file, so a non-racy
                temporary port can be used.
                
                '''
                
                def __init__(self, (host, port), *args, **kwargs):
                    wsgiref.simple_server.WSGIServer.__init__(
                        self, ('127.0.0.1', 0), *args, **kwargs)
                    with open(server_port_file, 'w') as f:
                        f.write(str(self.server_port) + '\n')
            run(root, server_class=DebugServer, debug=True)
        else:
            run(root, host='0.0.0.0', port=self.settings['port'],
                reloader=True)

    def _unescape_parameter(self, param):
        return urllib.unquote(param)


if __name__ == '__main__':
    MorphCacheServer().run()