ほとんどの場合、MVCコントローラーからサービスまたはモデルにビジネスロジックを除外する方法を理解できます。ただし、これの例外はエラー処理であり、私にはコントローラーの責任であるように思われます。ただし、それはかなり「スキニーでない」コントローラーにつながる可能性があります。例えば:
if ((foundEvent = repoEvent.GetEventById(id)) == null) {
return HttpNotFound("Could not find event with id {0}.".FormatWith(id));
}
var assessment = isSample ? foundEvent.SampleAssessment : foundEvent.ActualAssessment;
if (assessment == null) {
return HttpNotFound("Could not find {0}assessment for event with id {1}".FormatWith(isSample ? "sample " : "", id));
}
if (assessment.UnmappedCaseStudiesCount == 0) {
TempData[TempDataKeys.ErrorMessage.GetEnumName()] = "This assessment (\"{0}\") has no case studies!".FormatWith(assessment.Name);
return RedirectToAction("Index", "Events");
}
上記のすべての場合において、コントローラーがビューを返すのではなくエラーメッセージを設定しているため、ロジックはコントローラーに属しているように見えます(これは、クラスのメンバーであるなどの事実によって強化されてHttpNotFound
いますRedirectToAction
。Controller
そのため、拡張しないクラスでは使用できませんController
)。ただし、しばらくすると、これがどのように長くなり、乱雑になるかがわかります。コントローラーでこの種のエラー処理を除外して、コントローラーをより「スキニー」にする方法はありますか、それとも単にコントローラーに属しているだけですか?
これは、2つのアクションメソッドが同じビューモデルセットアップコードを使用できるようにリファクタリングした方法を示す、より大きなコードスニペットです。ただし、2つのアクションメソッドについてのみ、コントローラーに90行以上のコードが含まれることになります。繰り返しますが、あまり「スキニー」なコントローラーではありません。
#region Private methods
private StartAssessmentViewModel getStartViewModel(int eventId, bool isSample, out ActionResult actionRes) {
actionRes = null;
EventRepository repoEvent = new EventRepository();
Event foundEvent;
if ((foundEvent = repoEvent.GetEventById(eventId)) == null) {
actionRes = HttpNotFound("Could not find event with id {0}.".FormatWith(eventId));
return null;
}
var assessment = isSample ? foundEvent.SampleAssessment : foundEvent.ActualAssessment;
if (assessment == null) {
actionRes = HttpNotFound("Could not find {0}assessment for event with id {1}".FormatWith(isSample ? "sample " : "", eventId));
return null;
}
if (assessment.UnmappedCaseStudiesCount == 0) {
TempData[TempDataKeys.ErrorMessage.GetEnumName()] = "This assessment (\"{0}\") has no case studies!".FormatWith(assessment.Name);
actionRes = RedirectToAction("Index", "Events");
return null;
}
try {
// Has the assessment finished? (samples don't count)
UserAssessmentRepository repoUa = new UserAssessmentRepository();
var foundUa = repoUa.GetUserAssessment(foundEvent.EventId, assessment.AssessmentId, User.Identity.Name);
// TODO: check that foundUa.Assessment.IsSample is OK; may need to make .Assessment a concrete instance in the repo method
if (foundUa != null && !foundUa.Assessment.IsSample) {
if (_svcAsmt.IsAssessmentFinished(foundUa)) {
// TODO: test that this way of displaying the error works.
TempData[TempDataKeys.ErrorMessage.GetEnumName()] = "You have already completed the assessment for this event ('{0}'); you cannot start it again.".FormatWith(foundEvent.Name);
actionRes = RedirectToAction("Index", "Events");
return null;
}
// Has it been started already?
if (_svcAsmt.IsAssessmentStarted(foundEvent.EventId, foundUa.AssessmentId, User.Identity.Name)) {
actionRes = RedirectToAction("Question", new { id = foundUa.UserAssessmentId });
return null;
}
}
return Mapper.Map<StartAssessmentViewModel>(assessment);
}
catch (Exception ex) {
TempData[TempDataKeys.ErrorMessage.GetEnumName()] = "Could not display start screen for assessment {0} on event {1}; error: {2}".FormatWith(assessment.AssessmentId, foundEvent.EventId, ex.Message);
actionRes = RedirectToAction("Index", "Events");
return null;
}
}
#endregion
public ActionResult Start(int id, bool isSample = false) {
// Set up view model
ActionResult actionRes;
StartAssessmentViewModel viewModel = getStartViewModel(id, isSample, out actionRes);
if (viewModel == null) {
return actionRes;
}
return View(viewModel);
}
[HttpPost, ActionName("Start")]
public ActionResult StartConfirmed(int id, StartAssessmentViewModel viewModel) {
// Set up view model
ActionResult actionRes;
StartAssessmentViewModel newViewModel = getStartViewModel(id, viewModel.AssessmentIsSample, out actionRes);
if (newViewModel == null) {
return actionRes;
}
if (!ModelState.IsValid) {
return View(newViewModel);
}
// Model is valid; if it's not a sample, we need to check the access code
if (!viewModel.AssessmentIsSample) {
if (viewModel.AccessCode != "12345") {
// Invalid access code
TempData[TempDataKeys.ErrorMessage.GetEnumName()] = "The access code '{0}' is incorrect.".FormatWith(viewModel.AccessCode);
return View(newViewModel);
}
}
// Access code is valid or assessment is sample; redirect to first question
return RedirectToAction("Question", new { id = 1 });
}