Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Pootle-2.0.0/local_apps/pootle_app/unit_update.py
blob: 4125d02e172f67b649ca6ab7dd2517b42fa00660 (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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright 2009 Zuza Software Foundation
#
# This file is part of translate.
#
# translate 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 2 of the License, or
# (at your option) any later version.
#
# translate 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 translate; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

import datetime

from django.utils.translation import ugettext as _
from django.core.exceptions import PermissionDenied

from pootle_app.models             import Suggestion, Submission
from pootle_app.models.profile     import get_profile
from pootle_app.models.permissions import check_permission

def _suggestion_hash(store, item, trans):
    # since django's IntegerField is always 32 bit on mysql we cast to
    # make sure we don't pass larger hashes
    return int(hash((store.pootle_path, item, unicode(trans))) & 0xfffffff)

def suggest_translation(store, item, trans, request):
    if not check_permission("suggest", request):
        raise PermissionDenied(_("You do not have rights to suggest changes here"))
    translation_project = request.translation_project
    s = Suggestion(
        creation_time       = datetime.datetime.utcnow(),
        translation_project = translation_project,
        suggester           = get_profile(request.user),
        unit                = _suggestion_hash(store, item, trans),
        state               = 'pending',
        )
    s.save()
    store.addsuggestion(item, trans, s.suggester.user.username,
                        translation_project.checker)
    #FIXME: we don't handle identical suggestions


def update_translation(store, item, newvalues, request, suggestion=None):
    """updates a translation with a new value..."""

    if not check_permission("translate", request):
        raise PermissionDenied(_("You do not have rights to change translations here"))

    translation_project = request.translation_project

    s = Submission(
        creation_time       = datetime.datetime.utcnow(),
        translation_project = translation_project,
        submitter           = get_profile(request.user),
        from_suggestion     = suggestion,
        )
    try:
        s.save()
    except:
        # FIXME: making from_suggestion OneToOne was a mistake since
        # we can't distinguish between identical suggestions.
        pass
    
    store.file.updateunit(item, newvalues, translation_project.checker,
                          user=request.user, language=translation_project.language)
    translation_project.update_index(translation_project.indexer, store, [item])


def update_suggestion(state, store, item, newtrans, request):
    """Marks the suggestion specified by the parameters with the given status,
    and returns that suggestion object"""
    translation_project = request.translation_project
    suggestion, created  = Suggestion.objects.get_or_create(translation_project=translation_project,
                                                            unit=_suggestion_hash(store, item, newtrans))
    suggestion.state = state
    suggestion.reviewer = get_profile(request.user)
    suggestion.review_time = datetime.datetime.utcnow()
    suggestion.save()
    return suggestion


def reject_suggestion(store, item, suggitem, newtrans, request):
    """rejects the suggestion and removes it from the pending file"""
    if not check_permission("review", request):
        raise PermissionDenied(_("You do not have rights to review suggestions here"))

    update_suggestion('rejected', store, item, newtrans, request)
    # Deletes the suggestion from the .pending file
    store.deletesuggestion(item, suggitem, newtrans,
                           request.translation_project.checker)

def accept_suggestion(store, item, suggitem, newtrans, request):
    """accepts the suggestion into the main pofile"""
    if not check_permission("review", request):
        raise PermissionDenied(_("You do not have rights to review suggestions here"))

    suggestion = update_suggestion('accepted', store, item, newtrans, request)

    new_values = {"target": newtrans, "fuzzy": False}
    update_translation(store, item, new_values, request, suggestion)
    store.deletesuggestion(item, suggitem, newtrans,
                           request.translation_project.checker)