Exemplo n.º 1
0
 //private static bool _firstRun = true;
 internal static void Start()
 {
     lock (Lock)
     {
         if (_running)
         {
             return;
         }
         //if(_firstRun)
         //{
         //    var temp = new Elmah.Base.ElmahErrorLogManager(null);
         //    var temp2 = new ActionLogManager(new FileSystemManager());
         //    _firstRun = false;
         //}
         HostingEnvironment.QueueBackgroundWorkItem(cancellationToken =>
         {
             while (!cancellationToken.IsCancellationRequested)
             {
                 ActionLogManager.BackGroundLogOperation();
                 Elmah.Base.ElmahErrorLogManager.BackGroundLogOperation();
                 Thread.Sleep(Config.LogBackgroundJobIntervalsInMilliseconds);
             }
         });
         _running = true;
     }
 }
        public ActionResult Index()
        {
            ClanUser         clanUser = HttpContext.GetCurrentLoginInformation();
            List <ActionLog> logs     = ActionLogManager.GetAll().OrderByDescending(p => p.addedOn).ToList();

            return(View(logs));
        }
Exemplo n.º 3
0
        protected void SaveActionLog(string strOperation, string strData)
        {
            ActionLog al = new ActionLog();

            al.LogDate   = DateTime.Now;
            al.IP        = this.Request.ServerVariables["REMOTE_ADDR"];
            al.PageTitle = this.Page.Title;
            al.Path      = this.Request.RawUrl;
            al.UserName  = User.Identity.Name;
            al.Operation = strOperation;
            al.Data      = strData;
            ActionLogManager alManager = new ActionLogManager();

            alManager.SaveActionLog(al);
        }
Exemplo n.º 4
0
    public void TryUnlock()
    {
        Item equippedItem = InventoryPanel.CurrentlySelectedItem();

        if (equippedItem == null)
        {
            ActionLogManager.LogActionStatic(typicalResponse);
        }
        else if (equippedItem != requiredItem)
        {
            ActionLogManager.LogActionStatic("It didn't have any effect.");
        }
        else
        {
            InventoryPanel.UnEquipStatic();
            ServiceLocator.GetService <Inventory>().RemoveItem(requiredItem);
            action.Invoke();
        }
    }
Exemplo n.º 5
0
        protected override void OnActionExecuting(ActionExecutingContext filterContext)
        {
            //Create ActionLog object to insert
            ActionLog log = new ActionLog()
            {
                Date   = DateTime.Now,
                IP     = HttpContextHelper.GetHostName(),
                Action = RouteData.Values["action"].ToString()
            };

            //Add IP to the list
            ActionLogManager.Insert(log);

            //Fill ViewBag
            ViewBag.Version           = $"?n={ConfigurationManager.AppSettings["StaticContentVersion"]}";
            ViewBag.LastIPsAndActions = ActionLogManager.GetList();
            ViewBag.Streamers         = NAudioStreamer.GetStreamers();

            base.OnActionExecuting(filterContext);
        }
Exemplo n.º 6
0
        private void LoadLoginLogs()
        {
            try
            {
                ActionLogManager action   = new ActionLogManager();
                DateTime         FromDate = DateParse(txtFromDate.Text.Trim());
                DateTime         ToDate   = DateParse(txtToDate.Text.Trim());
                string           UserName = "";

                DataTable dt = action.GetLoginLogs(FromDate, ToDate, UserName);
                if (dt.Rows.Count > 0)
                {
                    DataView dv = dt.DefaultView;
                    if (txtUserName.Text.Trim() != "")
                    {
                        dv.RowFilter = "UserName = '******'";
                    }

                    gvLoginLogs.DataSource = dv;
                    gvLoginLogs.DataBind();

                    gvLoginLogs.Visible = true;
                    tblNoData.Visible   = false;
                    tblError.Visible    = false;
                }
                else
                {
                    gvLoginLogs.Visible = false;
                    tblNoData.Visible   = true;
                    tblError.Visible    = false;
                }
            }
            catch (Exception ex)
            {
                gvLoginLogs.Visible = false;
                tblNoData.Visible   = false;
                tblError.Visible    = true;

                SaveErrorLog(ex);
            }
        }
Exemplo n.º 7
0
        private void LoadActionLogs()
        {
            try
            {
                ActionLogManager action   = new ActionLogManager();
                DateTime         FromDate = DateParse(txtFromDate.Text.Trim());
                DateTime         ToDate   = DateParse(txtToDate.Text.Trim());
                int    SearchType         = int.Parse(ddlSearchType.SelectedValue);
                string Keyword            = txtKeyword.Text.Trim();

                DataTable dt = action.SearchActionLogs(FromDate, ToDate, SearchType, Keyword);
                if (dt.Rows.Count > 0)
                {
                    gvActionLogs.DataSource = dt;
                    gvActionLogs.DataBind();

                    gvActionLogs.Visible = true;
                    tblNoData.Visible    = false;
                    tblError.Visible     = false;
                }
                else
                {
                    gvActionLogs.Visible = false;
                    tblNoData.Visible    = true;
                    tblError.Visible     = false;
                }
            }
            catch (Exception ex)
            {
                gvActionLogs.Visible = false;
                tblNoData.Visible    = false;
                tblError.Visible     = true;

                SaveErrorLog(ex);
            }
        }
Exemplo n.º 8
0
        public void Configuration(IAppBuilder app)
        {
            //start log time
            var startTime = DateTime.Now.TimeOfDay.ToString();


            // Get your HttpConfiguration.
            var config = new HttpConfiguration();

            GlobalRegistration(config);

            var builder = new ContainerBuilder();

            builder.RegisterModule <AutofacWebTypesModule>();



            // REGISTER DEPENDENCIES

            //Begin Register Entity FrameWork Extended For Oracle
            //EntityFramework.Locator.Current.Register<EntityFramework.Batch.IBatchRunner>(() => new OracleBatchRunner());
            //End Register Entity FrameWork Extended For Oracle
            builder.RegisterType <DependencyAdapter>().As <IDependencyAdapter>().InstancePerLifetimeScope();

            builder.RegisterType <NotificationManager>().As <INotificationManager>().InstancePerLifetimeScope();
            builder.Register(c => new ElmahErrorLogManager(null)).As <IElmahErrorLogManager>().InstancePerLifetimeScope();
            builder.RegisterType <ErrorLogManager>().As <IErrorLogManager>().InstancePerLifetimeScope();
            builder.RegisterType <DefaultCalendar>().As <IDefaultCalendar>().InstancePerLifetimeScope();
            builder.RegisterType <ActionLogManager>().As <IActionLogManager>().InstancePerLifetimeScope();
            builder.RegisterType <SessionManager>().As <ISessionManager>().InstancePerLifetimeScope();
            builder.RegisterType <DefaultCookieAdapter>().As <IDefaultCookieAdapter>().InstancePerLifetimeScope();
            builder.RegisterType <ZipManager>().As <IZipManager>().InstancePerLifetimeScope();
            builder.RegisterType <BundleManager>().As <IBundleManager>().InstancePerLifetimeScope();
            builder.RegisterType <DefaultLanguageAdapter>().As <ILanguageAdapter>().InstancePerLifetimeScope();
            builder.RegisterType <DefaultSettingsAdapter>().As <IDefaultSettingsAdapter>().InstancePerLifetimeScope();
            builder.RegisterType <WebConfigManager>().As <IWebConfigManager>().InstancePerLifetimeScope();
            builder.RegisterType <DataBaseManager>().As <IDataBaseManager>().InstancePerLifetimeScope();
            builder.RegisterType <CodeTemplate>().As <ICodeTemplate>().InstancePerLifetimeScope();
            builder.RegisterType <SourceControl>().As <ISourceControl>().InstancePerLifetimeScope();
            builder.RegisterType <RemoteMigration>().As <IMigration>().InstancePerLifetimeScope();
            builder.RegisterType <UnitTester>().As <IUnitTester>().InstancePerLifetimeScope();
            builder.RegisterType <FilesHandler>().As <IFilesHandler>().InstancePerLifetimeScope();

            builder.RegisterType <FileSystemManager>().As <IFileSystemManager>().InstancePerLifetimeScope();


            builder.RegisterType <DefaultAuthorizeAdapter>().As <IDefaultAuthorizeAdapter>().InstancePerLifetimeScope();

            builder.RegisterType <DefaultCacheAdapter>().As <IDefaultCacheAdapter>().InstancePerLifetimeScope();
            builder.RegisterType <DefaultCurrentUserAdapter>().As <IDefaultCurrentUserAdapter>().InstancePerLifetimeScope();

            builder.RegisterType <Debugger>().As <IDebugger>().InstancePerLifetimeScope();
            builder.RegisterType <ImageManager>().As <IImageManager>().InstancePerLifetimeScope();
            builder.RegisterType <CompressManager>().As <ICompressManager>().InstancePerLifetimeScope();
            builder.RegisterType <Compiler>().As <ICompiler>().InstancePerLifetimeScope();
            builder.RegisterType <SqlHelper>().As <ISqlHelper>().InstancePerLifetimeScope();
            builder.RegisterType <DataBaseContextManager>().As <IDataBaseContextManager>().InstancePerLifetimeScope();
            builder.RegisterType <SecurityContext>().As <ISecurityContext>().InstancePerLifetimeScope();
            builder.RegisterType <SecurityContext>().AsSelf().InstancePerLifetimeScope();
            builder.RegisterType <SecurityBiz>().As <ISecurityBiz>().InstancePerLifetimeScope();

            builder.RegisterType <ContentManagementContext>().As <IContentManagementContext>().InstancePerLifetimeScope();
            builder.RegisterType <WebPageBiz>().As <IWebPageBiz>().InstancePerLifetimeScope();
            builder.RegisterType <MasterDataKeyValueBiz>().As <IMasterDataKeyValueBiz>().InstancePerLifetimeScope();
            builder.RegisterType <ServiceBiz>().As <IServiceBiz>().InstancePerLifetimeScope();
            builder.RegisterType <LanguageAndCultureBiz>().As <ILanguageAndCultureBiz>().InstancePerLifetimeScope();
            builder.RegisterType <LinkBiz>().As <ILinkBiz>().InstancePerLifetimeScope();
            builder.RegisterType <EntityGroupBiz>().As <IEntityGroupBiz>().InstancePerLifetimeScope();
            builder.RegisterType <FileSystemBiz>().As <IFileSystemBiz>().InstancePerLifetimeScope();
            builder.RegisterType <FilePathBiz>().As <IFilePathBiz>().InstancePerLifetimeScope();
            builder.RegisterType <FileBiz>().As <IFileBiz>().InstancePerLifetimeScope();
            builder.RegisterType <BrowserCodeBiz>().As <IBrowserCodeBiz>().InstancePerLifetimeScope();
            builder.RegisterType <WebConfigBiz>().As <IWebConfigBiz>().InstancePerLifetimeScope();
            builder.RegisterType <PermissionBiz>().As <IPermissionBiz>().InstancePerLifetimeScope();
            builder.RegisterType <SqlServerBiz>().As <ISqlServerBiz>().InstancePerLifetimeScope();
            builder.RegisterType <ErrorLogBiz>().As <IErrorLogBiz>().InstancePerLifetimeScope();
            builder.RegisterType <ActionLogBiz>().As <IActionLogBiz>().InstancePerLifetimeScope();
            builder.RegisterType <DotNetBiz>().As <IDotNetBiz>().InstancePerLifetimeScope();
            builder.RegisterType <SmsService>().AsSelf().InstancePerLifetimeScope();
            builder.RegisterType <EmailService>().AsSelf().InstancePerLifetimeScope();
            builder.RegisterType <ApplicationPasswordHasher>().As <IPasswordHasher>().InstancePerLifetimeScope();

            builder.RegisterType <LocalizeUserValidator <ApplicationUser, int> >().As <IIdentityValidator <ApplicationUser> >().InstancePerLifetimeScope().OnActivating(e => e.Instance.Initialize());
            builder.RegisterType <LocalizePasswordValidator>().As <IIdentityValidator <string> >().InstancePerLifetimeScope().OnActivating(e => e.Instance.Initialize());

            builder.RegisterType <ApplicationUserStore>().As <IUserStore <ApplicationUser, int> >().InstancePerLifetimeScope();
            //builder.Register<IdentityFactoryOptions<ApplicationUserManager>>(c => new IdentityFactoryOptions<ApplicationUserManager>()
            //{
            //    DataProtectionProvider = new Microsoft.Owin.Security.DataProtection.DpapiDataProtectionProvider("Khodkar")
            //});
            builder.RegisterType <ApplicationUserManager>().AsSelf().InstancePerLifetimeScope().PropertiesAutowired(PropertyWiringOptions.AllowCircularDependencies);
            //builder.RegisterType<ApplicationUserManager>().As<UserManager<ApplicationUser, int>>().InstancePerLifetimeScope().PropertiesAutowired(PropertyWiringOptions.AllowCircularDependencies);

            builder.RegisterType <ApplicationRoleStore>().As <IRoleStore <ApplicationRole, int> >().InstancePerLifetimeScope();
            builder.RegisterType <ApplicationRoleManager>().AsSelf().InstancePerLifetimeScope();

            //builder.RegisterType<GroupStoreBase>().AsSelf().InstancePerLifetimeScope();
            //builder.RegisterType<ApplicationGroupStore>().AsSelf().InstancePerLifetimeScope();
            //builder.RegisterType<ApplicationGroupManager>().AsSelf().InstancePerLifetimeScope();

            builder.RegisterType <ApplicationSignInManager>().AsSelf().InstancePerLifetimeScope();

            builder.Register <IAuthenticationManager>(c => HttpContext.Current.GetOwinContext().Authentication).InstancePerLifetimeScope();
            builder.Register <IDataProtectionProvider>(c => app.GetDataProtectionProvider()).InstancePerLifetimeScope();

            //start mvc
            // REGISTER CONTROLLERS SO DEPENDENCIES ARE CONSTRUCTOR INJECTED
            builder.RegisterControllers(typeof(MvcApplication).Assembly);

            // OPTIONAL: Enable property injection into action filters.
            builder.RegisterFilterProvider();

            //end mvc
            // Register your Web API controllers.
            builder.RegisterApiControllers(Assembly.GetExecutingAssembly());

            // OPTIONAL: Register the Autofac filter provider.
            builder.RegisterWebApiFilterProvider(config);

            // register modules
            //builder.RegisterModule(new ConfigurationSettingsReader("autofac"));


            builder.Register(c => new LogMainEntryServiceAttribute(c.Resolve <IActionLogManager>(), c.Resolve <IDataBaseContextManager>()))
            .AsActionFilterFor <MvcController>(c => c.GetWebPage(default(string)))
            .InstancePerLifetimeScope();

            builder.Register(c => new AuthorizeByLogAndCheckCacheOfServiceAttribute(c.Resolve <IErrorLogManager>()
                                                                                    , c.Resolve <IActionLogManager>()))
            .AsWebApiAuthorizationFilterFor <BaseAuthorizedWebApiController>()
            .InstancePerRequest();

            builder.Register(c => new AuthorizeByLogOfODataServiceAttribute(c.Resolve <IErrorLogManager>()
                                                                            , c.Resolve <IActionLogManager>()))
            .AsWebApiAuthorizationFilterFor <BaseAuthorizedODataController>()
            .InstancePerRequest();

            builder.Register(c => new LogOfODataServiceAttribute(c.Resolve <IErrorLogManager>(), c.Resolve <IDataBaseContextManager>()
                                                                 , c.Resolve <IActionLogManager>()))
            .AsWebApiActionFilterFor <BasePublicODataController>()
            .InstancePerRequest();

            builder.Register(c => new LogAndCheckCacheOfServiceAttribute(c.Resolve <IErrorLogManager>(), c.Resolve <IDataBaseContextManager>()
                                                                         , c.Resolve <IActionLogManager>()))
            .AsWebApiActionFilterFor <BasePublicWebApiController>()
            .InstancePerRequest();

            builder.Register(c => new ExceptionFilterAttribute())
            .AsWebApiExceptionFilterFor <BasePublicWebApiController>()
            .InstancePerRequest();

            builder.Register(c => new ExceptionFilterAttribute())
            .AsWebApiExceptionFilterFor <BasePublicODataController>()
            .InstancePerRequest();

            builder.Register(c => new ExceptionFilterAttribute())
            .AsWebApiExceptionFilterFor <BaseAuthorizedODataController>()
            .InstancePerRequest();

            builder.Register(c => new ExceptionFilterAttribute())
            .AsWebApiExceptionFilterFor <BaseAuthorizedWebApiController>()
            .InstancePerRequest();

            // Autofac will add middleware to IAppBuilder in the order registered.
            // The middleware will execute in the order added to IAppBuilder.
            builder.RegisterType <ActionLogMiddleware>().InstancePerLifetimeScope();
            builder.RegisterType <ActionLogSpecialServicesMiddleware>().InstancePerLifetimeScope();
            builder.RegisterType <LanguageAndCultureMiddleware>().InstancePerLifetimeScope();

            builder.RegisterType <WebPageMiddleware>().InstancePerLifetimeScope();

            // BUILD THE CONTAINER
            var container = builder.Build();

            // REPLACE THE MVC DEPENDENCY RESOLVER WITH AUTOFAC
            DependencyResolver.SetResolver(new AutofacDependencyResolver(container));

            //******************************************************************************************
            // REPLACE THE WebApi DEPENDENCY RESOLVER WITH AUTOFAC
            config.DependencyResolver = new AutofacWebApiDependencyResolver(container);
            //******************************************************************************************

            // OWIN WEB API SETUP:

            // Register the Autofac middleware FIRST, then the Autofac Web API middleware,
            // and finally the standard Web API middleware.


            // This adds ONLY the Autofac lifetime scope to the pipeline.
            app.UseAutofacLifetimeScopeInjector(container);
            // REGISTER WITH OWIN
            //app.UseAutofacMiddleware(container);


            app.UseMiddlewareFromContainer <LanguageAndCultureMiddleware>();
            app.UseMiddlewareFromContainer <ActionLogMiddleware>();
            app.UseMiddlewareFromContainer <ActionLogSpecialServicesMiddleware>();


            ConfigureAuth(app);

            app.UseMiddlewareFromContainer <WebPageMiddleware>();

            // Any connection or hub wire up and configuration should go here
            app.Map("/signalr", map =>
            {
                //uncomment blow line if you want cross domain signalR
                //map.UseCors(CorsOptions.AllowAll);

                map.UseOAuthBearerAuthentication(new OAuthBearerAuthenticationOptions()
                {
                    Provider = new QueryStringOAuthBearerProvider()
                });

                map.RunSignalR();
            });

            app.UseAutofacMvc();
            app.UseAutofacWebApi(config);
            app.UseWebApi(config);

            //log StartUp
            var dataTime = DateTime.UtcNow;

            var actionLogManager = new ActionLogManager(new FileSystemManager());

            actionLogManager.Log(new ActionLog()
            {
                DateTime      = dataTime,
                Ip            = CurrentUserManager.Ip,
                IsDebugMode   = true,
                IsMobileMode  = Settings.IsMobileMode,
                LocalDateTime = LanguageManager.ToLocalDateTime(dataTime),
                Name          = "StartUp",
                ServiceUrl    = "/StartUp",
                Url           = "/StartUp",
                User          = CurrentUserManager.UserName,
                IsSuccessed   = true,
                ExecutionTimeInMilliseconds = (DateTime.Now.TimeOfDay - TimeSpan.Parse(startTime)).TotalMilliseconds
            });
        }