コード例 #1
0
 public void Bootstrapp(IFramework framework)
 {
     framework.AddSingletonService <IAzureStorageConfig, AzureStorageConfig>();
     framework.AddTransientService <IAzureBlob, AzureBlob>();
     framework.AddTransientService <IAzureBlobQueue, AzureBlobQueue>();
     framework.AddTransientService <IAzureBlobTable, AzureBlobTable>();
     framework.AddTransientService(typeof(IAzureBlobTableRepository <>), typeof(AzureBlobTableRepository <>));
     framework.AddTransientService(typeof(IRepositoryCommands <>), typeof(AzureBlobTableRepository <>));
     framework.AddTransientService(typeof(IRepositoryQueries <>), typeof(AzureBlobTableRepository <>));
 }
コード例 #2
0
 public void Bootstrapp(IFramework framework)
 {
     framework.AddSingletonService <IIoTHubConfig, IoTHubConfig>();
     framework.AddTransientService <IIoTHub, IoTHub>();
 }
コード例 #3
0
 public void Bootstrapp(IFramework framework)
 {
     framework.AddSingletonService <IAuthenticationFilter, AuthenticationFilter>();
 }
コード例 #4
0
 public void Bootstrapp(IFramework framework)
 {
     framework.AddSingletonService <IOAuthServer, OAuthServer>();
     framework.AddSingletonService <IOAuthSecurityKeyProvider, OAuthSecurityKeyProvider>();
     framework.AddSingletonService <IOAuthBearerToken, OAuthBearerToken>();
 }
コード例 #5
0
ファイル: DbModule.cs プロジェクト: qooba/Qooba.Framework
 public void Bootstrapp(IFramework framework)
 {
     framework.AddSingletonService <IDbConfig, DbConfig>();
 }
コード例 #6
0
 public static IFramework AddConfigurationJsonFile(this IFramework framework, string path)
 {
     builder.AddJsonFile(path);
     return(framework.AddSingletonService(typeof(Abstractions.IConfiguration), s => config.Value));
 }
コード例 #7
0
 public static IFramework AddConfigurationRoot(this IFramework framework, IConfigurationRoot configurationRoot)
 {
     return(framework.AddSingletonService(typeof(Abstractions.IConfiguration), new Config(configurationRoot)));
 }
コード例 #8
0
 public void Bootstrapp(IFramework framework)
 {
     framework.AddSingletonService <IDocumentDbConfig, DocumentDbConfig>();
     framework.AddTransientService(typeof(IDocumentDbRepository <>), typeof(DocumentDbRepository <>));
 }
コード例 #9
0
 public void Bootstrapp(IFramework framework)
 {
     framework.AddSingletonService <IAzureSearchConfig, AzureSearchConfig>();
     framework.AddTransientService <IAzureSearch, AzureSearch>();
 }
コード例 #10
0
        public void Bootstrapp(IFramework framework)
        {
            framework.AddService(s => s.Service <IConnector>().As <MessangerConnector>().Keyed(ConnectorType.Messanger));
            framework.AddTransientService <IMessangerSecurity, MessangerSecurity>();
            framework.AddService(s => s.Service <IDispatcher>().As <MessangerDispatcher>().Keyed(ConnectorType.Messanger));
            framework.AddService(s => s.Service <IUserManager>().As <MessangerUserManager>().Keyed(ConnectorType.Messanger));

            framework.AddService(s => s.Service <IHandler>().As <ContextHandler>().Keyed(HandlerType.Context));
            framework.AddService(s => s.Service <IHandler>().As <UserDataHandler>().Keyed(HandlerType.UserData));
            framework.AddService(s => s.Service <IHandler>().As <RouteHandler>().Keyed(HandlerType.Route));
            framework.AddService(s => s.Service <IHandler>().As <ReplyHandler>().Keyed(HandlerType.Reply));
            framework.AddService(s => s.Service <IHandler>().As <DispatchHandler>().Keyed(HandlerType.Dispatch));
            framework.AddService(s => s.Service <IHandler>().As <ContextKeeperHandler>().Keyed(HandlerType.ContextKeeper));

            framework.AddService(s => s.Service <IUserManager>().As <MessangerUserManager>().Keyed(ConnectorType.Messanger));

            framework.AddService(s => s.Service <IReplyBuilder>().As <RawReplyBuilder>().Keyed("raw"));
            framework.AddService(s => s.Service <IReplyBuilder>().As <TextReplyBuilder>().Keyed("text"));
            framework.AddService(s => s.Service <IReplyBuilder>().As <ImageReplyBuilder>().Keyed("image"));
            framework.AddService(s => s.Service <IReplyBuilder>().As <VideoReplyBuilder>().Keyed("video"));
            framework.AddService(s => s.Service <IReplyBuilder>().As <AudioReplyBuilder>().Keyed("audio"));
            framework.AddService(s => s.Service <IReplyBuilder>().As <FileReplyBuilder>().Keyed("file"));
            framework.AddService(s => s.Service <IReplyBuilder>().As <EnumReplyBuilder>().Keyed("enum"));
            framework.AddService(s => s.Service <IReplyBuilder>().As <LocationReplyBuilder>().Keyed("location"));
            framework.AddService(s => s.Service <IReplyBuilder>().As <FormReplyBuilder>().Keyed("form"));
            framework.AddService(s => s.Service <IReplyBuilder>().As <HttpReplyBuilder>().Keyed("http"));
            framework.AddService(s => s.Service <IReplyBuilder>().As <ButtonTemplateReplyBuilder>().Keyed("buttonTemplate"));
            framework.AddService(s => s.Service <IReplyBuilder>().As <CarouselReplyBuilder>().Keyed("carousel"));
            framework.AddService(s => s.Service <IReplyBuilder>().As <ListReplyBuilder>().Keyed("list"));
            framework.AddService(s => s.Service <IReplyBuilder>().As <CallReplyBuilder>().Keyed("call"));

            framework.AddService(s => s.Service <IReplyBuilder <RawReplyMessage> >().As <RawReplyBuilder>());
            framework.AddService(s => s.Service <IReplyBuilder <TextReplyMessage> >().As <TextReplyBuilder>());
            framework.AddService(s => s.Service <IReplyBuilder <ImageReplyMessage> >().As <ImageReplyBuilder>());
            framework.AddService(s => s.Service <IReplyBuilder <VideoReplyMessage> >().As <VideoReplyBuilder>());
            framework.AddService(s => s.Service <IReplyBuilder <AudioReplyMessage> >().As <AudioReplyBuilder>());
            framework.AddService(s => s.Service <IReplyBuilder <FileReplyMessage> >().As <FileReplyBuilder>());
            framework.AddService(s => s.Service <IReplyBuilder <EnumReplyMessage> >().As <EnumReplyBuilder>());
            framework.AddService(s => s.Service <IReplyBuilder <LocationReplyMessage> >().As <LocationReplyBuilder>());
            framework.AddService(s => s.Service <IReplyBuilder <FormReplyMessage> >().As <FormReplyBuilder>());
            framework.AddService(s => s.Service <IReplyBuilder <HttpReplyMessage> >().As <HttpReplyBuilder>());
            framework.AddService(s => s.Service <IReplyBuilder <ButtonTemplateReplyMessage> >().As <ButtonTemplateReplyBuilder>());
            framework.AddService(s => s.Service <IReplyBuilder <CarouselReplyMessage> >().As <CarouselReplyBuilder>());
            framework.AddService(s => s.Service <IReplyBuilder <ListReplyMessage> >().As <ListReplyBuilder>());
            framework.AddService(s => s.Service <IReplyBuilder <CallReplyMessage> >().As <CallReplyBuilder>());

            framework.AddService(s => s.Service <IFormReplyCompletionAction>().As <TextFormReplyCompletionAction>().Keyed("text"));
            framework.AddService(s => s.Service <IFormReplyCompletionAction>().As <HttpFormReplyCompletionAction>().Keyed("http"));

            framework.AddTransientService <IHandlerManager, HandlerManager>();
            framework.AddSingletonService <IReplyConfiguration, ReplyManager>();
            framework.AddSingletonService <IReplyFactory, ReplyFactory>();
            framework.AddSingletonService <IRoutingConfiguration, ReplyManager>();
            framework.AddSingletonService <IGenericExpressionFactory, GenericExpressionFactory>();

            framework.AddService(s => s.Service <IRouter>().As <DefaultRouter>().Keyed(nameof(DefaultRouter)));
            framework.AddService(s => s.Service <IRouter>().As <RegexRouter>().Keyed(nameof(RegexRouter)).Lifetime(Lifetime.Singleton));

            framework.AddTransientService <IMessageQueue, MemoryMessageQueue>();
            framework.AddTransientService <IBot, QBot>();
            framework.AddSingletonService <IBotConfig, BotConfig>();
            framework.AddTransientService <Func <object, IReplyBuilder> >(s => (Func <object, IReplyBuilder>)((key) => (IReplyBuilder)s.GetService(key, typeof(IReplyBuilder))));
            framework.AddTransientService <Func <object, IDispatcher> >(s => (Func <object, IDispatcher>)((key) => (IDispatcher)s.GetService(key, typeof(IDispatcher))));
            framework.AddTransientService <Func <object, IUserManager> >(s => (Func <object, IUserManager>)((key) => (IUserManager)s.GetService(key, typeof(IUserManager))));
            framework.AddTransientService <Func <object, IFormReplyCompletionAction> >(s => (Func <object, IFormReplyCompletionAction>)((key) => (IFormReplyCompletionAction)s.GetService(key, typeof(IFormReplyCompletionAction))));
            framework.AddTransientService <Func <object, IFormReplyPropertyActiveConstraint> >(s => (Func <object, IFormReplyPropertyActiveConstraint>)((key) => (IFormReplyPropertyActiveConstraint)s.GetService(key, typeof(IFormReplyPropertyActiveConstraint))));
            framework.AddTransientService <Func <object, IFormReplyPropertyValidator> >(s => (Func <object, IFormReplyPropertyValidator>)((key) => (IFormReplyPropertyValidator)s.GetService(key, typeof(IFormReplyPropertyValidator))));
            framework.AddTransientService <Func <object, IFormReplyPropertyConfirmation> >(s => (Func <object, IFormReplyPropertyConfirmation>)((key) => (IFormReplyPropertyConfirmation)s.GetService(key, typeof(IFormReplyPropertyConfirmation))));

            framework.AddService(s => s.Service <ReplyItem>().As(new ReplyItem()));
        }