summaryrefslogtreecommitdiff
path: root/common/src/leap/soledad/common/l2db/commandline/serve.py
blob: 5e10f9cb81a1a5da159057ad33ef7981b3b410cb (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
# Copyright 2011 Canonical Ltd.
#
# This file is part of u1db.
#
# u1db is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# as published by the Free Software Foundation.
#
# u1db 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with u1db.  If not, see <http://www.gnu.org/licenses/>.

"""Build server for u1db-serve."""
import os

from paste import httpserver

from u1db.remote import (
    http_app,
    server_state,
    cors_middleware
    )


class DbListingServerState(server_state.ServerState):
    """ServerState capable of listing dbs."""

    def global_info(self):
        """Return list of dbs."""
        dbs = []
        for fname in os.listdir(self._workingdir):
            p = os.path.join(self._workingdir, fname)
            if os.path.isfile(p) and os.access(p, os.R_OK|os.W_OK):
                try:
                    with open(p, 'rb') as f:
                        header = f.read(16)
                    if header == "SQLite format 3\000":
                        dbs.append(fname)
                except IOError:
                    pass
        return {"databases": dict.fromkeys(dbs), "db_count": len(dbs)}


def make_server(host, port, working_dir, accept_cors_connections=None):
    """Make a server on host and port exposing dbs living in working_dir."""
    state = DbListingServerState()
    state.set_workingdir(working_dir)
    application = http_app.HTTPApp(state)
    if accept_cors_connections:
        application = cors_middleware.CORSMiddleware(application,
                                                     accept_cors_connections)
    server = httpserver.WSGIServer(application, (host, port),
                                   httpserver.WSGIHandler)
    return server