Example #1
0
        public ActionResult EntryResponsePartial(EntryResponseModel model)
        {
            if (ModelState.IsValid)
            {
                if (Request.IsAuthenticated)
                {
                    try
                    {
                        //
                        // TODO: Get Parent Title
                        //
                        model.Entry.AccountID = GetFormsAuthenticationID();
                        model.Entry.Timestamp = DateTime.Now;

                        if (model.Entry.ParentID != null)
                        {
                            Entry parentEntry = this.dataRepository.GetEntry(model.Entry.ParentID.Value);

                            //if (parentEntry != null)
                            {
                                //model.Entry.Title = "RE: " + parentEntry.Title;
                                model.Entry.Title = "RE: " + model.Entry.Title;
                                model.Entry = this.dataRepository.Add(model.Entry);
                                if (model.Entry != null && model.Entry.ID >= 0)
                                {
                                    return RedirectToAction("Details", "Entry", new { id = model.Entry.ParentID });
                                }
                                else
                                {
                                    ModelState.AddModelError("", "Unable to create entry");
                                }
                            }
                            //else
                            {
                                //
                                // TODO: Parent model does not exist!
                                //
                            }
                        }
                        else
                        {
                            //
                            // TODO: ParentID null!
                            //
                        }
                    }
                    catch
                    {
                        return View();
                    }
                }
            }
            return RedirectToAction("Details", "Entry", new { id = model.Entry.ParentID });
        }
Example #2
0
 public ActionResult EntryResponsePartial(int parentID, string parentTitle)
 {
     EntryResponseModel model = new EntryResponseModel();
     model.Entry = new Entry();
     model.Entry.ParentID = parentID;
     model.Entry.Title = parentTitle;
     return View(model);
 }