4445ae2f26f2de5e6ee8b7ae4d4da4794b45b749
[sfa.git] / sfa / methods / Shutdown.py
1 from sfa.util.faults import *
2 from sfa.util.namespace import *
3 from sfa.util.method import Method
4 from sfa.util.parameter import Parameter
5
6
7 class Shutdown(Method):
8     """
9     Perform an emergency shut down of a sliver. This operation is intended for administrative use. 
10     The sliver is shut down but remains available for further forensics.
11
12     @param slice_urn (string) URN of slice to renew
13     @param credentials ([string]) of credentials    
14     """
15     interfaces = ['geni_am']
16     accepts = [
17         Parameter(str, "Slice URN"),
18         Parameter(type([str]), "List of credentials"),
19         ]
20     returns = Parameter(bool, "Success or Failure")
21
22     def call(self, slice_xrn, creds, expiration_time):
23         hrn, type = urn_to_hrn(slice_xrn)
24
25         self.api.logger.info("interface: %s\ttarget-hrn: %s\tcaller-creds: %s\tmethod-name: %s"%(self.api.interface, hrn, creds, self.name))
26
27         # Validate that at least one of the credentials is good enough
28         found = False
29         for cred in creds:
30             try:
31                 self.api.auth.check(cred, 'shutdown')
32                 found = True
33                 break
34             except:
35                 continue
36             
37         if not found:
38             raise InsufficientRights('Shutdown: Credentials either did not verify, were no longer valid, or did not have appropriate privileges')
39             
40         manager_base = 'sfa.managers'
41
42         if self.api.interface in ['geni_am']:
43             mgr_type = self.api.config.SFA_GENI_AGGREGATE_TYPE
44             manager_module = manager_base + ".geni_am_%s" % mgr_type
45             manager = __import__(manager_module, fromlist=[manager_base])
46             return manager.Shutdown(self.api, slice_xrn, creds)
47
48         return ''
49