summaryrefslogtreecommitdiff
path: root/src/leap/mail/adaptors/soledad_indexes.py
blob: d2f8b71afc71b39fea368af3b8ce0ddf64af3315 (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
# -*- coding: utf-8 -*-
# soledad_indexes.py
# Copyright (C) 2013, 2014 LEAP
#
# 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/>.
"""
Soledad Indexes for Mail Documents.
"""

# TODO
# [ ] hide most of the constants here

# Document Type, for indexing

TYPE = "type"
MBOX = "mbox"
MBOX_UUID = "mbox_uuid"
FLAGS = "flags"
HEADERS = "head"
CONTENT = "cnt"
RECENT = "rct"
HDOCS_SET = "hdocset"

INCOMING_KEY = "incoming"
ERROR_DECRYPTING_KEY = "errdecr"

# indexing keys
CONTENT_HASH = "chash"
PAYLOAD_HASH = "phash"
MSGID = "msgid"
UID = "uid"


# Index  types
# --------------

TYPE_IDX = 'by-type'
TYPE_MBOX_IDX = 'by-type-and-mbox'
TYPE_MBOX_UUID_IDX = 'by-type-and-mbox-uuid'
TYPE_SUBS_IDX = 'by-type-and-subscribed'
TYPE_MSGID_IDX = 'by-type-and-message-id'
TYPE_MBOX_SEEN_IDX = 'by-type-and-mbox-and-seen'
TYPE_MBOX_RECENT_IDX = 'by-type-and-mbox-and-recent'
TYPE_MBOX_DEL_IDX = 'by-type-and-mbox-and-deleted'
TYPE_MBOX_C_HASH_IDX = 'by-type-and-mbox-and-contenthash'
TYPE_C_HASH_IDX = 'by-type-and-contenthash'
TYPE_C_HASH_PART_IDX = 'by-type-and-contenthash-and-partnumber'
TYPE_P_HASH_IDX = 'by-type-and-payloadhash'

# Soledad index for incoming mail, without decrypting errors.
# and the backward-compatible index, will be deprecated at 0.7
JUST_MAIL_IDX = "just-mail"
JUST_MAIL_COMPAT_IDX = "just-mail-compat"


# TODO
# it would be nice to measure the cost of indexing
# by many fields.

# TODO
# make the indexes dict more readable!

MAIL_INDEXES = {
    # generic
    TYPE_IDX: [TYPE],
    TYPE_MBOX_IDX: [TYPE, MBOX],
    TYPE_MBOX_UUID_IDX: [TYPE, MBOX_UUID],

    # XXX deprecate 0.4.0
    # TYPE_MBOX_UID_IDX: [TYPE, MBOX, UID],

    # mailboxes
    TYPE_SUBS_IDX: [TYPE, 'bool(subscribed)'],

    # fdocs uniqueness
    TYPE_MBOX_C_HASH_IDX: [TYPE, MBOX, CONTENT_HASH],

    # headers doc - search by msgid.
    TYPE_MSGID_IDX: [TYPE, MSGID],

    # content, headers doc
    TYPE_C_HASH_IDX: [TYPE, CONTENT_HASH],

    # attachment payload dedup
    TYPE_P_HASH_IDX: [TYPE, PAYLOAD_HASH],

    # messages
    TYPE_MBOX_SEEN_IDX: [TYPE, MBOX_UUID, 'bool(seen)'],
    TYPE_MBOX_RECENT_IDX: [TYPE, MBOX_UUID, 'bool(recent)'],
    TYPE_MBOX_DEL_IDX: [TYPE, MBOX_UUID, 'bool(deleted)'],

    # incoming queue
    JUST_MAIL_IDX: [INCOMING_KEY,
                    "bool(%s)" % (ERROR_DECRYPTING_KEY,)],

    # the backward-compatible index, will be deprecated at 0.7
    JUST_MAIL_COMPAT_IDX: [INCOMING_KEY],
}