1cee0301bd1ebca8cb2f94fd50e827c851733615
[plcapi.git] / PLC / Methods / AddPersonToSlice.py
1 # $Id$
2 # $URL$
3 from PLC.Faults import *
4 from PLC.Method import Method
5 from PLC.Parameter import Parameter, Mixed
6 from PLC.Persons import Person, Persons
7 from PLC.Slices import Slice, Slices
8 from PLC.Auth import Auth
9
10 class AddPersonToSlice(Method):
11     """
12     Adds the specified person to the specified slice. If the person is
13     already a member of the slice, no errors are returned.
14
15     Returns 1 if successful, faults otherwise.
16     """
17
18     roles = ['admin', 'pi']
19
20     accepts = [
21         Auth(),
22         Mixed(Person.fields['person_id'],
23               Person.fields['email']),
24         Mixed(Slice.fields['slice_id'],
25               Slice.fields['name'])
26         ]
27
28     returns = Parameter(int, '1 if successful')
29
30     def call(self, auth, person_id_or_email, slice_id_or_name):
31         # Get account information
32         persons = Persons(self.api, [person_id_or_email])
33         if not persons:
34             raise PLCInvalidArgument, "No such account"
35         person = persons[0]
36
37         # Get slice information
38         slices = Slices(self.api, [slice_id_or_name])
39         if not slices:
40             raise PLCInvalidArgument, "No such slice"
41         slice = slices[0]
42
43         # N.B. Allow foreign users to be added to local slices and
44         # local users to be added to foreign slices (and, of course,
45         # local users to be added to local slices).
46         if person['peer_id'] is not None and slice['peer_id'] is not None:
47             raise PLCInvalidArgument, "Cannot add foreign users to foreign slices"
48
49         # If we are not admin, make sure the caller is a PI
50         # of the site associated with the slice
51         if 'admin' not in self.caller['roles']:
52             if slice['site_id'] not in self.caller['site_ids']:
53                 raise PLCPermissionDenied, "Not allowed to add users to this slice"
54
55         if slice['slice_id'] not in person['slice_ids']:
56             slice.add_person(person)
57
58         # Logging variables
59         self.event_objects = {'Person': [person['person_id']],
60                               'Slice': [slice['slice_id']]}
61         self.object_ids = [slice['slice_id']]
62
63         return 1