⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 userupimg.java

📁 天乙社区6.0是一套基于JAVA技术的网络虚拟社区
💻 JAVA
字号:
package com.laoer.bbscs.web.action;

import com.laoer.bbscs.web.form.*;
import com.laoer.bbscs.bean.*;
import com.laoer.bbscs.web.servlet.*;
import com.laoer.bbscs.sys.*;
import org.apache.struts.action.*;
import javax.servlet.http.*;

/**
 * <p>Title: TianYi BBS</p>
 * <p>Description: TianYi BBS System</p>
 * <p>Copyright: Copyright (c) 2004</p>
 * <p>Company: LAOER.COM/TIANYISOFT.NET</p>
 * @author laoer
 * @version 6.0
 */

public class UserUpImg
    extends BaseAction {

  public ActionForward execute(ActionMapping actionMapping,
                               ActionForm actionForm,
                               HttpServletRequest httpServletRequest,
                               HttpServletResponse httpServletResponse) {
    ActionErrors errors = new ActionErrors();
    UserUpImgForm form = (UserUpImgForm) actionForm;
    UserCheck uc = this.getUserCheck(httpServletRequest, httpServletResponse,
                                     Constant.MESSAGE.getMessage(
                                         httpServletRequest.getLocale(),
                                         "place.upimg"));
    if (uc.isGuest()) {
      errors.add("error.pleaselogin", new ActionError("error.pleaselogin"));
      saveErrors(httpServletRequest, errors);
      LoginForm loginForm = new LoginForm();
      loginForm.setTourl(SysUtil.getToURL(httpServletRequest,
                                          "userUpImg" + Constant.FILEPREFIX));
      /*
       loginForm.setTourl(SysUtil.encodeURL("userUpImg" + Constant.FILEPREFIX,
                                           Constant.CHARSET));*/
      httpServletRequest.setAttribute("loginForm", loginForm);

      //return actionMapping.findForward("login");
      return SysUtil.getPassLogin(actionMapping);
    }
    if (form.getAction().equals("show")) {
      form.setAction("add");
      httpServletRequest.setAttribute("userUpImgForm", form);
      return actionMapping.findForward("userupimg");
    }
    if (form.getAction().equals("add")) {
      UserInfo ui = this.getUserCache().getUserInfoFromCache(uc.getId());
      if (ui == null) {
        errors.add("error.getusererror", new ActionError("error.getusererror"));
        saveErrors(httpServletRequest, errors);
        return actionMapping.findForward("error");
      }
      String fileName = this.getUserInfoService().createUserUpImgFile(ui,
          form.getUpfile());
      if (fileName == null) {
        errors.add("error.userupimg.uperror",
                   new ActionError("error.userupimg.uperror"));
        saveErrors(httpServletRequest, errors);
        return actionMapping.findForward("error");
      }
      ui.setHavePic( (short) 1);
      ui.setPicFileName(fileName);
      ui = getUserInfoService().saveUserInfo(ui);

      if (ui != null) {
        getUserInfoService().createUserFileInPost(ui);
        getUserCache().putUserInfoInCache(ui);
      }
      ActionForward forward = new ActionForward(SysUtil.getResultUrl(
          "succeed.userupimg", "in" + Constant.FILEPREFIX), true);
      return forward;

    }
    return actionMapping.findForward("error");
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -