com.ajaxjs.cms.app.attachment.Attachment_pictureController Maven / Gradle / Ivy
The newest version!
package com.ajaxjs.cms.app.attachment;
import java.io.IOException;
import java.util.Map;
import javax.ws.rs.DELETE;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.PUT;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.QueryParam;
import javax.ws.rs.core.MediaType;
import com.ajaxjs.config.ConfigService;
import com.ajaxjs.framework.BaseController;
import com.ajaxjs.framework.DataDict;
import com.ajaxjs.framework.IBaseService;
import com.ajaxjs.ioc.Bean;
import com.ajaxjs.ioc.Resource;
import com.ajaxjs.js.JsonHelper;
import com.ajaxjs.mvc.ModelAndView;
import com.ajaxjs.mvc.controller.MvcRequest;
import com.ajaxjs.mvc.filter.DataBaseFilter;
import com.ajaxjs.mvc.filter.MvcFilter;
import com.ajaxjs.util.io.image.ImageUtil;
import com.ajaxjs.web.UploadFileInfo;
/**
*
* @author sp42 [email protected]
*
*/
@Bean
@Path("/admin/attachmentPicture")
public class Attachment_pictureController extends BaseController {
@Resource("Attachment_pictureService")
private Attachment_pictureService service;
@GET
@Path("list")
@MvcFilter(filters = DataBaseFilter.class)
public String list(@QueryParam("start") int start, @QueryParam("limit") int limit, ModelAndView mv) {
mv.put("imgRelativePath", ConfigService.getValueAsString("uploadFile" + ".relativePath"));
mv.put("catelogMap", DataDict.picMap);
listPaged(start, limit, mv);
return adminListCMS();
}
@GET
@MvcFilter(filters = DataBaseFilter.class)
@Path("getListByOwnerUid/{id}")
@Produces(MediaType.APPLICATION_JSON)
public String getListByOwnerUid(@PathParam("id") Long owenrUid) {
return toJson(service.findByOwner(owenrUid));
}
@GET
@MvcFilter(filters = DataBaseFilter.class)
@Path("getAttachmentPictureByOwner/{id}")
@Produces(MediaType.APPLICATION_JSON)
public String getAttachmentPictureByOwner(@PathParam("id") Long owenrUid) {
return toJson(service.findAttachmentPictureByOwner(owenrUid));
}
@POST
@MvcFilter(filters = DataBaseFilter.class)
@Path("/upload/{id}/")
@Produces(MediaType.APPLICATION_JSON)
public String imgUpload(MvcRequest request, @PathParam("id") Long owenerId, @QueryParam("catelog") int catelogId) throws IOException{
final UploadFileInfo info = uploadByConfig(request);
if (info.isOk) {
// 获取图片信息
ImageUtil img = new ImageUtil().setFilePath(info.fullPath).getSize();
Attachment_picture picture = new Attachment_picture();
picture.setOwner(owenerId);
picture.setName(info.saveFileName);
picture.setPath(info.path);
picture.setPicWidth(img.getWidth());
picture.setPicHeight(img.getHeight());
picture.setFileSize((int) (img.getFile().length() / 1024));
if (catelogId != 0)
picture.setCatelog(catelogId);
final Long _newlyId = service.create(picture);
return "json::" + JsonHelper.toJson(new Object() {
@SuppressWarnings("unused")
public Boolean isOk = true;
@SuppressWarnings("unused")
public String msg = "上传成功!";
@SuppressWarnings("unused")
public String imgUrl = info.path.replaceFirst("^/", "");
@SuppressWarnings("unused")
public Long newlyId = _newlyId;
});
} else
return jsonNoOk("上传失败!");
}
@POST
@MvcFilter(filters = DataBaseFilter.class)
@Path("/upload/staticPageUsedImg/")
@Produces(MediaType.APPLICATION_JSON)
public String imgUpload(MvcRequest request) throws IOException {
final UploadFileInfo info = uploadByConfig(request);
if (info.isOk) {
// 获取图片信息
ImageUtil img = new ImageUtil().setFilePath(info.fullPath).getSize();
Attachment_picture picture = new Attachment_picture();
picture.setName(info.saveFileName);
picture.setPath(info.path);
picture.setPicWidth(img.getWidth());
picture.setPicHeight(img.getHeight());
picture.setFileSize((int) (img.getFile().length() / 1024));
picture.setCatelog(1);
final Long _newlyId = service.create(picture);
System.out.println(info.path);
return "json::" + JsonHelper.toJson(new Object() {
@SuppressWarnings("unused")
public Boolean isOk = true;
@SuppressWarnings("unused")
public String msg = "上传成功!";
@SuppressWarnings("unused")
public String imgUrl = info.path;
@SuppressWarnings("unused")
public Long newlyId = _newlyId;
});
} else
return jsonNoOk("上传失败!");
}
@POST
@MvcFilter(filters = DataBaseFilter.class)
@Path("/saveImgIndex")
@Produces(MediaType.APPLICATION_JSON)
public String saveImgIndex(Map map) {
if (service.saveImgIndex(map)) {
return jsonNoOk("修改图片索引成功!");
}
return jsonNoOk("修改图片索引失败!");
}
@GET
@Override
public String createUI(ModelAndView model) {
return show405;
}
@Override
public String editUI(Long id, ModelAndView model) {
return show405;
}
@POST
@Override
public String create(Attachment_picture entity) {
return show405;
}
@PUT
@Path("{id}")
@Override
public String update(@PathParam("id") Long id, Attachment_picture entity) {
return show405;
}
@DELETE
@Path("{id}")
@MvcFilter(filters = DataBaseFilter.class)
@Produces(MediaType.APPLICATION_JSON)
public String delete(@PathParam("id") Long id, MvcRequest request) {
Attachment_picture pic = service.findById(id);
pic.setPath(request.mappath(pic.getPath())); // 转换为绝对地址
return delete(id, pic);
}
@Override
public IBaseService getService() {
return service;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy