partial void DeleteTNTFunctionalityReq(TNTFunctionalityReq instance);
partial void UpdateTNTFunctionalityReq(TNTFunctionalityReq instance);
private void detach_TNTFunctionalityReqs(TNTFunctionalityReq entity) { this.SendPropertyChanging(); entity.ProjectInformation = null; }
partial void InsertTNTFunctionalityReq(TNTFunctionalityReq instance);
public override PagedData ProcessRequest(HttpContext context, CookDBDataContext db) { IQueryable<TNTFunctionalityReq> q = db.TNTFunctionalityReqs; string filter = context.Request.Params.Get("project_id"); if (!isNull(filter)) { q = q.Where(a => a.project_id == int.Parse(filter)); } else { return new PagedData("GetTNTFunctionalityRequirements expects a project_id"); } string readOnly = context.Request.Params.Get("read_only"); if (isNull(readOnly)) { return new PagedData("read_only flag is expected"); } if (readOnly == "true" && context.Request.RequestType != "GET") { return new PagedData("Read Only"); } string username = context.Request.Params.Get("user_name"); System.IO.StreamReader reader = new System.IO.StreamReader(context.Request.InputStream, context.Request.ContentEncoding); var jsonSerializer = new JsonSerializer(); JObject blob = (JObject)jsonSerializer.Deserialize(new JsonTextReader(new StringReader(reader.ReadToEnd()))); switch (context.Request.RequestType) { case "GET": { return new PagedData(q.Select(a => new { a.tnt_functionality_req_id, a.project_id, a.@new, a.call_volume, a.notes })); } case "POST": { if (blob["rows"].GetType() == typeof(JObject)) { JObject obj = (JObject)blob["rows"]; TNTFunctionalityReq record = new TNTFunctionalityReq(); record.project_id = int.Parse(filter); record.@new = (bool)obj["new"]; record.call_volume = (string)obj["call_volume"]; record.notes = (string)obj["notes"]; db.TNTFunctionalityReqs.InsertOnSubmit(record); db.SubmitChanges(); ChangeLog newLog = new ChangeLog(); newLog.project_id = Convert.ToInt32(int.Parse(filter)); newLog.time = DateTime.Now.ToShortTimeString(); newLog.date = DateTime.Now.ToShortDateString(); newLog.tab = "Requirements"; newLog.user_name = username; newLog.description = "New TNT Functionality requirement added"; if (!db.ChangeLogs.Contains(newLog)) { db.ChangeLogs.InsertOnSubmit(newLog); db.SubmitChanges(); } return new PagedData(record); } JArray objs = (JArray)blob["rows"]; List<TNTFunctionalityReq> list = new List<TNTFunctionalityReq>(); for (int j = 0; j < objs.Count; j++) { TNTFunctionalityReq record = new TNTFunctionalityReq(); record.project_id = int.Parse(filter); record.@new = (bool)objs[j]["new"]; record.call_volume = (string)objs[j]["call_volume"]; record.notes = (string)objs[j]["notes"]; db.TNTFunctionalityReqs.InsertOnSubmit(record); db.SubmitChanges(); list.Add(record); } return new PagedData(list); } case "PUT": { if (blob["rows"].GetType() == typeof(JObject)) { JObject obj = (JObject)blob["rows"]; string logBuilder = ""; string intro = "Existing TNT Functionality record modified: "; TNTFunctionalityReq record = db.TNTFunctionalityReqs.Single(a => a.tnt_functionality_req_id.Equals((int)obj["tnt_functionality_req_id"])); //record.project_id = int.Parse(filter); if (record.@new != (bool)obj["new"]) { logBuilder += "New changed from \"" + record.@new + "\" to \"" + (bool)obj["new"] + "\"."; } record.@new = (bool)obj["new"]; if (record.call_volume != (string)obj["call_volume"]) { logBuilder += "Call Volume changed from \"" + record.call_volume + "\" to \"" + (string)obj["call_volume"] + "\"."; } record.call_volume = (string)obj["call_volume"]; if (record.notes != (string)obj["notes"]) { logBuilder += "Notes changed from \"" + record.notes + "\" to \"" + (string)obj["notes"] + "\"."; } record.notes = (string)obj["notes"]; db.SubmitChanges(); if (logBuilder != "") { ChangeLog newLog = new ChangeLog(); newLog.project_id = Convert.ToInt32(int.Parse(filter)); newLog.time = DateTime.Now.ToShortTimeString(); newLog.date = DateTime.Now.ToShortDateString(); newLog.tab = "Requirements"; newLog.user_name = username; newLog.description = intro + logBuilder; if (!db.ChangeLogs.Contains(newLog)) { db.ChangeLogs.InsertOnSubmit(newLog); db.SubmitChanges(); } } return new PagedData(record); } JArray objs = (JArray)blob["rows"]; List<TNTFunctionalityReq> list = new List<TNTFunctionalityReq>(); for (int j = 0; j < objs.Count; j++) { TNTFunctionalityReq record = db.TNTFunctionalityReqs.Single(a => a.tnt_functionality_req_id.Equals((int)objs[j]["tnt_functionality_req_id"])); //record.project_id = int.Parse(filter); record.@new = (bool)objs[j]["new"]; record.call_volume = (string)objs[j]["call_volume"]; record.notes = (string)objs[j]["notes"]; db.SubmitChanges(); list.Add(record); } return new PagedData(list); } case "DELETE": { if (blob["rows"].GetType() == typeof(JObject)) { JObject obj = (JObject)blob["rows"]; string logbuilder = ""; TNTFunctionalityReq record = db.TNTFunctionalityReqs.Single(a => a.tnt_functionality_req_id.Equals((int)obj["tnt_functionality_req_id"])); logbuilder += "New: \"" + record.@new + "\"; Call Volume: \"" + record.call_volume + "\"; Notes: \"" + record.notes + "\"."; db.TNTFunctionalityReqs.DeleteOnSubmit(record); db.SubmitChanges(); ChangeLog newLog = new ChangeLog(); newLog.project_id = Convert.ToInt32(int.Parse(filter)); newLog.time = DateTime.Now.ToShortTimeString(); newLog.date = DateTime.Now.ToShortDateString(); newLog.tab = "Requirements"; newLog.user_name = username; newLog.description = "Existing TNT Functionality Requirement deleted: " + logbuilder; if (!db.ChangeLogs.Contains(newLog)) { db.ChangeLogs.InsertOnSubmit(newLog); db.SubmitChanges(); } return new PagedData("good"); } JArray objs = (JArray)blob["rows"]; for (int j = 0; j < objs.Count; j++) { TNTFunctionalityReq record = db.TNTFunctionalityReqs.Single(a => a.tnt_functionality_req_id.Equals((int)objs[j]["tnt_functionality_req_id"])); db.TNTFunctionalityReqs.DeleteOnSubmit(record); } db.SubmitChanges(); return new PagedData("TNTFunctionalityReq deleted"); } default: return new PagedData("Unsupported Http Request: " + context.Request.RequestType + " not recognized"); } }