This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/intervention/generations/evolve7.py is in python-schooltool.intervention 2.7.1-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
#
# SchoolTool - common information systems platform for school administration
# Copyright (c) 2008 Shuttleworth Foundation
#
# 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 2 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/>.
#
"""
Evolve database to generation 7.

Move message and goal id lists to new contact relationsship properties.
"""

import pytz

from zope.app.generations.utility import findObjectsProviding
from zope.app.generations.utility import getRootFolder
from zope.component.hooks import getSite, setSite

from schooltool.app.interfaces import ISchoolToolApplication
from schooltool.contact.interfaces import IContact, IContactable


def getContacts(ids, persons):
    for id in ids:
        if len(id) > 2 and id[-2] == ':':
            index = int(id[-1])
            id = id[:-2]
        else:
            index = 0
        if id not in persons:
            continue
        person = persons[id]
        if index:
            contacts = [contact for contact in IContactable(person).contacts]
            if index <= len(contacts):
                yield contacts[index - 1]
        else:
            yield IContact(person)


def fixMessage(message, persons):
    created = message.created  # activate __dict__
    if 'sender' in message.__dict__:
        message.created = created    # activate persistence
        sender_id = message.__dict__['sender']
        del message.__dict__['sender']
        for contact in getContacts([sender_id], persons):
            if contact not in message.sender:
                message.sender.add(contact)

    if 'recipients' in message.__dict__:
        message.created = created    # activate persistence
        recipient_ids = message.__dict__['recipients']
        del message.__dict__['recipients']
        for contact in getContacts(recipient_ids, persons):
            if contact not in message.recipients:
                message.recipients.add(contact)


def fixGoal(goal, persons):
    created = goal.created  # activate __dict__
    if 'creator' in goal.__dict__:
        goal.created = created    # activate persistence
        creator_id = goal.__dict__['creator']
        del goal.__dict__['creator']
        for contact in getContacts([creator_id], persons):
            if contact not in goal.creator:
                goal.creator.add(contact)

    if '_persons_responsible' in goal.__dict__:
        goal.created = created    # activate persistence
        responsible_ids = goal.__dict__['_persons_responsible']
        del goal.__dict__['_persons_responsible']
        for contact in getContacts(responsible_ids, persons):
            if contact not in goal._persons_responsible:
                goal._persons_responsible.add(contact)

    if 'at_one_time_responsible' in goal.__dict__:
        at_one_time_ids = goal.__dict__['at_one_time_responsible']
        del goal.__dict__['at_one_time_responsible']
        for contact in getContacts(at_one_time_ids, persons):
            goal.at_one_time_responsible.add(contact)


def evolve(context):
    root = getRootFolder(context)
    old_site = getSite()
    apps = findObjectsProviding(root, ISchoolToolApplication)

    for app in apps:
        setSite(app)
        interventionRoot = app.get(u'schooltool.interventions', {})
        persons = app.get('persons', {})
        for schoolYear in interventionRoot.values():
            for student in schoolYear.values():
                for message in student['messages'].values():
                    fixMessage(message, persons)
                for goal in student['goals'].values():
                    fixGoal(goal, persons)