Initial checkin of new API implementation
[plcapi.git] / PLC / Methods / AdmDeleteSite.py
1 from PLC.Faults import *
2 from PLC.Method import Method
3 from PLC.Parameter import Parameter, Mixed
4 from PLC.Sites import Site, Sites
5 from PLC.Persons import Person, Persons
6 from PLC.Nodes import Node, Nodes
7 from PLC.PCUs import PCU, PCUs
8 from PLC.Auth import PasswordAuth
9
10 class AdmDeleteSite(Method):
11     """
12     Mark an existing site as deleted. The accounts of people who are
13     not members of at least one other non-deleted site will also be
14     marked as deleted. Nodes, PCUs, and slices associated with the
15     site will be deleted.
16
17     Returns 1 if successful, faults otherwise.
18     """
19
20     roles = ['admin']
21
22     accepts = [
23         PasswordAuth(),
24         Mixed(Site.fields['site_id'],
25               Site.fields['login_base'])
26         ]
27
28     returns = Parameter(int, '1 if successful')
29
30     def call(self, auth, site_id_or_login_base):
31         # Get account information
32         sites = Sites(self.api, [site_id_or_login_base])
33         if not sites:
34             raise PLCInvalidArgument, "No such site"
35
36         site = sites.values()[0]
37         site.delete()
38
39         return 1