Exemple #1
0
        private bool LoadSpatiaLiteExtension(SQLiteConnection connection, bool initMetadata)
        {
            var cmdText = "SELECT load_extension('" + Path.Combine(Helper.SpatiaLiteHelper.GetPlatformBinaryDirectory(), "mod_spatialite.dll").Replace('\\', '/') + "')";

            //var cmdText = "SELECT load_extension('mod_spatialite.dll')";
            log.Debug("Loading extension \"{0}\"", cmdText);

            using (var cmd = new SQLiteCommand(cmdText, connection))
            {
                try
                {
                    cmd.ExecuteNonQuery();
                    log.Debug("OK");
                }
                catch (Exception ex)
                {
                    this.ErrorMessage = string.Format("Unable to load SpatiaLite extension: {0}", ex.Message);
                    log.Error(this.ErrorMessage);
                    return(false);
                }
            }

            if (initMetadata)
            {
                cmdText = "SELECT InitSpatialMetaData(1);";
                log.Debug("Initializing metadata \"{0}\"", cmdText);

                using (var cmd = new SQLiteCommand(cmdText, connection))
                {
                    try
                    {
                        cmd.ExecuteNonQuery();
                        log.Debug("OK");
                    }
                    catch (Exception ex)
                    {
                        this.ErrorMessage = string.Format("Unable to load SpatiaLite extension: {0}", ex.Message);
                        log.Error(this.ErrorMessage);
                        return(false);
                    }
                }
            }

            return(true);
        }
Exemple #2
0
        public async Task Execute(IJobExecutionContext context)
        {
            foreach (var item in ConfigHelper.AreaConnStrDic.Keys)
            {
                // await Task.Run(async () =>
                // {
                try
                {
                    var connStr = ConfigHelper.AreaConnStrDic[item];

                    var optionsBuilder = new DbContextOptionsBuilder <BIZContext>();
                    optionsBuilder.UseSqlServer(connStr);
                    using (var bizContext = new BIZContext(optionsBuilder.Options))
                    {
                        var realtyList = bizContext.Realty.Where(m => m.RealtyStatus == 0 && m.CommunityId.HasValue)
                                         .Select(m => new
                        {
                            m.RealtyId,
                            m.CommunityId
                        }).ToList();
                        var communityIds  = realtyList.Select(m => m.CommunityId).Distinct();
                        var communityList = bizContext.Community.Where(m => communityIds.Contains(m.CommunityId)).Select(m => new { m.CommunityId, m.SubwayLine }).ToList();
                        foreach (var rItem in realtyList)
                        {
                            var realty = new Realty {
                                RealtyId = rItem.RealtyId
                            };
                            realty.Stations = communityList.Where(m => m.CommunityId == rItem.CommunityId).Select(m => m.SubwayLine).FirstOrDefault();
                            bizContext.Entry(realty).Property("Stations").IsModified = true;
                            await bizContext.SaveChangesAsync();

                            _log.Debug($"{item} RealtyId:{realty.RealtyId} Stations:{realty.Stations} updated");
                        }
                        _log.Debug($"{item} - 刷新房源地铁信息完成");
                    }
                }
                catch (Exception ex)
                {
                    _log.Error(ex);
                    _log.Debug($"{item} - 刷新房源地铁信息失败,失败原因参照上面内容");
                }
                // });
            }
        }
Exemple #3
0
        /// <summary>
        /// Sets the environment variables so that SpatiaLite can find the dll's
        /// </summary>
        /// <returns>true if successful</returns>
        public static bool SetEnvironmentVars()
        {
            string appPath     = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
            string binFilesDir = "";

            try
            {
                binFilesDir = GetPlatformBinaryDirectory();

                //var userPath = Environment.GetEnvironmentVariable("path", EnvironmentVariableTarget.User);
                //var hasPathSet = false;
                //if (!String.IsNullOrEmpty(userPath))
                //{
                //  if (userPath.ToLower().Contains(binFilesDir.ToLower() + ";"))
                //  {
                //    hasPathSet = true;
                //  }
                //}
                //else
                //{
                //  userPath = "";
                //}
                //if (!hasPathSet)
                //{
                //  string sep = ";";
                //  if (userPath.Length == 0 || userPath.EndsWith(";"))
                //  {
                //    sep = "";
                //  }
                //  userPath = userPath + sep + binFilesDir + ";";
                //  //Environment.SetEnvironmentVariable("path", userPath, EnvironmentVariableTarget.User);
                //}

                StringBuilder sb = new StringBuilder(1024);
                GetDllDirectory(1024, sb);
                log.Debug("GetDllDirectory={0}", sb.ToString());

                if (!sb.ToString().Contains(binFilesDir))
                {
                    SetDllDirectory(binFilesDir);
                    log.Debug("SetDllDirectory={0}", binFilesDir);
                }
            }
            catch (Exception ex)
            {
                log.Error("Unable to set application path for unmanaged DLL's: {0}", ex.Message);
                return(false);
            }

            //if (binFilesDir.Length > 0)
            //{
            //  try
            //  {
            //    Utils.IO.FileUtils.CopyAll(binFilesDir, appPath);
            //  }
            //  catch (Exception ex)
            //  {
            //    log.Error("Unable to copy platform-specific binary files to application dir: {0}", ex.Message);
            //    return false;
            //  }
            //}

            return(true);
        }
Exemple #4
0
        public async Task Execute(IJobExecutionContext context)
        {
            foreach (var item in ConfigHelper.AreaConnStrDic.Keys)
            {
                if ("B024" == item)
                {
                    await Task.Run(async() =>
                    {
                        try
                        {
                            var connStr = ConfigHelper.AreaConnStrDic[item];

                            var optionsBuilder = new DbContextOptionsBuilder <BIZContext>();
                            optionsBuilder.UseSqlServer(connStr);
                            using (var bizContext = new BIZContext(optionsBuilder.Options))
                            {
                                // 读取用户最后登录事件视图
                                var employeeLoginTimes = bizContext.EmployeeLoginTime.FromSql("SELECT * FROM dbo.V_GetEmployeeOperatorTime")
                                                         .Where(m => m.LastLoginTime.HasValue || m.LastLogoutTime.HasValue).Select(m => new EmployeeLoginTime
                                {
                                    UnifiedAccountId = m.UnifiedAccountId,
                                    EmployeeName     = m.EmployeeName,
                                    EmployeeId       = m.EmployeeId,
                                    EmployeeNum      = m.EmployeeNum,
                                    DepartmentId     = m.DepartmentId,
                                    DepartmentName   = m.DepartmentName,
                                    LastLogoutTime   = m.LastLogoutTime.HasValue ? m.LastLogoutTime.Value : new DateTime(1970, 1, 1, 0, 0, 0),
                                    LastLoginTime    = m.LastLoginTime.HasValue ? m.LastLoginTime.Value : new DateTime(1970, 1, 1, 0, 0, 0)
                                }).ToList();
                                foreach (var eTime in employeeLoginTimes)
                                {
                                    var lastTime = eTime.LastLoginTime.Value > eTime.LastLogoutTime.Value ? eTime.LastLoginTime.Value : eTime.LastLogoutTime.Value;
                                    // 判断是否超出72小时
                                    // if (72 <= DateTime.Now.Subtract(lastTime).Hours)
                                    // 临时测试 10分钟冻结账号
                                    if (10 <= DateTime.Now.Subtract(lastTime).Minutes)
                                    {
                                        // 冻结此账号
                                        using (var channel = ConnectionHelper.GetConnection(SystemEnum.UnityAccount).CreateModel())
                                        {
                                            var client = new UnitAccountRpcClient(channel, "UnityAccount", ExchangeType.Topic, "UnityAccount.User");
                                            client.UserFreeze(eTime.UnifiedAccountId, UnitAccountRpcClient.UserStatusEnum.Block);
                                        }
                                        // 发送事务提醒给该经纪人的直属上级(分行经理)以及该加盟商的人事负责人
                                        var deptId = await bizContext.EmployeeInfo.FromSql($"SELECT * FROM V_GetEmployeeInfo WHERE UnifiedAccountID={eTime.UnifiedAccountId}")
                                                     .Select(m => m.DepartmentId).FirstOrDefaultAsync();
                                        var theManager = await bizContext.EmployeeInfo.FromSql($"SELECT * FROM V_GetEmployeeInfo WHERE DepartmentID={deptId} AND IsManager=1")
                                                         .FirstOrDefaultAsync();
                                        if (null != theManager)
                                        {
                                            var newRemind = new RemindingInTime
                                            {
                                                CreatorId             = 0,
                                                CreatorName           = "系统提醒",
                                                CreatorDepartmentName = "系统",
                                                RecipientId           = theManager.EmployeeId,
                                                RecipientName         = theManager.EmployeeName,
                                                RemindingTime         = DateTime.Now,
                                                Status        = 0,
                                                RemindingType = 0,
                                                Content       = $"【{eTime.DepartmentName}】【{eTime.EmployeeName}】的账号已冻结,原因是:三日未登录系统。",
                                                SourceType    = 0,
                                                SourceSubType = 0,
                                                SourceCode    = eTime.EmployeeNum,
                                                SourceId      = eTime.EmployeeId.ToString()
                                            };
                                            bizContext.RemindingInTime.Add(newRemind);
                                        }
                                        // 获取所有加盟商人事负责人
                                        var franchiseesManagers = await bizContext.EmployeeInfo.FromSql(
                                            $"SELECT c.* " +
                                            $"FROM FranchiseesManager a " +
                                            $"  INNER JOIN V_GetEmployeeInfo c ON a.Account_ID = c.UnifiedAccountID " +
                                            $"WHERE a.Frc_ID IN ( " +
                                            $"  SELECT DISTINCT b.FrcID " +
                                            $"  FROM V_GetEmployeeInfo b " +
                                            $"  WHERE b.DepartmentID = {eTime.DepartmentId} " +
                                            $") AND a.Deleted_flag <> 1 " +
                                            $"AND PositionType = 0").ToListAsync();
                                        foreach (var frcManager in franchiseesManagers)
                                        {
                                            // 为每个管理者设置提醒
                                            var newRemind = new RemindingInTime
                                            {
                                                CreatorId             = 0,
                                                CreatorName           = "系统提醒",
                                                CreatorDepartmentName = "系统",
                                                RecipientId           = frcManager.EmployeeId,
                                                RecipientName         = frcManager.EmployeeName,
                                                RemindingTime         = DateTime.Now,
                                                Status        = 0,
                                                RemindingType = 0,
                                                Content       = $"【{eTime.DepartmentName}】【{eTime.EmployeeName}】的账号已冻结,原因是:三日未登录系统。",
                                                SourceType    = 0,
                                                SourceSubType = 0,
                                                SourceCode    = eTime.EmployeeNum,
                                                SourceId      = eTime.EmployeeId.ToString()
                                            };
                                            bizContext.RemindingInTime.Add(newRemind);
                                        }
                                        // 提交数据
                                        await bizContext.SaveChangesAsync();
                                    }
                                }
                            }
                        }
                        catch (Exception ex)
                        {
                            _log.Error(ex);
                            _log.Debug($"{item} - 刷新员工状态信息失败,失败原因参照上面内容");
                        }
                    });
                }
            }
        }