使用Python的Azure httptrigger Blob存储

时间:2019-03-20 16:03:36

标签: python azure

我正在尝试使用python函数应用设置对blob存储的访问,但文件名是从未预先设置的发布请求中接收到的。 http触发器部分有效,但是我无法访问blob存储中的文件。这是我的json:

{
"bindings": [
{
  "authLevel": "function",
  "type": "httpTrigger",
  "direction": "in",
  "name": "req",
  "methods": [
    "post",
    "get"
  ]
},
{
  "name": "inputblob",
  "type": "blob",
  "path": "sites/{httpTrigger}",
  "connection": "STORAGE",
  "direction": "in"
},
{
  "type": "http",
  "direction": "out",
  "name": "res"
}
],
"disabled": false
}

我看到了一个使用队列触发器的示例(https://docs.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-blob#input---configuration),但是当我使用http做类似的事情时,我得到了'命名参数'httpTrigger没有值'。我的问题是我不知道如何在路径中反映python代码中分配的变量。当我做这个容器/ {变量}我得到一个空引用异常。这是我的python代码:

import os
import json
import sys
import logging
import azure.functions as func


_AZURE_FUNCTION_DEFAULT_METHOD = "GET"
_AZURE_FUNCTION_HTTP_INPUT_ENV_NAME = "req"
_AZURE_FUNCTION_HTTP_OUTPUT_ENV_NAME = "res"
_REQ_PREFIX = "REQ_"
def write_http_response(status, response):
    output = open(os.environ[_AZURE_FUNCTION_HTTP_OUTPUT_ENV_NAME], 'w')
    output.write(json.dumps(response))


env = os.environ
postreqdata = json.loads(open(env['req']).read())
print ('site: ' + postreqdata['site'])
site = postreqdata['site']+'.xlsx'
input_file = open(os.environ['inputBlob'], 'r')
clear_text = input_file.read()
input_file.close()
print("Content in the blob file: '{0}'".format(clear_text))

# Get HTTP METHOD
http_method = env['REQ_METHOD'] if 'REQ_METHOD' in env else 
_AZURE_FUNCTION_DEFAULT_METHOD
print("HTTP METHOD => {}".format(http_method))

# Get QUERY STRING
req_url = env['REQ_HEADERS_X-ORIGINAL-URL'] if 'REQ_HEADERS_X-ORIGINAL-URL' 
in env else ''
urlparts =req_url.split('?') 
query_string = urlparts[1] if len(urlparts) == 2 else ''
print("QUERY STRING => {}".format(query_string))

if http_method.lower() == 'post':
    request_body = open(env[_AZURE_FUNCTION_HTTP_INPUT_ENV_NAME], "r").read()
    print("REQUEST BODY => {}".format(request_body))

write_http_response(200, site)

注意:我已经成功地创建了连接字符串(我认为),并且我是天青,并且仅使用门户网站

1 个答案:

答案 0 :(得分:0)

这看起来像是旧版本的功能应用。在新版本中,您实际上可以使用请求处理程序为您完成所有这些工作。我刚开始使用 azure 函数,如果你想访问 blob 存储中的文件,你所要做的就是以 http 查询的形式传入文件名参数,并使用该查询参数名称作为绑定变量。 例如:

def main(req: func.HttpRequest, inputblob: func.InputStream):
   input_file_content = input_blob.read()

在你的绑定中你给

{
  "scriptFile": "__init__.py",
  "bindings": [
    {
      "authLevel": "function",
      "type": "httpTrigger",
      "direction": "in",
      "name": "req",
      "methods": [
        "get",
        "post"
      ]
    },
    {
      "type": "http",
      "direction": "out",
      "name": "$return"
    },
    {
      "type": "blob",
      "direction":"in",
      "name": "inputblob",
      "path": "upload/{filename}",
      "connection": "AzureWebJobsStorage"
    }
  ]
}

您只需使用查询参数文件名调用 api

http://localhost:7071/api/HttpTriggerFileUpload?filename=file.ext

你可以看看this