Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar_network/model/context.py
blob: 012e45091545878beaf8055167eb814cdc187bb7 (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
# Copyright (C) 2012-2014 Aleksey Lim
#
# 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, either version 3 of the License, or
# (at your option) any later version.
#
# 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/>.

from sugar_network import db, model
from sugar_network.toolkit.coroutine import this
from sugar_network.toolkit.router import ACL
from sugar_network.toolkit import svg_to_png


class Context(db.Resource):

    @db.indexed_property(db.List, prefix='T',
            subtype=db.Enum(model.CONTEXT_TYPES))
    def type(self, value):
        return value

    @type.setter
    def type(self, value):
        if 'package' in value:
            self.post('icon', 'assets/package.png')
            self.post('logo', 'assets/package-logo.png')
            self.post('artefact_icon', 'assets/package.svg')
        elif 'activity' not in value:
            if self['artefact_icon'] == self.metadata['artefact_icon'].default:
                self._generate_default_icons(value)
        return value

    @db.indexed_property(db.Localized, slot=1, prefix='S', full_text=True)
    def title(self, value):
        return value

    @db.indexed_property(db.Localized, prefix='R', full_text=True)
    def summary(self, value):
        return value

    @db.indexed_property(db.Localized, prefix='D', full_text=True)
    def description(self, value):
        return value

    @db.indexed_property(prefix='H', default='', full_text=True)
    def homepage(self, value):
        return value

    @db.indexed_property(db.List, prefix='Y', default=[])
    def mime_types(self, value):
        return value

    @db.stored_property(db.Blob, mime_type='image/png',
            default='assets/missing.png')
    def icon(self, value):
        return value

    @db.stored_property(db.Blob, mime_type='image/svg+xml',
            default='assets/missing.svg')
    def artefact_icon(self, value):
        return value

    @db.stored_property(db.Blob, mime_type='image/png',
            default='assets/missing-logo.png')
    def logo(self, value):
        return value

    @db.stored_property(db.Aggregated, subtype=db.Blob(),
            acl=ACL.READ | ACL.INSERT | ACL.REMOVE | ACL.AUTHOR)
    def previews(self, value):
        return value

    @db.stored_property(db.Aggregated, subtype=db.Dict(),
            acl=ACL.READ | ACL.LOCAL)
    def releases(self, value):
        return value

    @db.indexed_property(db.Numeric, slot=2, default=0,
            acl=ACL.READ | ACL.LOCAL)
    def solves(self, value):
        return value

    @db.indexed_property(model.Rating, slot=3, acl=ACL.READ | ACL.LOCAL)
    def rating(self, value):
        return value

    @db.stored_property(default='', acl=ACL.PUBLIC)
    def dependencies(self, value):
        """Software dependencies.

        This is a transition method how to improve dependencies handling.
        The regular way should be setting up them in activity.info instead.

        """
        return value

    def _generate_default_icons(self, types):
        blobs = this.volume.blobs
        svg = None
        for type_ in ('activity', 'book', 'group'):
            if type_ in types:
                with file(blobs.get('assets/%s.svg' % type_).path) as f:
                    svg = f.read()
                from sugar_network.toolkit.sugar import color_svg
                svg = color_svg(svg, self['guid'])
                self.post('artefact_icon',
                        blobs.post(svg, 'image/svg+xml').digest)
                break
        else:
            return
        for prop, size in (
                ('icon', model.ICON_SIZE),
                ('logo', model.LOGO_SIZE),
                ):
            if self[prop] != self.metadata[prop].default:
                continue
            png = blobs.post(svg_to_png(svg, size), 'image/png').digest
            self.post(prop, png)

    @db.stored_property(default='')
    def implement(self, value):
        pass

    @db.stored_property(default='')
    def favorite(self, value):
        pass

    @db.stored_property(default='')
    def clone(self, value):
        pass

    @db.indexed_property(db.List, prefix='RL', default=[])
    def layer(self, value):
        return value