Exemple #1
0
            private static void FillHrInfoEntity(LaGouHrInfoEntity target, JToken info)
            {
                long   userId   = info.Value <long>("userId");
                string name     = info.Value <string>("realName");
                string position = info.Value <string>("positionName");
                string level    = info.Value <string>("userLevel");

                target.UserId   = userId;
                target.Name     = name;
                target.Position = position;
                target.Level    = level;
            }
Exemple #2
0
            private static LaGouResponseItem CreateResponseItem(JToken jsonItem)
            {
                //Position
                long     positionId        = jsonItem.Value <long>("positionId");
                string   positionName      = jsonItem.Value <string>("positionName");
                string   firstType         = jsonItem.Value <string>("firstType");
                string   secondType        = jsonItem.Value <string>("secondType");
                string   thirdType         = jsonItem.Value <string>("thirdType");
                string   education         = jsonItem.Value <string>("education");
                string   positionAdvantage = jsonItem.Value <string>("positionAdvantage");
                DateTime createTime        = jsonItem.Value <DateTime>("createTime");
                string   salaryText        = jsonItem.Value <string>("salary");

                (int minSalary, int maxSalary) = GetRangeFromText(salaryText);
                string workYearText = jsonItem.Value <string>("workYear");

                (int minWorkYear, int maxWorkYear) = GetRangeFromText(workYearText);
                //Company
                int    companyId       = jsonItem.Value <int>("companyId");
                string companyName     = jsonItem.Value <string>("companyShortName");
                string companyFullName = jsonItem.Value <string>("companyFullName");
                string industryField   = jsonItem.Value <string>("industryField");
                string financeStage    = jsonItem.Value <string>("financeStage");
                string districtName    = jsonItem.Value <string>("district");
                string subwayLine      = jsonItem.Value <string>("subwayline");
                string stationName     = jsonItem.Value <string>("stationname");
                double lat             = jsonItem.Value <double>("latitude");
                double lng             = jsonItem.Value <double>("longitude");
                string labelText       = string.Empty;
                JArray labels          = jsonItem.Value <JArray>("companyLabelList");

                if (!labels.IsNullOrEmpty() && (string)labels[0] != @"""")                //The labels might be [""].
                {
                    StringBuilder sb = new StringBuilder(labels.Count);
                    sb.Append(labels[0]);
                    for (byte i = 1; i < labels.Count; i++)
                    {
                        sb.Append(',');
                        sb.Append(labels[i]);
                    }
                    labelText = sb.ToString();
                }
                JArray zones = jsonItem.Value <JArray>("businessZones");
                string zoneName = zones.IsNullOrEmpty() ? string.Empty : (zones[0]?.ToString() ?? string.Empty);
                string companySizeText = jsonItem.Value <string>("companySize");
                int    minCompanySize = 0, maxCompanySize = 0;

                if (!string.IsNullOrWhiteSpace(companySizeText))
                {
                    var companySizes = StringTool.MatchIntList(companySizeText, true);
                    switch (companySizes.Count)
                    {
                    case 0:
                        break;

                    case 1:
                        if (companySizeText.Contains("少于", StringComparison.Ordinal))
                        {
                            maxCompanySize = companySizes[0];
                        }
                        else
                        {
                            minCompanySize = companySizes[0];
                        }
                        break;

                    default:
                        minCompanySize = companySizes[0];
                        maxCompanySize = companySizes[1];
                        break;
                    }
                }
                //Publisher Info
                long publisherId = jsonItem.Value <long>("publisherId");
                //Publisher Record
                int  resumeProcessRate = jsonItem.Value <int>("resumeProcessRate");
                int  resumeProcessDay  = jsonItem.Value <int>("resumeProcessDay");
                long lastloginTime     = jsonItem.Value <long>("lastLogin");
                LaGouPositionEntity pe = new LaGouPositionEntity()
                {
                    Name        = positionName,
                    CompanyId   = companyId,
                    PositionId  = positionId,
                    PublisherId = publisherId,
                    Education   = education,
                    MinWorkYear = minWorkYear,
                    MaxWorkYear = maxWorkYear,
                    MinSalary   = minSalary,
                    MaxSalary   = maxSalary,
                    FirstType   = firstType,
                    SecondType  = secondType,
                    ThirdType   = thirdType,
                    Advantage   = positionAdvantage,
                    CreateTime  = createTime
                };
                LaGouCompanyEntity ce = new LaGouCompanyEntity()
                {
                    CompanyId        = companyId,
                    Name             = companyName,
                    FullName         = companyFullName,
                    MinSize          = minCompanySize,
                    MaxSize          = maxCompanySize,
                    FinanceStage     = financeStage,
                    IndustryField    = industryField,
                    LabelDescription = labelText,
                    DistrictName     = districtName,
                    ZoneName         = zoneName,
                    SubwayLine       = subwayLine,
                    StationName      = stationName,
                    Latitude         = lat,
                    Longitude        = lng
                };
                LaGouHrInfoEntity hie = new LaGouHrInfoEntity()
                {
                    UserId    = publisherId,
                    CompanyId = companyId,
                };
                LaGouHrDailyRecordEntity hdre = new LaGouHrDailyRecordEntity()
                {
                    UserId             = publisherId,
                    ResumeProcessDay   = resumeProcessDay,
                    ResumeProcessRate  = resumeProcessRate,
                    LastLoginTimestamp = lastloginTime,
                    DateNumber         = DateTime.Now.ToDateNumber()
                };

                return(new LaGouResponseItem()
                {
                    Company = ce,
                    Position = pe,
                    HrInfo = hie,
                    HrDailyRecord = hdre
                });
            }