API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PropertyRepository.cs 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513
  1. using Microsoft.EntityFrameworkCore;
  2. using Newtonsoft.Json;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using UnivateProperties_API.Containers.Property;
  7. using UnivateProperties_API.Containers.Timeshare;
  8. using UnivateProperties_API.Context;
  9. using UnivateProperties_API.Model.Logging;
  10. using UnivateProperties_API.Model.Properties;
  11. namespace UnivateProperties_API.Repository.Properties
  12. {
  13. public class PropertyRepository : IPropertyRepository
  14. {
  15. private readonly DataContext dBContext;
  16. public PropertyRepository(DataContext _dBContext)
  17. {
  18. dBContext = _dBContext;
  19. }
  20. public List<Property> Get(Func<Property, bool> where)
  21. {
  22. return dBContext.Properties
  23. .Include("PropertyType")
  24. .Include("Province")
  25. .Include("City")
  26. .Include("Suburb")
  27. .Where(where).ToList();
  28. }
  29. public List<Property> GetAll()
  30. {
  31. var properties = dBContext.Properties.ToList();
  32. return properties;
  33. }
  34. public Property GetDetailed(Func<Property, bool> first)
  35. {
  36. var property = dBContext.Properties.Include("Status").FirstOrDefault(first);
  37. if (property != null)
  38. {
  39. GetDetail(ref property);
  40. }
  41. return property;
  42. }
  43. public List<Property> GetDetailedAll()
  44. {
  45. var properties = dBContext.Properties.ToList();
  46. return properties;
  47. }
  48. private void GetDetail(ref Property property)
  49. {
  50. int propID = property.Id;
  51. var propertyType = dBContext.PropertyTypes.Find(property.PropertyTypeId);
  52. property.Province = dBContext.Provinces.Find(property.ProvinceId);
  53. property.City = dBContext.Cities.Find(property.CityId);
  54. property.Suburb = dBContext.Suburbs.Find(property.SuburbId);
  55. property.DisplayData = new List<PropertyDetailGroup>();
  56. var groups = (from g in dBContext.UserDefinedGroups
  57. where g.UsageType == propertyType.UsageType
  58. || g.UsageType == PropertyUsageType.Both
  59. orderby g.Rank
  60. select g).ToList();
  61. foreach (UserDefinedGroup uGroup in groups)
  62. {
  63. var groupFields = (from f in dBContext.PropertyUserFields
  64. join uf in dBContext.UserDefinedFields on f.UserDefinedFieldId equals uf.Id
  65. join g in dBContext.UserDefinedGroups on uf.GroupId equals g.Id
  66. where f.PropertyId == propID
  67. && g.Id == uGroup.Id
  68. orderby g.Rank, uf.Rank
  69. select new { uf.FieldName, f.Value, f.Description }).ToList();
  70. if (groupFields.Count > 0)
  71. {
  72. PropertyDetailGroup detailGroup = new PropertyDetailGroup()
  73. {
  74. GroupName = uGroup.Description,
  75. Values = new List<PropertyDetail>()
  76. };
  77. if (uGroup.Description == "Property Overview")
  78. {
  79. detailGroup.Values.Add(new PropertyDetail()
  80. {
  81. Name = "Property Type",
  82. Value = property.PropertyType.Description
  83. });
  84. }
  85. foreach (var val in groupFields)
  86. {
  87. var irem = new PropertyDetail()
  88. {
  89. Name = val.FieldName,
  90. Description = val.Description
  91. };
  92. detailGroup.Values.Add(irem);
  93. if ((val.FieldName == "Erf Size" || val.FieldName == "Floor Size") && val.Value.EndsWith("2"))
  94. {
  95. irem.Value = val.Value.Substring(0, val.Value.Length - 1) + "<sup>" + val.Value.Last() + "</sup>";
  96. }
  97. else
  98. irem.Value = val.Value;
  99. }
  100. property.DisplayData.Add(detailGroup);
  101. }
  102. }
  103. }
  104. public void Insert(Property item)
  105. {
  106. PropertyType pt = dBContext.PropertyTypes.Find(item.PropertyTypeId);
  107. if (pt != null)
  108. {
  109. if (pt.UsageType == PropertyUsageType.Residential)
  110. {
  111. string type = dBContext.PropertyTypes.Find(item.PropertyTypeId).Description;
  112. if (item.PropertyUserFields.Count > 0)
  113. {
  114. string shortDesc = "{0} {1} {2}";
  115. UserDefinedField bedrooms = dBContext.UserDefinedFields.Where(u => u.FieldName == "Bedrooms").FirstOrDefault();
  116. var udValue = item.PropertyUserFields.Where(u => u.UserDefinedFieldId == bedrooms.Id).FirstOrDefault();
  117. if (udValue != null)
  118. item.ShortDescription = string.Format(shortDesc, udValue.Value, "Bedroom", pt.Description).Trim();
  119. else
  120. item.ShortDescription = string.Format(shortDesc, "", "", pt.Description).Trim();
  121. }
  122. else
  123. {
  124. item.ShortDescription = type;
  125. }
  126. }
  127. else
  128. {
  129. item.ShortDescription = pt.Description;
  130. }
  131. }
  132. var images = item.PropertyImages;
  133. var fields = item.PropertyUserFields;
  134. item.PropertyImages = null;
  135. item.PropertyUserFields = null;
  136. dBContext.Properties.Add(item);
  137. Save();
  138. if (images != null)
  139. {
  140. var lastID = (from p in dBContext.PropertyImages
  141. orderby p.Id descending
  142. select p.Id).FirstOrDefault();
  143. foreach (PropertyImage image in images)
  144. {
  145. lastID++;
  146. image.Id = lastID;
  147. image.PropertyId = item.Id;
  148. dBContext.PropertyImages.Add(image);
  149. Save();
  150. }
  151. }
  152. if (fields != null)
  153. {
  154. var lastID = (from p in dBContext.PropertyUserFields
  155. orderby p.Id descending
  156. select p.Id).FirstOrDefault();
  157. foreach (PropertyUserField field in fields)
  158. {
  159. lastID++;
  160. field.Id = lastID;
  161. field.PropertyId = item.Id;
  162. dBContext.PropertyUserFields.Add(field);
  163. Save();
  164. }
  165. }
  166. }
  167. public void Insert(IEnumerable<Property> items)
  168. {
  169. foreach (var item in items)
  170. {
  171. dBContext.Properties.Add(item);
  172. }
  173. Save();
  174. }
  175. public void Remove(Property item)
  176. {
  177. dBContext.Properties.Remove(item);
  178. Save();
  179. }
  180. public void Remove(IEnumerable<Property> items)
  181. {
  182. foreach (var item in items)
  183. {
  184. dBContext.Properties.Remove(item);
  185. }
  186. Save();
  187. }
  188. public void RemoveAtId(int item)
  189. {
  190. var property = Get(x => x.Id == item).FirstOrDefault();
  191. if (property != null)
  192. {
  193. dBContext.Properties.Remove(property);
  194. Save();
  195. }
  196. }
  197. public void Save()
  198. {
  199. dBContext.SaveChanges();
  200. }
  201. public void Update(Property item)
  202. {
  203. dBContext.Entry(item).State = EntityState.Modified;
  204. Save();
  205. }
  206. public List<PropertyDisplay> GetDisplay()
  207. {
  208. List<Property> props = GetAll();
  209. return GetDisplayDetails(props);
  210. }
  211. public List<PropertyDisplay> GetDisplay(Func<Property, bool> where)
  212. {
  213. List<Property> props;
  214. if (where != null)
  215. props = Get(where);
  216. else
  217. props = GetAll();
  218. return GetDisplayDetails(props);
  219. }
  220. public List<PropertyDisplay> GetDisplay(PropertySearch search)
  221. {
  222. SearchObject obj = new SearchObject()
  223. {
  224. UserName = search.UserName,
  225. Type = "Property"
  226. };
  227. if (!string.IsNullOrEmpty(search.Keyword) && search.Keyword.ToUpper() != "ALL")
  228. {
  229. string keyword = search.Keyword.ToLower();
  230. List<Property> props = (from p in dBContext.Properties
  231. join pr in dBContext.Provinces on p.ProvinceId equals pr.Id
  232. join c in dBContext.Cities on p.CityId equals c.Id
  233. join s in dBContext.Suburbs on p.SuburbId equals s.Id
  234. join pt in dBContext.PropertyTypes on p.PropertyTypeId equals pt.Id
  235. where EF.Functions.Like(p.PropertyName.ToLower(), $"%{keyword}%")
  236. || EF.Functions.Like(pr.Description.ToLower(), $"%{keyword}%")
  237. || EF.Functions.Like(c.Description.ToLower(), $"%{keyword}%")
  238. || EF.Functions.Like(s.Description.ToLower(), $"%{keyword}%")
  239. || EF.Functions.Like(pt.Description.ToLower(), $"%{keyword}%")
  240. select p).ToList();
  241. obj.Property = "Keyword";
  242. obj.Value = search.Keyword;
  243. SaveLog(obj);
  244. return GetDisplayDetails(props);
  245. }
  246. else
  247. {
  248. List<Property> props;
  249. PropertyUsageType uType = PropertyUsageType.Both;
  250. if (!string.IsNullOrEmpty(search.PropertyUsageType) && search.PropertyUsageType != "undefined" && search.PropertyUsageType.ToUpper() != "ALL")
  251. {
  252. if (search.PropertyUsageType.ToUpper() == "COMMERCIAL")
  253. uType = PropertyUsageType.Commercial;
  254. else
  255. uType = PropertyUsageType.Residential;
  256. }
  257. props = (from p in dBContext.Properties
  258. join pt in dBContext.PropertyTypes on p.PropertyTypeId equals pt.Id
  259. where pt.UsageType == uType
  260. select p).ToList();
  261. obj.Property = "PropertyUsageType";
  262. obj.Value = search.PropertyUsageType;
  263. SaveLog(obj);
  264. if (!string.IsNullOrEmpty(search.SalesType) && search.SalesType != "undefined" && search.SalesType.ToUpper() != "ALL")
  265. {
  266. if (search.SalesType.ToUpper() == "SALE")
  267. props = props.Where(p => p.IsSale).ToList();
  268. else
  269. props = props.Where(p => !p.IsSale).ToList();
  270. obj.Property = "SalesType";
  271. obj.Value = search.SalesType;
  272. SaveLog(obj);
  273. }
  274. if (!string.IsNullOrEmpty(search.Province) && search.Province != "undefined" && search.Province.ToUpper() != "ALL")
  275. {
  276. props = (from p in props
  277. join pp in dBContext.Provinces on p.ProvinceId equals pp.Id
  278. where pp.Description.ToUpper() == search.Province.ToUpper()
  279. select p).ToList();
  280. obj.Property = "Province";
  281. obj.Value = search.Province;
  282. SaveLog(obj);
  283. }
  284. if (!string.IsNullOrEmpty(search.City) && search.City != "undefined" && search.City.ToUpper() != "ALL")
  285. {
  286. props = (from p in props
  287. join c in dBContext.Cities on p.CityId equals c.Id
  288. where c.Description.ToUpper() == search.City.ToUpper()
  289. select p).ToList();
  290. obj.Property = "City";
  291. obj.Value = search.City;
  292. SaveLog(obj);
  293. }
  294. if (!string.IsNullOrEmpty(search.Suburb) && search.Suburb != "undefined" && search.Suburb.ToUpper() != "ALL")
  295. {
  296. props = (from p in props
  297. join s in dBContext.Suburbs on p.SuburbId equals s.Id
  298. where s.Description.ToUpper() == search.Suburb.ToUpper()
  299. select p).ToList();
  300. obj.Property = "Suburb";
  301. obj.Value = search.Suburb;
  302. SaveLog(obj);
  303. }
  304. if (!string.IsNullOrEmpty(search.PropertyType) && search.PropertyType != "Undefined" && search.PropertyType.ToUpper() != "ALL")
  305. {
  306. var pType = dBContext.PropertyTypes.Where(t => t.Description == search.PropertyType).FirstOrDefault();
  307. if (pType != null)
  308. {
  309. props = props.Where(p => p.PropertyTypeId == pType.Id).ToList();
  310. }
  311. obj.Property = "PropertyType";
  312. obj.Value = search.PropertyType;
  313. SaveLog(obj);
  314. }
  315. if (search.MinPrice > 0)
  316. {
  317. props = props.Where(p => p.Price >= search.MinPrice).ToList();
  318. obj.Property = "MinPrice";
  319. obj.Value = search.MinPrice.ToString();
  320. SaveLog(obj);
  321. }
  322. if (search.MaxPrice > 0)
  323. {
  324. props = props.Where(p => p.Price <= search.MaxPrice).ToList();
  325. obj.Property = "MaxPrice";
  326. obj.Value = search.MaxPrice.ToString();
  327. SaveLog(obj);
  328. }
  329. return GetDisplayDetails(props);
  330. }
  331. }
  332. private void SaveLog(SearchObject item)
  333. {
  334. var searchLog = new SearchLog
  335. {
  336. Type = item.Type,
  337. Search = JsonConvert.SerializeObject(item)
  338. };
  339. dBContext.SearchLogs.Add(searchLog);
  340. Save();
  341. }
  342. private List<PropertyDisplay> GetDisplayDetails(List<Property> props)
  343. {
  344. var properties = new List<PropertyDisplay>();
  345. foreach (var item in props)
  346. {
  347. PropertyDisplay display = new PropertyDisplay
  348. {
  349. Id = item.Id,
  350. ShortDescription = item.ShortDescription,
  351. IsSale = item.IsSale,
  352. DisplayPrice = string.Format("R {0}", item.Price.ToString("N0")),
  353. DisplayImage = (from i in dBContext.PropertyImages
  354. where i.PropertyId == item.Id
  355. && i.IsDefault
  356. select i.Image).FirstOrDefault(),
  357. Area = (from u in dBContext.PropertyUserFields
  358. join f in dBContext.UserDefinedFields on u.UserDefinedFieldId equals f.Id
  359. where u.PropertyId == item.Id
  360. && f.FieldName == "Floor Size"
  361. select u.Value).FirstOrDefault(),
  362. Beds = (from u in dBContext.PropertyUserFields
  363. join f in dBContext.UserDefinedFields on u.UserDefinedFieldId equals f.Id
  364. where u.PropertyId == item.Id
  365. && f.FieldName == "Bedrooms"
  366. select u.Value).FirstOrDefault(),
  367. Baths = (from u in dBContext.PropertyUserFields
  368. join f in dBContext.UserDefinedFields on u.UserDefinedFieldId equals f.Id
  369. where u.PropertyId == item.Id
  370. && f.FieldName == "Bathrooms"
  371. select u.Value).FirstOrDefault(),
  372. Garages = (from u in dBContext.PropertyUserFields
  373. join f in dBContext.UserDefinedFields on u.UserDefinedFieldId equals f.Id
  374. where u.PropertyId == item.Id
  375. && f.FieldName == "Garages"
  376. select u.Value).FirstOrDefault(),
  377. Province = (from p in dBContext.Provinces
  378. where p.Id == item.ProvinceId
  379. select p.Description).FirstOrDefault(),
  380. City = (from c in dBContext.Cities
  381. where c.Id == item.CityId
  382. select c.Description).FirstOrDefault(),
  383. Suburb = (from s in dBContext.Suburbs
  384. where s.Id == item.SuburbId
  385. select s.Description).FirstOrDefault(),
  386. Price = item.Price,
  387. DateCreated = item.Created,
  388. PropertyUsageType = (from p in dBContext.PropertyTypes
  389. where p.Id == item.PropertyTypeId
  390. select p.UsageType.ToString()).FirstOrDefault()
  391. };
  392. if (!string.IsNullOrEmpty(display.Area) && display.Area.EndsWith("2"))
  393. {
  394. display.Area = display.Area.Substring(0, display.Area.Length - 1) + "<sup>" + display.Area.Last() + "</sup>";
  395. }
  396. properties.Add(display);
  397. }
  398. return properties;
  399. }
  400. public List<PropertyType> GetPropertyTypes(Func<PropertyType, bool> where)
  401. {
  402. List<PropertyType> list;
  403. if (where != null)
  404. list = dBContext.PropertyTypes.Where(where).ToList();
  405. else
  406. list = dBContext.PropertyTypes.ToList();
  407. return list;
  408. }
  409. public List<PropertyDisplay> GetLatestDisplay()
  410. {
  411. List<Property> props = GetAll().OrderBy(x => x.Created).Take(3).ToList();
  412. return GetDisplayDetails(props);
  413. }
  414. public List<PropertyList> GetPropertyList(Func<Property, bool> where)
  415. {
  416. var properties = Get(where);
  417. List<PropertyList> list = new List<PropertyList>();
  418. foreach (Property p in properties)
  419. {
  420. var prop = new PropertyList()
  421. {
  422. Id = p.Id,
  423. Name = string.IsNullOrEmpty(p.PropertyName) ? p.ShortDescription : p.PropertyName,
  424. Price = string.Format("R {0:n}", p.Price),
  425. Publish = p.Published.ToString(),
  426. Type = dBContext.PropertyTypes.Find(p.PropertyTypeId)?.Description
  427. };
  428. prop.Size = (from u in dBContext.PropertyUserFields
  429. join f in dBContext.UserDefinedFields on u.UserDefinedFieldId equals f.Id
  430. where u.PropertyId == p.Id
  431. && f.FieldName == "Floor Size"
  432. select u.Value).FirstOrDefault();
  433. if (!string.IsNullOrEmpty(prop.Size) && prop.Size.EndsWith("2"))
  434. {
  435. prop.Size = prop.Size.Substring(0, prop.Size.Length - 1) + "<sup>" + prop.Size.Last() + "</sup>";
  436. }
  437. list.Add(prop);
  438. }
  439. return list;
  440. }
  441. public int NewId()
  442. {
  443. // Not sure if properties need it
  444. return 0;
  445. }
  446. }
  447. }