View Javadoc

1   /*
2    * Copyright 2011 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 1.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl1.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package edu.sampleu.kew.krad.controller;
17  
18  import javax.servlet.http.HttpServletRequest;
19  import javax.servlet.http.HttpServletResponse;
20  
21  import org.kuali.rice.kew.service.KEWServiceLocator;
22  import org.kuali.rice.kew.stats.service.StatsService;
23  import org.kuali.rice.krad.web.controller.UifControllerBase;
24  import org.kuali.rice.krad.web.form.UifFormBase;
25  import org.springframework.stereotype.Controller;
26  import org.springframework.validation.BindingResult;
27  import org.springframework.web.bind.annotation.ModelAttribute;
28  import org.springframework.web.bind.annotation.RequestMapping;
29  import org.springframework.web.servlet.ModelAndView;
30  
31  import edu.sampleu.kew.krad.form.StatsForm;
32  
33  /**
34   * This is a description of what this class does - Venkat don't forget to fill this in. 
35   * 
36   * @author Kuali Rice Team (rice.collab@kuali.org)
37   *
38   */
39  @Controller
40  @RequestMapping(value = "/stats")
41  public class StatsController extends UifControllerBase {
42  
43  	/**
44  	 * This overridden method ...
45  	 * 
46  	 * @see org.kuali.rice.krad.web.spring.controller.UifControllerBase#createInitialForm(javax.servlet.http.HttpServletRequest)
47  	 */
48  	@Override
49  	protected UifFormBase createInitialForm(HttpServletRequest request) {
50  		return new StatsForm();
51  	}
52  
53  	@Override
54  	@RequestMapping(params = "methodToCall=start")
55  	public ModelAndView start(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
56  			HttpServletRequest request, HttpServletResponse response) {
57  
58  		StatsForm statForm = (StatsForm) form;
59  
60  		try{
61  	        statForm.determineBeginDate();
62  	        statForm.determineEndDate();
63  	
64  	        StatsService statsService = this.getStatsService();
65  	        statsService.NumUsersReport(statForm.getStats());
66  	        statsService.DocumentsRoutedReport(statForm.getStats(), statForm.getBeginningDate(), statForm.getEndingDate());
67  	        statsService.NumActiveItemsReport(statForm.getStats());
68  	        statsService.NumberOfDocTypesReport(statForm.getStats());
69  	        statsService.NumInitiatedDocsByDocTypeReport(statForm.getStats());
70  	        
71  		}catch (Exception e) {
72  			throw new RuntimeException(e);
73  		}
74          
75  		return super.start(statForm, result, request, response);
76  	}
77  	
78  	 public StatsService getStatsService() {
79          return (StatsService) KEWServiceLocator.getService(KEWServiceLocator.STATS_SERVICE);
80      }
81  }