Statistics
| Branch: | Tag: | Revision:

root / snf-pithos-backend / pithos / backends / lib / sqlite / public.py @ 56f3c759

History | View | Annotate | Download (4.1 kB)

1
# Copyright 2011-2012 GRNET S.A. All rights reserved.
2
#
3
# Redistribution and use in source and binary forms, with or
4
# without modification, are permitted provided that the following
5
# conditions are met:
6
#
7
#   1. Redistributions of source code must retain the above
8
#      copyright notice, this list of conditions and the following
9
#      disclaimer.
10
#
11
#   2. Redistributions in binary form must reproduce the above
12
#      copyright notice, this list of conditions and the following
13
#      disclaimer in the documentation and/or other materials
14
#      provided with the distribution.
15
#
16
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
# POSSIBILITY OF SUCH DAMAGE.
28
#
29
# The views and conclusions contained in the software and
30
# documentation are those of the authors and should not be
31
# interpreted as representing official policies, either expressed
32
# or implied, of GRNET S.A.
33

    
34
from dbworker import DBWorker
35

    
36
from pithos.backends.random_word import get_word
37

    
38
class Public(DBWorker):
39
    """Paths can be marked as public."""
40

    
41
    def __init__(self, **params):
42
        DBWorker.__init__(self, **params)
43
        execute = self.execute
44

    
45
        execute(""" create table if not exists public
46
                          ( public_id integer primary key autoincrement,
47
                            path      text not null,
48
                            active    boolean not null default 1,
49
                            url       text) """)
50
        execute(""" create unique index if not exists idx_public_path
51
                    on public(path) """)
52
        execute(""" create unique index if not exists idx_public_url
53
                    on public(url) """)
54

    
55
    def get_unique_url(self, serial, public_url_min_length, public_url_alphabet):
56
        l = public_url_min_length
57
        while 1:
58
            candidate = get_word(serial, length=l, alphabet=public_url_alphabet)
59
            if self.public_path(candidate) is None:
60
                return candidate
61
            l +=1
62

    
63
    def public_set(self, path, public_url_min_length, public_url_alphabet):
64
        q = "select public_id from public where path = ?"
65
        self.execute(q, (path,))
66
        row = self.fetchone()
67

    
68
        if not row:
69
            q = "insert into public(path, active) values(?, ?)"
70
            serial = self.execute(q, (path, active)).lastrowid
71
            url = self.get_unique_url(
72
                serial, public_url_min_length, public_url_alphabet
73
            )
74
            q = "update public set url=url where public_id = ?"
75
            self.execute(q, (serial,))
76

    
77
    def public_unset(self, path):
78
        q = "delete from public where path = ?"
79
        self.execute(q, (path,))
80

    
81
    def public_unset_bulk(self, paths):
82
        placeholders = ','.join('?' for path in paths)
83
        q = "delete from public where path in (%s)"
84
        self.execute(q, paths)
85

    
86
    def public_get(self, path):
87
        q = "select url from public where path = ? and active = 1"
88
        self.execute(q, (path,))
89
        row = self.fetchone()
90
        if row:
91
            return row[0]
92
        return None
93

    
94
    def public_list(self, prefix):
95
        q = "select path, url from public where path like ? escape '\\' and active = 1"
96
        self.execute(q, (self.escape_like(prefix) + '%',))
97
        return self.fetchall()
98

    
99
    def public_path(self, public):
100
        q = "select path from public where url = ? and active = 1"
101
        self.execute(q, (public,))
102
        row = self.fetchone()
103
        if row:
104
            return row[0]
105
        return None