通过flask框架写成http接口调用Ansible

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过flask框架写成http接口调用Ansible相关的知识,希望对你有一定的参考价值。

#*******一、flask_ansible.py文件
#!/usr/bin/env python
#_*_ coding:utf-8 _*_
import json
from flask import Flask,request
from ansible_api_job import Ansibles

app = Flask(__name__)

@app.route(‘/ansible/command‘, methods=[‘GET‘,‘POST‘])
def command():
    if request.method == ‘POST‘:
        jsondata = request.get_data()
        dictdata = json.loads(jsondata)
        ansible = Ansibles(dictdata[‘host‘]) #实例化Ansible对象
        res = ansible.shell(dictdata[‘command‘])
        return res
    else:
        return ‘<h1>Access error</h1>‘

@app.route(‘/ansible/copyfile‘, methods=[‘GET‘,‘POST‘])
def copyfile():
    if request.method == ‘POST‘:
        jsondata = request.get_data()
        dictdata = json.loads(jsondata)
        ansible = Ansibles(dictdata[‘targethost‘]) #实例化Ansible对象
        res = ansible.copyfile(str(dictdata[‘srcfile‘]),str(dictdata[‘dectdir‘]))
        return res
    else:
        return ‘<h1>Access error</h1>‘

@app.route(‘/ansible/pullfile‘,methods=[‘GET‘,‘POST‘])
def pullfile():
    if request.method == ‘POST‘:
        jsondata = request.get_data()
        dictdata = json.loads(jsondata)
        ansible = Ansibles(dictdata[‘srchost‘])
        res = ansible.pull(dictdata[‘pullsrcfile‘], dictdata[‘savelocaldir‘])
        return res
    else:
        return ‘<h1>Access error</h1>‘
if __name__ ==‘__main__‘:
    app.run(debug=True,host=‘0.0.0.0‘)

#************二、ansible_api_job.py文件
#!/user/bin/eng python
# -*- coding=utf-8 -*-
import ansible.runner

class Ansibles(object):
    def __init__(self,hostname):
        self.hostname = hostname
        hostlist = self.hostname.split(‘,‘)
        hostfile = open(‘host.txt‘, ‘w+‘)
        hostfile.writelines(‘[vmserver]‘ + ‘\n‘)
        for line in hostlist:
            hostfile.writelines(line + ‘\n‘)
        hostfile.close()

    def shell(self,command):
        results = ansible.runner.Runner(
            host_list= ‘host.txt‘,
            remote_user = ‘root‘,
            remote_pass = ‘1qaz#EDC‘,
            module_name = ‘shell‘,
            module_args = command,
            pattern = ‘vmserver‘,
            forks = 10
            ).run()
        for (hostname,result) in results[‘contacted‘].items():
            if result[‘stdout‘] == "":
                return "HOST:%s, ERROR>>(%s)" % (hostname, result[‘stderr‘])
            else:
                return "HOST:%s, RESULTS>>(%s)" % (hostname, result[‘stdout‘])

    def copyfile(self,srcfile,dectdir):
        results = ansible.runner.Runner(
            host_list=‘host.txt‘,
            remote_user=‘root‘,
            remote_pass=‘1qaz#EDC‘,
            module_name=‘copy‘,
            module_args=‘src=%s dest=%s‘ % (srcfile,dectdir),
            pattern=‘vmserver‘,
            forks=10
        ).run()
        for (hostname,result) in results[‘contacted‘].items():
            if ‘failed‘ in result:
                return "HOST:%s, ERROR>>(%s)" % (hostname,result[‘msg‘])
            else:
                return "HOST:%s, copy ok" % (hostname)

    # 文件拉取到本地
    def pull(self,pullsrcfile,savelocaldir):
        pullfileres = ansible.runner.Runner(
            host_list=‘host.txt‘,
            remote_user=‘root‘,
            remote_pass=‘1qaz#EDC‘,
            module_name=‘fetch‘,
            module_args=‘src=%s dest=%s flat=yes‘ % (pullsrcfile, savelocaldir),
            pattern=‘vmserver‘,
            forks=10
        ).run()
        for (hostname,result) in pullfileres[‘contacted‘].items():
            if ‘msg‘ in result:
                return "HOST:%s ERROR>>(%s)" % (hostname,result[‘msg‘])
            else:
                return ‘HOST:%s pull ok‘ % (hostname)
if __name__ == "__main__":
    pass
    
#*********三、urlib2调用http接口
#_*_coding:utf-8_*_
import urllib2
import json

#调用执行命令HTTP接口
def ansible_http_post_command(host,command):
    url = ‘http://192.168.89.8:5000/ansible/command‘
    data = {‘host‘: host, ‘command‘: command}
    headers = {‘Content-Type‘: ‘application/json‘}
    req = urllib2.Request(url=url, headers=headers, data=json.dumps(data))
    response = urllib2.urlopen(req)
    return response.read()
#res = ansible_http_post_command(‘vm5‘,"uname -a")
#print res

#调用传送文件到目标主机的HTTP接口
def ansible_http_post_copyfile(srcfile,targethost,dectdir):
    url = ‘http://192.168.89.8:5000/ansible/copyfile‘
    data = {‘srcfile‘: srcfile, ‘targethost‘: targethost,‘dectdir‘:dectdir}
    headers = {‘Content-Type‘: ‘application/json‘}
    req = urllib2.Request(url=url, headers=headers, data=json.dumps(data))
    response = urllib2.urlopen(req)
    return response.read()
res = ansible_http_post_copyfile(‘/tmp/12345.txt‘,‘vm4‘,‘/root/‘)
print res

#调用从目标主机中拉取文件到本地的HTTP接口
def ansible_http_post_pullsend(srchost,pullsrcfile,savelocaldir):
    url = ‘http://192.168.89.8:5000/ansible/pullfile‘
    data = {‘srchost‘:srchost,‘pullsrcfile‘:pullsrcfile,‘savelocaldir‘:savelocaldir}
    headers = {‘Content-Type‘: ‘application/json‘}
    req = urllib2.Request(url=url, headers=headers, data=json.dumps(data))
    response = urllib2.urlopen(req)
    return response.read()
#res = ansible_http_post_pullsend(‘vm2‘,‘/tmp/12345.txt‘,‘/tmp/‘)
#print res

本文出自 “FA&IT运维-Q群:223843163” 博客,请务必保留此出处http://freshair.blog.51cto.com/8272891/1879968

以上是关于通过flask框架写成http接口调用Ansible的主要内容,如果未能解决你的问题,请参考以下文章

python调用powershell,flask框架实现操作RemoteAPP接口

2 个案例带你迅速入门 Python Flask 框架

用Flask封装下Ansible提供后端API

flask_login 整合 pyjwt + json 简易flask框架

Python的Flask框架应用调用Redis队列数据的方法

给每个flask接口增加验证调用装饰器