app/soc/tasks/updates/module_conversion.py
author Lennard de Rijk <ljvderijk@gmail.com>
Sun, 04 Oct 2009 21:25:52 +0200
changeset 3008 525c65b0a320
parent 3007 d23d1dee5261
child 3009 99f2d9b1ff7d
permissions -rw-r--r--
Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2973
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     1
#!/usr/bin/python2.5
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     2
#
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     3
# Copyright 2009 the Melange authors.
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     4
#
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     5
# Licensed under the Apache License, Version 2.0 (the "License");
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     6
# you may not use this file except in compliance with the License.
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     7
# You may obtain a copy of the License at
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     8
#
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
     9
#   http://www.apache.org/licenses/LICENSE-2.0
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    10
#
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    11
# Unless required by applicable law or agreed to in writing, software
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    12
# distributed under the License is distributed on an "AS IS" BASIS,
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    13
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    14
# See the License for the specific language governing permissions and
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    15
# limitations under the License.
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    16
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    17
"""The module conversion updates are defined in this module.
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    18
"""
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    19
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    20
__authors__ = [
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    21
  '"Lennard de Rijk" <ljvderijk@gmail.com>',
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    22
  ]
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    23
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    24
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    25
from google.appengine.api.labs import taskqueue
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    26
from google.appengine.ext import db
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    27
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    28
from django.http import HttpResponse
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    29
3008
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
    30
from soc.logic.models import survey as survey_logic
2998
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
    31
from soc.logic.models.mentor import logic as mentor_logic
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
    32
from soc.logic.models.org_admin import logic as org_admin_logic
2997
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
    33
from soc.logic.models.organization import logic as org_logic
3000
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
    34
from soc.logic.models.program import logic as program_logic
3006
e74c4d37a61a Added Review module conversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3001
diff changeset
    35
from soc.logic.models.review import logic as review_logic
3000
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
    36
from soc.logic.models.student import logic as student_logic
3007
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
    37
from soc.logic.models.student_project import logic as student_project_logic
2996
9a62e3cad4a8 Use the iterative task iterator for the ProgramConversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2973
diff changeset
    38
from soc.tasks.helper import decorators
2973
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    39
from soc.tasks.helper import error_handler
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    40
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    41
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    42
# batch size to use when going through the entities
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    43
DEF_BATCH_SIZE = 10
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    44
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    45
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    46
def startUpdateWithUrl(request, task_url):
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    47
  """Spawns an update task for the given task URL.
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    48
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    49
  Args:
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    50
    request: Django Request object
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    51
    task_url: The URL used to run this update task
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    52
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    53
  Returns:
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    54
    True iff the new task is successfully added to the Task Queue API
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    55
  """
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    56
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    57
  new_task = taskqueue.Task(url=task_url)
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    58
  new_task.add()
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    59
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    60
  return True
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    61
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    62
2996
9a62e3cad4a8 Use the iterative task iterator for the ProgramConversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2973
diff changeset
    63
@decorators.iterative_task(program_logic)
9a62e3cad4a8 Use the iterative task iterator for the ProgramConversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2973
diff changeset
    64
def runProgramConversionUpdate(request, entities, context, *args, **kwargs):
2998
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
    65
  """AppEngine Task that converts Programs into GSoCPrograms.
2973
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    66
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    67
  Args:
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    68
    request: Django Request object
2996
9a62e3cad4a8 Use the iterative task iterator for the ProgramConversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2973
diff changeset
    69
    entities: list of Program entities to convert
9a62e3cad4a8 Use the iterative task iterator for the ProgramConversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2973
diff changeset
    70
    context: the context of this task
2973
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    71
  """
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    72
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    73
  from soc.modules.gsoc.models.program import GSoCProgram
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    74
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    75
  # get all the properties that are part of each Programs
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    76
  program_model = program_logic.getModel()
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    77
  program_properties = program_model.properties().keys()
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    78
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    79
  # use this to store all the new GSoCPrograms
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    80
  gsoc_programs = []
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    81
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    82
  for entity in entities:
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    83
    gsoc_properties = {}
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    84
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    85
    for program_property in program_properties:
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    86
      # copy over all the information from the program entity
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    87
      gsoc_properties[program_property] = getattr(entity, program_property)
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    88
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    89
    # create the new GSoCProgram entity and prepare it to be stored
2997
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
    90
    gsoc_program_entity = GSoCProgram(key_name=entity.key().name(),
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
    91
                                      **gsoc_properties)
2973
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    92
    gsoc_programs.append(gsoc_program_entity)
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    93
2999
d933a6da5eef Only store all the entities once in the ModuleConversion, after the for loop.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2998
diff changeset
    94
  # store all the new GSoCPrograms
d933a6da5eef Only store all the entities once in the ModuleConversion, after the for loop.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2998
diff changeset
    95
  db.put(gsoc_programs)
2973
ba3f2522e8df Added first version of the 1st step in the module conversion process.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
diff changeset
    96
2996
9a62e3cad4a8 Use the iterative task iterator for the ProgramConversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2973
diff changeset
    97
  # task completed, return
9a62e3cad4a8 Use the iterative task iterator for the ProgramConversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2973
diff changeset
    98
  return
2997
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
    99
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   100
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   101
@decorators.iterative_task(org_logic)
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   102
def runOrgConversionUpdate(request, entities, context, *args, **kwargs):
2998
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   103
  """AppEngine Task that converts Organizations into GSoCOrganizations.
2997
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   104
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   105
  Args:
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   106
    request: Django Request object
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   107
    entities: list of Organization entities to convert
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   108
    context: the context of this task
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   109
  """
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   110
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   111
  from soc.modules.gsoc.logic.models.program import logic as gsoc_program_logic
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   112
  from soc.modules.gsoc.models.organization import GSoCOrganization
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   113
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   114
  # get all the properties that are part of each Organization
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   115
  org_model = org_logic.getModel()
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   116
  org_properties = org_model.properties().keys()
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   117
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   118
  # use this to store all the new GSoCOrganization
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   119
  gsoc_orgs = []
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   120
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   121
  for entity in entities:
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   122
    gsoc_properties = {}
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   123
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   124
    for org_property in org_properties:
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   125
      # copy over all the information from the Organization entity
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   126
      gsoc_properties[org_property] = getattr(entity, org_property)
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   127
3001
1698cca3d912 Only set new properties outside the "properties" loop for the ModuleConversion.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3000
diff changeset
   128
    # get the Program key belonging to the old Organization
1698cca3d912 Only set new properties outside the "properties" loop for the ModuleConversion.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3000
diff changeset
   129
    program_key = entity.scope.key().id_or_name()
1698cca3d912 Only set new properties outside the "properties" loop for the ModuleConversion.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3000
diff changeset
   130
    # get the new GSoCProgram and set it as scope for the GSoCOrganzation
1698cca3d912 Only set new properties outside the "properties" loop for the ModuleConversion.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3000
diff changeset
   131
    gsoc_program = gsoc_program_logic.getFromKeyName(program_key)
1698cca3d912 Only set new properties outside the "properties" loop for the ModuleConversion.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3000
diff changeset
   132
    gsoc_properties['scope'] = gsoc_program
2997
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   133
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   134
    # create the new GSoCOrganization entity and prepare it to be stored
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   135
    gsoc_org_entity = GSoCOrganization(key_name=entity.key().name(),
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   136
                                       **gsoc_properties)
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   137
    gsoc_orgs.append(gsoc_org_entity)
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   138
2999
d933a6da5eef Only store all the entities once in the ModuleConversion, after the for loop.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2998
diff changeset
   139
  # store all the new GSoCOrganizations
d933a6da5eef Only store all the entities once in the ModuleConversion, after the for loop.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2998
diff changeset
   140
  db.put(gsoc_orgs)
2997
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   141
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   142
  # task completed, return
a7cb53d213d7 Added the Organization to GSoCOrganzation update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2996
diff changeset
   143
  return
2998
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   144
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   145
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   146
@decorators.iterative_task(org_admin_logic)
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   147
def runOrgAdminConversionUpdate(request, entities, context, *args, **kwargs):
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   148
  """AppEngine Task that converts OrgAdmins into GSoCOrgAdmins.
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   149
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   150
  Args:
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   151
    request: Django Request object
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   152
    entities: list of OrgAdmin entities to convert
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   153
    context: the context of this task
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   154
  """
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   155
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   156
  from soc.modules.gsoc.models.org_admin import GSoCOrgAdmin
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   157
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   158
  return _runOrgRoleConversionUpdate(entities, org_admin_logic, GSoCOrgAdmin)
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   159
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   160
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   161
@decorators.iterative_task(mentor_logic)
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   162
def runMentorConversionUpdate(request, entities, context, *args, **kwargs):
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   163
  """AppEngine Task that converts Mentors into GSoCMentors.
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   164
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   165
  Args:
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   166
    request: Django Request object
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   167
    entities: list of Mentor entities to convert
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   168
    context: the context of this task
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   169
  """
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   170
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   171
  from soc.modules.gsoc.models.mentor import GSoCMentor
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   172
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   173
  return _runOrgRoleConversionUpdate(entities, mentor_logic, GSoCMentor)
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   174
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   175
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   176
def _runOrgRoleConversionUpdate(entities, from_role_logic, to_role_model):
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   177
  """AppEngine Task that converts a normal Organization Role into a
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   178
  GSoCOrganization Role.
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   179
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   180
  Args:
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   181
    entities: Role entities to convert
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   182
    from_role_logic: the Role Logic instance where to convert from
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   183
    to_role_model: the role Model class where to convert to
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   184
  """
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   185
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   186
  from soc.modules.gsoc.logic.models.organization import logic as \
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   187
      gsoc_org_logic
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   188
  from soc.modules.gsoc.logic.models.program import logic as gsoc_program_logic
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   189
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   190
  # get all the properties that are part of each Organization's Role
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   191
  role_model = from_role_logic.getModel()
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   192
  role_properties = role_model.properties().keys()
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   193
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   194
  # use this to store all the new Roles
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   195
  gsoc_roles = []
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   196
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   197
  for entity in entities:
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   198
    gsoc_properties = {}
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   199
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   200
    for role_property in role_properties:
3000
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   201
      # copy over all the information from the Role entity
2998
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   202
      gsoc_properties[role_property] = getattr(entity, role_property)
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   203
3001
1698cca3d912 Only set new properties outside the "properties" loop for the ModuleConversion.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3000
diff changeset
   204
    # get the Program key belonging to the old Role
1698cca3d912 Only set new properties outside the "properties" loop for the ModuleConversion.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3000
diff changeset
   205
    program_key = entity.program.key().id_or_name()
1698cca3d912 Only set new properties outside the "properties" loop for the ModuleConversion.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3000
diff changeset
   206
    # get the new GSoCProgram and set it for the Role
1698cca3d912 Only set new properties outside the "properties" loop for the ModuleConversion.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3000
diff changeset
   207
    gsoc_program = gsoc_program_logic.getFromKeyName(program_key)
1698cca3d912 Only set new properties outside the "properties" loop for the ModuleConversion.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3000
diff changeset
   208
    gsoc_properties['program'] = gsoc_program
2998
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   209
3001
1698cca3d912 Only set new properties outside the "properties" loop for the ModuleConversion.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3000
diff changeset
   210
    # get the Organization key belonging to the old Role
1698cca3d912 Only set new properties outside the "properties" loop for the ModuleConversion.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3000
diff changeset
   211
    org_key = entity.scope.key().id_or_name()
1698cca3d912 Only set new properties outside the "properties" loop for the ModuleConversion.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3000
diff changeset
   212
    # get the new GSoCOrganization and set it as scope for the Role
1698cca3d912 Only set new properties outside the "properties" loop for the ModuleConversion.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3000
diff changeset
   213
    gsoc_org = gsoc_org_logic.getFromKeyName(org_key)
1698cca3d912 Only set new properties outside the "properties" loop for the ModuleConversion.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3000
diff changeset
   214
    gsoc_properties['scope'] = gsoc_org
2998
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   215
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   216
    # create the new GSoC Role entity and prepare it to be stored
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   217
    gsoc_role_entity = to_role_model(key_name=entity.key().name(),
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   218
                                        **gsoc_properties)
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   219
    gsoc_roles.append(gsoc_role_entity)
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   220
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   221
  # store all the new GSoC Roles
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   222
  db.put(gsoc_roles)
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   223
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   224
  # task completed, return
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   225
  return
9c34768346da Add OrgAdmin and Mentor to GSoCOrgadmin and GSoCMentor updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2997
diff changeset
   226
3000
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   227
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   228
@decorators.iterative_task(student_logic)
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   229
def runStudentConversionUpdate(request, entities, context, *args, **kwargs):
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   230
  """AppEngine Task that converts Students into GSoCStudents.
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   231
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   232
  Args:
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   233
    request: Django Request object
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   234
    entities: list of Student entities to convert
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   235
    context: the context of this task
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   236
  """
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   237
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   238
  from soc.modules.gsoc.logic.models.program import logic as gsoc_program_logic
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   239
  from soc.modules.gsoc.models.student import GSoCStudent
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   240
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   241
  # get all the properties that are part of each Student
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   242
  student_model = student_logic.getModel()
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   243
  student_properties = student_model.properties().keys()
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   244
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   245
  # use this to store all the new GSoCStudents
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   246
  gsoc_students = []
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   247
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   248
  for entity in entities:
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   249
    gsoc_properties = {}
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   250
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   251
    for student_property in student_properties:
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   252
      # copy over all the information from the Student entity
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   253
      gsoc_properties[student_property] = getattr(entity, student_property)
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   254
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   255
    # get the Program key belonging to the old Student
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   256
    program_key = entity.scope.key().id_or_name()
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   257
    # get the new GSoCProgram and set it as scope for the GSoCStudent
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   258
    gsoc_program = gsoc_program_logic.getFromKeyName(program_key)
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   259
    gsoc_properties['scope'] = gsoc_program
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   260
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   261
    # create the new GSoCStudent entity and prepare it to be stored
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   262
    gsoc_student_entity = GSoCStudent(key_name=entity.key().name(),
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   263
                                      **gsoc_properties)
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   264
    gsoc_students.append(gsoc_student_entity)
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   265
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   266
  # store all the new GSoCStudents
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   267
  db.put(gsoc_students)
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   268
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   269
  # task completed, return
733d07eac729 Add the Student to GSoCStudent conversion,
Lennard de Rijk <ljvderijk@gmail.com>
parents: 2999
diff changeset
   270
  return
3006
e74c4d37a61a Added Review module conversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3001
diff changeset
   271
e74c4d37a61a Added Review module conversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3001
diff changeset
   272
e74c4d37a61a Added Review module conversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3001
diff changeset
   273
@decorators.iterative_task(review_logic)
e74c4d37a61a Added Review module conversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3001
diff changeset
   274
def runReviewUpdate(request, entities, context, *args, **kwargs):
3007
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   275
  """AppEngine Task that updates Review entities.
3006
e74c4d37a61a Added Review module conversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3001
diff changeset
   276
e74c4d37a61a Added Review module conversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3001
diff changeset
   277
  Args:
e74c4d37a61a Added Review module conversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3001
diff changeset
   278
    request: Django Request object
e74c4d37a61a Added Review module conversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3001
diff changeset
   279
    entities: list of Review entities to update
e74c4d37a61a Added Review module conversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3001
diff changeset
   280
    context: the context of this task
e74c4d37a61a Added Review module conversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3001
diff changeset
   281
  """
e74c4d37a61a Added Review module conversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3001
diff changeset
   282
e74c4d37a61a Added Review module conversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3001
diff changeset
   283
  for entity in entities:
e74c4d37a61a Added Review module conversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3001
diff changeset
   284
    entity.reviewer = None
e74c4d37a61a Added Review module conversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3001
diff changeset
   285
e74c4d37a61a Added Review module conversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3001
diff changeset
   286
  # store all Reviews
e74c4d37a61a Added Review module conversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3001
diff changeset
   287
  db.put(entities)
e74c4d37a61a Added Review module conversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3001
diff changeset
   288
e74c4d37a61a Added Review module conversion update.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3001
diff changeset
   289
  # task completed, return
3007
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   290
  return
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   291
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   292
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   293
@decorators.iterative_task(student_project_logic)
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   294
def runStudentProjectUpdate(request, entities, context, *args, **kwargs):
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   295
  """AppEngine Task that updates StudentProject entities.
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   296
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   297
  Args:
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   298
    request: Django Request object
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   299
    entities: list of StudentProject entities to update
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   300
    context: the context of this task
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   301
  """
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   302
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   303
  from soc.modules.gsoc.logic.models.mentor import logic as mentor_logic
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   304
  from soc.modules.gsoc.logic.models.organization import logic as org_logic
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   305
  from soc.modules.gsoc.logic.models.program import logic as program_logic
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   306
  from soc.modules.gsoc.logic.models.student import logic as student_logic
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   307
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   308
  for entity in entities:
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   309
    entity.scope = org_logic.getFromKeyName(entity.scope.key().id_or_name())
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   310
    entity.mentor = mentor_logic.getFromKeyName(
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   311
        entity.mentor.key().id_or_name())
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   312
    entity.student = student_logic.getFromKeyName(
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   313
        entity.student.key().id_or_name())
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   314
    entity.program = program_logic.getFromKeyName(
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   315
        entity.program.key().id_or_name())
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   316
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   317
    old_mentors = entity.additional_mentors
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   318
    new_mentors = []
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   319
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   320
    for old_mentor in old_mentors:
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   321
      new_mentors.append(
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   322
        mentor_logic.getFromKeyName(old_mentor.id_or_name()))
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   323
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   324
    entity.additional_mentors = new_mentors
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   325
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   326
  # store all StudentProjects
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   327
  db.put(entities)
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   328
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   329
  # task completed, return
d23d1dee5261 Added StudentProject update to the Module Conversion updates.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3006
diff changeset
   330
  return
3008
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   331
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   332
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   333
@decorators.iterative_task(survey_logic.logic)
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   334
def runSurveyUpdate(request, entities, context, *args, **kwargs):
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   335
  """AppEngine Task that updates Survey entities.
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   336
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   337
  Args:
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   338
    request: Django Request object
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   339
    entities: list of Survey entities to update
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   340
    context: the context of this task
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   341
  """
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   342
  return _runSurveyUpdate(entities)
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   343
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   344
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   345
@decorators.iterative_task(survey_logic.project_logic)
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   346
def runProjectSurveyUpdate(request, entities, context, *args, **kwargs):
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   347
  """AppEngine Task that updates ProjectSurvey entities.
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   348
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   349
  Args:
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   350
    request: Django Request object
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   351
    entities: list of ProjectSurvey entities to update
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   352
    context: the context of this task
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   353
  """
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   354
  return _runSurveyUpdate(entities)
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   355
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   356
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   357
@decorators.iterative_task(survey_logic.grading_logic)
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   358
def runGradingProjectSurveyUpdate(request, entities, context, *args, **kwargs):
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   359
  """AppEngine Task that updates GradingProjectSurvey entities.
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   360
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   361
  Args:
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   362
    request: Django Request object
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   363
    entities: list of GradingProjectSurvey entities to update
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   364
    context: the context of this task
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   365
  """
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   366
  return _runSurveyUpdate(entities)
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   367
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   368
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   369
def _runSurveyUpdate(entities):
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   370
  """AppEngine Task that updates Survey entities.
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   371
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   372
  Args:
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   373
    entities: list of Survey entities to update
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   374
  """
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   375
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   376
  from soc.modules.gsoc.logic.models.program import logic as program_logic
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   377
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   378
  for entity in entities:
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   379
    entity.scope = program_logic.getFromKeyName(
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   380
        entity.scope.key().id_or_name())
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   381
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   382
  # store all Surveys
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   383
  db.put(entities)
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   384
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   385
  # task completed, return
525c65b0a320 Added update for Surveys, ProjectSurveys and ProjectGradingSurveys.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 3007
diff changeset
   386
  return