author | Sverre Rabbelier <srabbelier@gmail.com> |
Sun, 01 Feb 2009 22:44:14 +0000 | |
changeset 1165 | 4db62684ce13 |
parent 1140 | a8eaea0b268d |
child 1307 | 091a21cf3627 |
permissions | -rw-r--r-- |
19
f2a5ec8fb780
Initial definition of the Host Model.
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
1 |
#!/usr/bin/python2.5 |
f2a5ec8fb780
Initial definition of the Host Model.
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
2 |
# |
f2a5ec8fb780
Initial definition of the Host Model.
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
3 |
# Copyright 2008 the Melange authors. |
f2a5ec8fb780
Initial definition of the Host Model.
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
4 |
# |
f2a5ec8fb780
Initial definition of the Host Model.
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
5 |
# Licensed under the Apache License, Version 2.0 (the "License"); |
f2a5ec8fb780
Initial definition of the Host Model.
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
6 |
# you may not use this file except in compliance with the License. |
f2a5ec8fb780
Initial definition of the Host Model.
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
7 |
# You may obtain a copy of the License at |
404
44223e50e1fc
Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents:
244
diff
changeset
|
8 |
# |
19
f2a5ec8fb780
Initial definition of the Host Model.
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
9 |
# http://www.apache.org/licenses/LICENSE-2.0 |
404
44223e50e1fc
Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents:
244
diff
changeset
|
10 |
# |
19
f2a5ec8fb780
Initial definition of the Host Model.
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
11 |
# Unless required by applicable law or agreed to in writing, software |
f2a5ec8fb780
Initial definition of the Host Model.
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
12 |
# distributed under the License is distributed on an "AS IS" BASIS, |
f2a5ec8fb780
Initial definition of the Host Model.
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
13 |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
f2a5ec8fb780
Initial definition of the Host Model.
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
14 |
# See the License for the specific language governing permissions and |
f2a5ec8fb780
Initial definition of the Host Model.
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
15 |
# limitations under the License. |
f2a5ec8fb780
Initial definition of the Host Model.
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
16 |
|
404
44223e50e1fc
Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents:
244
diff
changeset
|
17 |
"""Host (Model) query functions. |
44223e50e1fc
Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents:
244
diff
changeset
|
18 |
""" |
19
f2a5ec8fb780
Initial definition of the Host Model.
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
19 |
|
f2a5ec8fb780
Initial definition of the Host Model.
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
20 |
__authors__ = [ |
429
e50e18936f06
Fixed typo in e-mail address
Sverre Rabbelier <srabbelier@gmail.com>
parents:
410
diff
changeset
|
21 |
'"Sverre Rabbelier" <sverre@rabbelier.nl>', |
1062
f7ee38ebfe1c
Creating a new host or club_admin will set the group state to active if it's new.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
671
diff
changeset
|
22 |
'"Lennard de Rijk" <ljvderijk@gmail.com>', |
404
44223e50e1fc
Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents:
244
diff
changeset
|
23 |
] |
44223e50e1fc
Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents:
244
diff
changeset
|
24 |
|
44223e50e1fc
Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents:
244
diff
changeset
|
25 |
|
535
9045b8888772
Refactor classes in soc/logic/models to make more use of inheritance. Add
Todd Larsen <tlarsen@google.com>
parents:
530
diff
changeset
|
26 |
from soc.logic.models import role |
671
2c02178037ff
Apply DI on the scope logic
Sverre Rabbelier <srabbelier@gmail.com>
parents:
655
diff
changeset
|
27 |
from soc.logic.models import sponsor as sponsor_logic |
404
44223e50e1fc
Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents:
244
diff
changeset
|
28 |
|
44223e50e1fc
Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents:
244
diff
changeset
|
29 |
import soc.models.host |
481
94834a1e6c01
Attempt to rename User.id to User.account, in preparation for making User be
Todd Larsen <tlarsen@google.com>
parents:
444
diff
changeset
|
30 |
import soc.models.role |
19
f2a5ec8fb780
Initial definition of the Host Model.
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
31 |
|
207
8ecc2e4198cd
Take advantage of the Model inheritance provided by polymodel.PolyModel to
Todd Larsen <tlarsen@google.com>
parents:
181
diff
changeset
|
32 |
|
535
9045b8888772
Refactor classes in soc/logic/models to make more use of inheritance. Add
Todd Larsen <tlarsen@google.com>
parents:
530
diff
changeset
|
33 |
class Logic(role.Logic): |
499
d22e4fe8e64b
Fix missing dots in doc strings and some other doc string corrections.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
481
diff
changeset
|
34 |
"""Logic methods for the Host model. |
404
44223e50e1fc
Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents:
244
diff
changeset
|
35 |
""" |
19
f2a5ec8fb780
Initial definition of the Host Model.
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
36 |
|
671
2c02178037ff
Apply DI on the scope logic
Sverre Rabbelier <srabbelier@gmail.com>
parents:
655
diff
changeset
|
37 |
def __init__(self, model=soc.models.host.Host, |
2c02178037ff
Apply DI on the scope logic
Sverre Rabbelier <srabbelier@gmail.com>
parents:
655
diff
changeset
|
38 |
base_model=soc.models.role.Role, scope_logic=sponsor_logic): |
404
44223e50e1fc
Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents:
244
diff
changeset
|
39 |
"""Defines the name, key_name and model for this entity. |
44223e50e1fc
Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents:
244
diff
changeset
|
40 |
""" |
655
9635cbaa2dcd
Cleanups to the logic module
Sverre Rabbelier <srabbelier@gmail.com>
parents:
535
diff
changeset
|
41 |
|
671
2c02178037ff
Apply DI on the scope logic
Sverre Rabbelier <srabbelier@gmail.com>
parents:
655
diff
changeset
|
42 |
super(Logic, self).__init__(model=model, base_model=base_model, |
2c02178037ff
Apply DI on the scope logic
Sverre Rabbelier <srabbelier@gmail.com>
parents:
655
diff
changeset
|
43 |
scope_logic=scope_logic) |
19
f2a5ec8fb780
Initial definition of the Host Model.
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
44 |
|
f2a5ec8fb780
Initial definition of the Host Model.
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff
changeset
|
45 |
|
1062
f7ee38ebfe1c
Creating a new host or club_admin will set the group state to active if it's new.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
671
diff
changeset
|
46 |
def _onCreate(self, entity): |
1085
0afbdd0905ef
Renamed state to status where appropriate.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1062
diff
changeset
|
47 |
"""Marks the Sponsor for this Host as active it's status is new. |
1062
f7ee38ebfe1c
Creating a new host or club_admin will set the group state to active if it's new.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
671
diff
changeset
|
48 |
""" |
f7ee38ebfe1c
Creating a new host or club_admin will set the group state to active if it's new.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
671
diff
changeset
|
49 |
|
f7ee38ebfe1c
Creating a new host or club_admin will set the group state to active if it's new.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
671
diff
changeset
|
50 |
sponsor_entity = entity.scope |
f7ee38ebfe1c
Creating a new host or club_admin will set the group state to active if it's new.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
671
diff
changeset
|
51 |
|
1085
0afbdd0905ef
Renamed state to status where appropriate.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
1062
diff
changeset
|
52 |
if sponsor_entity.status == 'new': |
1062
f7ee38ebfe1c
Creating a new host or club_admin will set the group state to active if it's new.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
671
diff
changeset
|
53 |
# this sponsor is new so mark as active |
1140
a8eaea0b268d
Style fixes in soc.logic.models modules (basically removing of extra whitespaces).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
1085
diff
changeset
|
54 |
fields = {'status': 'active'} |
1062
f7ee38ebfe1c
Creating a new host or club_admin will set the group state to active if it's new.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
671
diff
changeset
|
55 |
sponsor_logic.logic.updateEntityProperties(sponsor_entity, fields) |
f7ee38ebfe1c
Creating a new host or club_admin will set the group state to active if it's new.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
671
diff
changeset
|
56 |
|
f7ee38ebfe1c
Creating a new host or club_admin will set the group state to active if it's new.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
671
diff
changeset
|
57 |
# call super |
f7ee38ebfe1c
Creating a new host or club_admin will set the group state to active if it's new.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
671
diff
changeset
|
58 |
super(Logic, self)._onCreate(entity) |
f7ee38ebfe1c
Creating a new host or club_admin will set the group state to active if it's new.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
671
diff
changeset
|
59 |
|
f7ee38ebfe1c
Creating a new host or club_admin will set the group state to active if it's new.
Lennard de Rijk <ljvderijk@gmail.com>
parents:
671
diff
changeset
|
60 |
|
404
44223e50e1fc
Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents:
244
diff
changeset
|
61 |
logic = Logic() |