web-dev-qa-db-fra.com

ExecutionContext dans l'implémentation Azure Function IWebJobsStartup

Comment accéder à ExecutionContext.FunctionAppDirectory dans la classe de démarrage des fonctions afin que je puisse configurer correctement ma configuration. Veuillez consulter le code de démarrage suivant:

[Assembly: WebJobsStartup(typeof(FuncStartup))]
namespace Function.Test
{
    public class FuncStartup : IWebJobsStartup
    {
        public void Configure(IWebJobsBuilder builder)
        {
            var config = new ConfigurationBuilder()
               .SetBasePath(“”/* How to get the Context here. I cann’t DI it 
                           as it requires default constructor*/)
               .AddJsonFile(“local.settings.json”, true, reloadOnChange: true)
               .AddEnvironmentVariables()
               .Build();

        }
    }
 }
10
Soma Yarlagadda

Vous n'avez pas le ExecutionContext car votre fonction Azure ne traite pas encore un appel de fonction réel. Mais vous n'en avez pas besoin non plus - le fichier local.settings.json est automatiquement analysé dans les variables d'environnement.

Si vous avez vraiment besoin du répertoire, vous pouvez utiliser %HOME%/site/wwwroot dans Azure et AzureWebJobsScriptRoot lors de l'exécution locale. C'est l'équivalent de FunctionAppDirectory.

This est également une bonne discussion sur ce sujet.

    public void Configure(IWebJobsBuilder builder)
    {
        var local_root = Environment.GetEnvironmentVariable("AzureWebJobsScriptRoot");
        var Azure_root = $"{Environment.GetEnvironmentVariable("HOME")}/site/wwwroot";

        var actual_root = local_root ?? Azure_root;

        var config = new Microsoft.Extensions.Configuration.ConfigurationBuilder()
            .SetBasePath(actual_root)
            .AddJsonFile("SomeOther.json")
            .AddEnvironmentVariables()
            .Build();

        var appInsightsSetting = config.GetSection("APPINSIGHTS_INSTRUMENTATIONKEY");
        string val = appInsightsSetting.Value;
        var helloSetting = config.GetSection("hello");
        string val = helloSetting.Value;

        //...
    }

Exemple local.settings.json:

{
  "IsEncrypted": false,
  "Values": {
    "APPINSIGHTS_INSTRUMENTATIONKEY": "123456..."
  }
}

Exemple SomeOther.json

{
  "hello":  "world"
}
11
Alex AIT

Utilisez le code ci-dessous, cela a fonctionné pour moi.

var executioncontextoptions = builder.Services.BuildServiceProvider()
         .GetService<IOptions<ExecutionContextOptions>>().Value;

var currentDirectory = executioncontextoptions.AppDirectory;

configuration = configurationBuilder.SetBasePath(currentDirectory)
          .AddJsonFile(ConfigFile, optional: false, reloadOnChange: true)    
          .Build();
7
Vamshi CH