001/**
002 * Copyright 2011 The Kuali Foundation Licensed under the
003 * Educational Community License, Version 2.0 (the "License"); you may
004 * not use this file except in compliance with the License. You may
005 * obtain a copy of the License at
006 *
007 * http://www.osedu.org/licenses/ECL-2.0
008 *
009 * Unless required by applicable law or agreed to in writing,
010 * software distributed under the License is distributed on an "AS IS"
011 * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
012 * or implied. See the License for the specific language governing
013 * permissions and limitations under the License.
014 *
015 */
016package org.kuali.student.enrollment.batch.controller;
017
018import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader;
019import org.kuali.rice.krad.web.controller.UifControllerBase;
020import org.kuali.rice.krad.web.form.UifFormBase;
021import org.kuali.student.common.util.security.ContextUtils;
022import org.kuali.student.enrollment.batch.BatchScheduler;
023import org.kuali.student.enrollment.batch.util.BatchSchedulerConstants;
024import org.kuali.student.enrollment.batch.form.BatchForm;
025import org.kuali.student.r2.common.util.date.DateFormatters;
026import org.kuali.student.r2.common.util.date.KSDateTimeFormatter;
027import org.springframework.stereotype.Controller;
028import org.springframework.validation.BindingResult;
029import org.springframework.web.bind.annotation.ModelAttribute;
030import org.springframework.web.bind.annotation.RequestMapping;
031import org.springframework.web.servlet.ModelAndView;
032
033import javax.servlet.http.HttpServletRequest;
034import javax.servlet.http.HttpServletResponse;
035import javax.xml.namespace.QName;
036import java.util.Date;
037
038@Controller
039@RequestMapping(value = "/batch")
040public class BatchController extends UifControllerBase {
041
042    private BatchScheduler batchScheduler;
043
044    public UifFormBase createInitialForm(HttpServletRequest httpServletRequest) {
045        return new BatchForm();
046    }
047
048    /**
049     * @param form
050     * @param result
051     * @param request
052     * @param response
053     * @return
054     */
055    @RequestMapping(params = "methodToCall=scheduleBatch")
056    public ModelAndView scheduleBatch(@ModelAttribute("KualiForm") BatchForm form, @SuppressWarnings("unused") BindingResult result,
057                                @SuppressWarnings("unused") HttpServletRequest request, @SuppressWarnings("unused") HttpServletResponse response) {
058
059        KSDateTimeFormatter dateFormatter = DateFormatters.MONTH_DAY_YEAR_DATE_FORMATTER;
060        String date = dateFormatter.format(form.getStartDate());
061
062        //03/26/2014 02:14 PM
063        KSDateTimeFormatter dateTimeFormatter = DateFormatters.MONTH_DAY_YEAR_TIME_DATE_FORMATTER;
064        Date dateAndTime = dateTimeFormatter.parse(date + " " + form.getStartTime() + " " + form.getStartTimeAmPm());
065
066        this.getBatchScheduler().schedule("kuali.batch.job.examOffering.slotting", null, dateAndTime, ContextUtils.createDefaultContextInfo());
067        return super.navigate(form, result, request, response);
068    }
069
070    private BatchScheduler getBatchScheduler() {
071        if (batchScheduler == null) {
072            batchScheduler = GlobalResourceLoader.getService(new QName(BatchSchedulerConstants.NAMESPACE, BatchSchedulerConstants.SERVICE_NAME_LOCAL_PART));
073        }
074        return batchScheduler;
075    }
076}