Adds ability to capture and image hosts
[pharos-tools.git] / laas-fog / pharoslaas / actions / fog_captureHost.py
1 ##############################################################################
2 # Copyright 2017 Parker Berberian and Others                                 #
3 #                                                                            #
4 # Licensed under the Apache License, Version 2.0 (the "License");            #
5 # you may not use this file except in compliance with the License.           #
6 # You may obtain a copy of the License at                                    #
7 #                                                                            #
8 #    http://www.apache.org/licenses/LICENSE-2.0                              #
9 #                                                                            #
10 # Unless required by applicable law or agreed to in writing, software        #
11 # distributed under the License is distributed on an "AS IS" BASIS,          #
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
13 # See the License for the specific language governing permissions and        #
14 # limitations under the License.                                             #
15 ##############################################################################
16
17 from fogAction import FogAction
18 import requests
19 import sys
20
21
22 class StartCaptureAction(FogAction):
23     def __init__(self, config=None):
24         super(StartCaptureAction, self).__init__(config=config)
25
26     def run(self, host=None):
27         """
28         Schedules a capture for the given host with its
29         assigned image
30         """
31         host = self.getFogHost(host)
32         num = str(self.getHostNumber(host))
33         url = self.baseURL+'host/'+num+'/task'
34         try:
35             requests.post(url, headers=self.header, json={"taskTypeID": 2})
36         except Exception:
37             sys.exit(1)