Package org.apache.roller.weblogger.ui.struts2.common

Source Code of org.apache.roller.weblogger.ui.struts2.common.PingTargetAddBase

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  The ASF licenses this file to You
* under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.  For additional information regarding
* copyright in this work, please see the NOTICE file in the top level
* directory of this distribution.
*/

package org.apache.roller.weblogger.ui.struts2.common;

import org.apache.commons.logging.Log;
import org.apache.roller.weblogger.WebloggerException;
import org.apache.roller.weblogger.business.WebloggerFactory;
import org.apache.roller.weblogger.business.pings.PingTargetManager;
import org.apache.roller.weblogger.pojos.PingTarget;
import org.apache.roller.weblogger.ui.struts2.util.UIAction;


/**
* Base implementation for action that can add a new ping target.
*/
public abstract class PingTargetAddBase extends UIAction {
   
    // a bean for managing submitted data
    private PingTargetFormBean bean = new PingTargetFormBean();
   
   
    // get logger
    protected abstract Log getLogger();
   
    // create a new ping target
    protected abstract PingTarget createPingTarget();
   
   
    public String execute() {
        return INPUT;
    }
   
   
    /**
     * Save a new ping target.
     */
    public String save() {
       
        PingTarget pingTarget = createPingTarget();
       
        // Call private helper to validate ping target
        // If there are errors, go back to the target edit page.
        myValidate(pingTarget);
       
        if(!hasActionErrors()) try {
            // Appears to be ok.  Save it and flush.
            PingTargetManager pingTargetMgr = WebloggerFactory.getWeblogger().getPingTargetManager();
            pingTargetMgr.savePingTarget(pingTarget);
            WebloggerFactory.getWeblogger().flush();
           
            addMessage("pingTarget.saved");
           
            return SUCCESS;
           
        } catch (WebloggerException ex) {
            getLogger().error("Error adding ping target", ex);
            // TODO: i18n
            addError("Error adding ping target.");
        }
       
        return INPUT;
    }
   
   
    /**
     * Private helper to validate a ping target.
     */
    protected void myValidate(PingTarget pingTarget) {
       
        try {
            PingTargetManager pingTargetMgr = WebloggerFactory.getWeblogger().getPingTargetManager();
            if (!pingTargetMgr.isNameUnique(pingTarget)) {
                addError("pingTarget.nameNotUnique");
            }
           
            if (!pingTargetMgr.isUrlWellFormed(pingTarget)) {
                addError("pingTarget.malformedUrl");
            } else if (!pingTargetMgr.isHostnameKnown(pingTarget)) {
                addError("pingTarget.unknownHost");
            }
        } catch (WebloggerException ex) {
            getLogger().error("Error validating ping target", ex);
            // TODO: i18n
            addError("Error doing ping target validation");
        }
    }
   
   
    public PingTargetFormBean getBean() {
        return bean;
    }

    public void setBean(PingTargetFormBean bean) {
        this.bean = bean;
    }
   
}
TOP

Related Classes of org.apache.roller.weblogger.ui.struts2.common.PingTargetAddBase

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.