标签:framework param extern echo com value eclipse err OLE
使用码云(gitee)码云作一个免费图床V2.0第一版已完成,这篇文章是在第一版的基础上进行改造升级了。第一版的详细文章请见>>>
https://blog.csdn.net/pyfysf/article/details/103990753
https://www.cnblogs.com/upuptop/p/12197125.html
第一版完成的预览图,目前我这里已经开发好了免费图床多人版本,并且已经部署到服务器上了,服务器比较廉价,访问速度一般。如果想使用免费图床的朋友们,可以添加我微信(pyfysf_123)领取免费账号哟!
V1.0 的做法逻辑是 利用gitee的gitpage服务,通过上传文件,将文件链接转换为gitpage服务的访问地址
,缺陷:因为是使用了gitpage服务,所以每次上传完成之后都需要刷新图床操作(重新发布gitpage),还会出现频繁操作的错误。
V2.0使用了资源文件的访问方式操作直接对仓库的文件进行raw访问
https://gitee.com/quxuecx/TypechoBlogImg/raw/master/1589128646_20200510124846298_15964.jpg
创建成功之后,获取你的仓库git地址:
这个地方后续开发中会用到,一定要记得哦
https://gitee.com/apk2sf/TypechoBlogImg.git
apk2sf: 用户标识
TypechoBlogImg: 仓库名称
不需要开启gitpage服务
码云OpenAPI :
https://gitee.com/api/v5/swagger
我们这里主要使用到了
参数列表:点击下方的测试按钮,可以查看到请求地址
代码基本上没有什么逻辑,通过http协议请求码云的api就好了。下面是后端java代码分享
GiteeImgBedConstant.java
/**
* 码云博客图床的常量类
*
* @author: pyfysf
* <p>
* @qq: 337081267
* <p>
* @CSDN: http://blog.csdn.net/pyfysf
* <p>
* @blog: http://wintp.top
* <p>
* @email: pyfysf@163.com
* <p>
* @time: 2019/12/8
*/
public interface GiteeImgBedConstant {
/**
* TODO:这个常量是码云为您分配的私人令牌,Token 这里的代码会报错,仅仅是为了提醒您进行修改
*/
String ACCESS_TOKEN =
/**
* 仓库所属地址 这个是您的私人用户名 具体请参考创建仓库时的注意事项
*/
String OWNER =
/**
* TODO:仓库名称 这里是您的仓库名称
*/
String REPO_NAME =
/**
* TODO: 上传图片的message
*/
String CREATE_REPOS_MESSAGE = "add img";
/**
* TODO:文件前缀
*/
String IMG_FILE_DEST_PATH = "/img/" + DateUtil.format(new Date(), "yyyy_MM_dd") + "/";
/**
* 新建文件
* <p>
* owner* 仓库所属空间地址(企业、组织或个人的地址path)
* repo* 仓库路径
* path* 文件的路径
* content* 文件内容, 要用 base64 编码
* message* 提交信息
* <p>
* %s =>仓库所属空间地址(企业、组织或个人的地址path) (owner)
* %s => 仓库路径(repo)
* %s => 文件的路径(path)
*/
String CREATE_REPOS_URL = "https://gitee.com/api/v5/repos/%s/%s/contents/%s";
/**
* 请求建立page 如果建立了,可以刷新
* <p>
* owner* 仓库所属空间地址(企业、组织或个人的地址path)
* repo* 仓库
*/
String BUILD_PAGE_URL = "https://gitee.com/api/v5/repos/%s/%s/pages/builds";
/**
* TODO: gitpage请求路径
* 示例:"https://gitee.com/quxuecx/TypechoBlogImg/raw/master/";
*/
String GITPAGE_REQUEST_URL =
}
GiteeBlogImgMController.java
import org.springframework.transaction.annotation.Transactional;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;
import java.util.HashMap;
import java.util.Map;
import cn.hutool.core.codec.Base64;
import cn.hutool.core.util.IdUtil;
import cn.hutool.http.HttpUtil;
import cn.hutool.json.JSONObject;
import cn.hutool.json.JSONUtil;
import io.swagger.annotations.Api;
import lombok.extern.slf4j.Slf4j;
import top.wintp.upuptopboot.common.constant.GiteeImgBedConstant;
import top.wintp.upuptopboot.common.utils.ResultUtil;
import top.wintp.upuptopboot.common.vo.Result;
@Slf4j
@RestController
@Api(description = "码云博客图床管理接口")
@RequestMapping("/api/giteeBlogImg")
@Transactional
public class GiteeBlogImgMController {
@RequestMapping("saveImg")
@ResponseBody
public Result<Map<String, Object>> saveImg(@RequestParam(value = "imgFile", required = true) MultipartFile imgFile) throws Exception {
Result<Map<String, Object>> result = ResultUtil.success("请求成功");
Map<String, Object> resultMap = new HashMap<String, Object>();
String trueFileName = imgFile.getOriginalFilename();
assert trueFileName != null;
String suffix = trueFileName.substring(trueFileName.lastIndexOf("."));
String fileName = System.currentTimeMillis() + "_" + IdUtil.randomUUID() + suffix;
String paramImgFile = Base64.encode(imgFile.getBytes());
//转存到gitee
Map<String, Object> paramMap = new HashMap<>();
paramMap.put("access_token", GiteeImgBedConstant.ACCESS_TOKEN);
paramMap.put("message", GiteeImgBedConstant.CREATE_REPOS_MESSAGE);
paramMap.put("content", paramImgFile);
String targetDir = GiteeImgBedConstant.IMG_FILE_DEST_PATH + fileName;
String requestUrl = String.format(GiteeImgBedConstant.CREATE_REPOS_URL, GiteeImgBedConstant.OWNER,
GiteeImgBedConstant.REPO_NAME, targetDir);
System.out.println(requestUrl);
String resultJson = HttpUtil.post(requestUrl, paramMap);
JSONObject jsonObject = JSONUtil.parseObj(resultJson);
if (jsonObject.getObj("commit") != null) {
String resultImgUrl = GiteeImgBedConstant.GITPAGE_REQUEST_URL + targetDir;
resultMap.put("resultImgUrl", resultImgUrl);
System.out.println(resultJson);
result.setCode(200);
} else {
result.setCode(400);
}
result.setResult(resultMap);
return result;
}
/*
这里不需要刷新图床了
@RequestMapping("refreshPage")
@ResponseBody
public Result<Object> refreshPage() throws Exception {
Result<Object> result = ResultUtil.success("成功");
Map<String, Object> paramMap = new HashMap<>();
paramMap.put("access_token", GiteeImgBedConstant.ACCESS_TOKEN);
String requestUrl = String.format(GiteeImgBedConstant.BUILD_PAGE_URL,
GiteeImgBedConstant.OWNER, GiteeImgBedConstant.REPO_NAME);
System.out.println(requestUrl);
Map<String, Object> resultMap = new HashMap<>();
String resultJson = HttpUtil.post(requestUrl, paramMap);
JSONObject jsonObject = JSONUtil.parseObj(resultJson);
if (jsonObject.getStr("status") != null) {
String notice = jsonObject.getStr("notice");
if (notice != null) {
if ("Deployed frequently".equalsIgnoreCase(notice)) {
resultMap.put("message", "部署频繁");
result.setCode(404);
} else {
resultMap.put("message", "其他错误");
}
result.setCode(404);
}
} else {
result.setCode(200);
}
System.out.println(resultJson);
return result;
}
*/
}
Result类:
@Data
public class Result<T> implements Serializable{
private static final long serialVersionUID = 1L;
/**
* 成功标志
*/
private boolean success;
/**
* 消息
*/
private String message;
/**
* 返回代码
*/
private Integer code;
/**
* 时间戳
*/
private long timestamp = System.currentTimeMillis();
/**
* 结果对象
*/
private T result;
}
关于代码说明:里面所用到的工具包在Hutool中,具体的import已在博文中提供。如遇到问题,欢迎加我好友哦~ QQ:337081267
后端代码就这样愉快的结束了……
与V1.0一致
略……
通过raw的地址进行访问,就可以不需要gitpage服务了,也不需要重新刷新图床了。
一个公开的仓库,一个token 既可完成。省略了开通gitpage的服务步骤,修复了无法及时刷新图片的问题。
如果你想使用这样一个图床,但是又不想自己开发,你可以添加我的微信,可以免费使用我的平台……
标签:framework param extern echo com value eclipse err OLE
原文地址:https://blog.51cto.com/10899894/2494501