partial void DeleteTTSFunctionalityReq(TTSFunctionalityReq instance);
partial void UpdateTTSFunctionalityReq(TTSFunctionalityReq instance);
private void detach_TTSFunctionalityReqs(TTSFunctionalityReq entity) { this.SendPropertyChanging(); entity.ProjectInformation = null; }
partial void InsertTTSFunctionalityReq(TTSFunctionalityReq instance);
public override PagedData ProcessRequest(HttpContext context, CookDBDataContext db) { IQueryable<TTSFunctionalityReq> q = db.TTSFunctionalityReqs; 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("GetTTSFunctionalityRequirements 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.tts_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"]; TTSFunctionalityReq record = new TTSFunctionalityReq(); record.project_id = int.Parse(filter); record.@new = (bool)obj["new"]; record.call_volume = (string)obj["call_volume"]; record.notes = (string)obj["notes"]; db.TTSFunctionalityReqs.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 TTS Functionality requirement added"; if (!db.ChangeLogs.Contains(newLog)) { db.ChangeLogs.InsertOnSubmit(newLog); db.SubmitChanges(); } return new PagedData(record); } JArray objs = (JArray)blob["rows"]; List<TTSFunctionalityReq> list = new List<TTSFunctionalityReq>(); for (int j = 0; j < objs.Count; j++) { TTSFunctionalityReq record = new TTSFunctionalityReq(); 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.TTSFunctionalityReqs.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 TTS Functionality record modified: "; TTSFunctionalityReq record = db.TTSFunctionalityReqs.Single(a => a.tts_functionality_req_id.Equals((int)obj["tts_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<TTSFunctionalityReq> list = new List<TTSFunctionalityReq>(); for (int j = 0; j < objs.Count; j++) { TTSFunctionalityReq record = db.TTSFunctionalityReqs.Single(a => a.tts_functionality_req_id.Equals((int)objs[j]["tts_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 = ""; TTSFunctionalityReq record = db.TTSFunctionalityReqs.Single(a => a.tts_functionality_req_id.Equals((int)obj["tts_functionality_req_id"])); logbuilder += "New: \"" + record.@new + "\"; Call Volume: \"" + record.call_volume + "\"; Notes: \"" + record.notes + "\"."; db.TTSFunctionalityReqs.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 TTS 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++) { TTSFunctionalityReq record = db.TTSFunctionalityReqs.Single(a => a.tts_functionality_req_id.Equals((int)objs[j]["tts_functionality_req_id"])); db.TTSFunctionalityReqs.DeleteOnSubmit(record); } db.SubmitChanges(); return new PagedData("TTSFunctionalityReq deleted"); } default: return new PagedData("Unsupported Http Request: " + context.Request.RequestType + " not recognized"); } }