1eee12c8a6073030194fb4be63d6cf94e121e8da
[plcapi.git] / PLC / Methods / DeleteSite.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.Sites import Site, Sites
7 from PLC.Persons import Person, Persons
8 from PLC.Nodes import Node, Nodes
9 from PLC.PCUs import PCU, PCUs
10 from PLC.Auth import Auth
11 from PLC.SFA import SFA
12
13 class DeleteSite(Method):
14     """
15     Mark an existing site as deleted. The accounts of people who are
16     not members of at least one other non-deleted site will also be
17     marked as deleted. Nodes, PCUs, and slices associated with the
18     site will be deleted.
19
20     Returns 1 if successful, faults otherwise.
21     """
22
23     roles = ['admin']
24
25     accepts = [
26         Auth(),
27         Mixed(Site.fields['site_id'],
28               Site.fields['login_base'])
29         ]
30
31     returns = Parameter(int, '1 if successful')
32
33     def call(self, auth, site_id_or_login_base):
34         # Get account information
35         sites = Sites(self.api, [site_id_or_login_base])
36         if not sites:
37             raise PLCInvalidArgument, "No such site"
38         site = sites[0]
39
40         if site['peer_id'] is not None:
41             raise PLCInvalidArgument, "Not a local site"
42
43         site.delete()
44         
45         # Logging variables
46         self.event_objects = {'Site': [site['site_id']]}
47         self.message = 'Site %d deleted' % site['site_id']      
48
49         sfa = SFA()
50         sfa.delete_record(site, 'site')
51         
52         return 1