123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494 |
- package com.yihu.wlyy.web;
- import java.io.File;
- import java.io.FileOutputStream;
- import java.io.IOException;
- import java.io.InputStream;
- import java.net.HttpURLConnection;
- import java.net.URL;
- import java.security.MessageDigest;
- import java.util.Date;
- import java.util.HashMap;
- import java.util.Map;
- import java.util.Random;
- import org.apache.commons.lang3.StringUtils;
- import org.json.JSONObject;
- import org.springframework.beans.factory.annotation.Autowired;
- import com.yihu.wlyy.entity.security.AccessToken;
- import com.yihu.wlyy.entity.security.JsApiTicket;
- import com.yihu.wlyy.entity.patient.Patient;
- import com.yihu.wlyy.entity.security.Token;
- import com.yihu.wlyy.service.common.account.AccessTokenService;
- import com.yihu.wlyy.service.common.account.PatientService;
- import com.yihu.wlyy.service.common.account.TokenService;
- import com.yihu.wlyy.util.DateUtil;
- import com.yihu.wlyy.util.HttpUtil;
- import com.yihu.wlyy.util.ImageCompress;
- import com.yihu.wlyy.util.SystemConf;
- import com.yihu.wlyy.util.SystemData;
- public class WeixinBaseController extends BaseController {
- @Autowired
- private PatientService patientService;
- @Autowired
- private AccessTokenService accessTokenService;
- @Autowired
- private TokenService tokenService;
- /**
- * 通过code获取判断openid
- *
- * @param code
- * @return
- */
- public String getOpenidByCode(String code) {
- try {
- String token_url = "https://api.weixin.qq.com/sns/oauth2/access_token";
- String params = "appid=" + SystemConf.getInstance().getAppId() + "&secret=" + SystemConf.getInstance().getAppSecret() + "&code=" + code + "&grant_type=authorization_code";
- String result = HttpUtil.sendGet(token_url, params);
- JSONObject json = new JSONObject(result);
- if (json.has("openid")) {
- return json.get("openid").toString();
- } else {
- return null;
- }
- } catch (Exception e) {
- error(e);
- }
- return null;
- }
- /**
- * 通过code获取判断openid
- *
- * @param code
- * @return
- */
- public String getOpenid(String code) {
- try {
- String token_url = "https://api.weixin.qq.com/sns/oauth2/access_token";
- String params = "appid=" + SystemConf.getInstance().getAppId() + "&secret=" + SystemConf.getInstance().getAppSecret() + "&code=" + code + "&grant_type=authorization_code";
- String result = HttpUtil.sendGet(token_url, params);
- JSONObject json = new JSONObject(result);
- Map<Object, Object> map = new HashMap<Object, Object>();
- if (json.has("openid")) {
- String openid = json.get("openid").toString();
- map.put("openid", openid);
- return write(200, "获取成功", "data", map);
- } else {
- return error(Integer.parseInt(json.get("errcode").toString()), "操作失败:" + json.get("errmsg").toString());
- }
- } catch (Exception e) {
- error(e);
- return invalidUserException(e, -1, "操作失败!");
- }
- }
- /**
- * 拼接地址?后的参数
- *
- * @param data
- * @param type
- * @return
- */
- public String getParamUrl(String data, int type) {
- try {
- JSONObject jsonData = new JSONObject(data);
- String id = jsonData.get("id").toString();
- String uid = jsonData.get("uid").toString();
- String name = jsonData.get("name").toString();
- String openid = jsonData.get("openid").toString();
- String photo = jsonData.get("photo").toString();
- String token = jsonData.get("token").toString();
- String paramUrl = "?type=" + type + "&id=" + id + "&uid=" + uid + "&name=" + name + "&openid=" + openid + "&photo=" + photo + "&token=" + token;
- return paramUrl;
- } catch (Exception e) {
- error(e);
- return "";
- }
- }
- /**
- * 获取微信的access_token
- *
- * @return
- */
- public String getAccessToken() {
- try {
- Iterable<AccessToken> accessTokens = accessTokenService.findAccessToken();
- if (accessTokens != null) {
- for (AccessToken accessToken : accessTokens) {
- if ((System.currentTimeMillis() - accessToken.getAdd_timestamp()) < (accessToken.getExpires_in() * 1000)) {
- return accessToken.getAccess_token();
- } else {
- accessTokenService.delAccessToken(accessToken);
- break;
- }
- }
- }
- String token_url = "https://api.weixin.qq.com/cgi-bin/token";
- String params = "grant_type=client_credential&appid=" + SystemConf.getInstance().getAppId() + "&secret=" + SystemConf.getInstance().getAppSecret();
- String result = HttpUtil.sendGet(token_url, params);
- JSONObject json = new JSONObject(result);
- if (json.has("access_token")) {
- String token = json.get("access_token").toString();
- String expires_in = json.get("expires_in").toString();
- AccessToken newaccessToken = new AccessToken();
- newaccessToken.setAccess_token(token);
- newaccessToken.setExpires_in(Long.parseLong(expires_in));
- accessTokenService.addAccessToken(newaccessToken);
- return token;
- } else {
- return null;
- }
- } catch (Exception e) {
- error(e);
- return null;
- }
- }
- /**
- * 获取微信的jsapi_ticket
- *
- * @return
- */
- public String getJsapi_ticketByToken() {
- try {
- Iterable<JsApiTicket> jsapiTickets = accessTokenService.findJsapiTicket();
- if (jsapiTickets != null) {
- for (JsApiTicket jsApiTicket : jsapiTickets) {
- if ((System.currentTimeMillis() - jsApiTicket.getAdd_timestamp()) < (jsApiTicket.getExpires_in() * 1000)) {
- return jsApiTicket.getJsapi_ticket();
- } else {
- accessTokenService.delJsapiTicket(jsApiTicket);
- break;
- }
- }
- }
- String token = getAccessToken();
- if (token != null) {
- String token_url = "https://api.weixin.qq.com/cgi-bin/ticket/getticket";
- String params = "access_token=" + token + "&type=jsapi";
- String result = HttpUtil.sendGet(token_url, params);
- JSONObject json = new JSONObject(result);
- if (json.has("ticket")) {
- String ticket = json.get("ticket").toString();
- String expires_in = json.get("expires_in").toString();
- JsApiTicket newJsApiTicket = new JsApiTicket();
- newJsApiTicket.setJsapi_ticket(ticket);
- newJsApiTicket.setExpires_in(Long.parseLong(expires_in));
- accessTokenService.addJsapiTicket(newJsApiTicket);
- return ticket;
- } else {
- return null;
- }
- } else {
- return null;
- }
- } catch (Exception e) {
- error(e);
- return null;
- }
- }
- /**
- * @description: SHA、SHA1加密 @parameter: str:待加密字符串 @return: 加密串
- **/
- public String SHA1(String str) {
- try {
- MessageDigest digest = java.security.MessageDigest.getInstance("SHA-1"); // 如果是SHA加密只需要将"SHA-1"改成"SHA"即可
- digest.update(str.getBytes());
- byte messageDigest[] = digest.digest();
- // Create Hex String
- StringBuffer hexStr = new StringBuffer();
- // 字节数组转换为 十六进制 数
- for (int i = 0; i < messageDigest.length; i++) {
- String shaHex = Integer.toHexString(messageDigest[i] & 0xFF);
- if (shaHex.length() < 2) {
- hexStr.append(0);
- }
- hexStr.append(shaHex);
- }
- return hexStr.toString();
- } catch (Exception e) {
- error(e);
- }
- return null;
- }
- /**
- * 获取微信服务器图片
- *
- * @return
- */
- public String Images() {
- String photos = "";
- try {
- String images = request.getParameter("mediaIds");
- if (StringUtils.isEmpty(images)) {
- return photos;
- }
- String[] mediaIds = images.split(",");
- for (String mediaId : mediaIds) {
- if (StringUtils.isEmpty(mediaId)) {
- continue;
- }
- String temp = saveImageToDisk(mediaId);
- if (StringUtils.isNotEmpty(temp)) {
- if (photos.length() == 0) {
- photos = temp;
- } else {
- photos += "," + temp;
- }
- }
- }
- } catch (Exception e) {
- error(e);
- }
- return photos;
- }
- /**
- * 获取下载图片信息(jpg)
- *
- * @param mediaId 文件的id
- * @throws Exception
- */
- public String saveImageToDisk(String mediaId) throws Exception {
- // 文件保存的临时路径
- String tempPath = SystemConf.getInstance().getTempPath() + File.separator;
- // 拼接年月日路径
- String datePath = DateUtil.getStringDate("yyyy") + File.separator + DateUtil.getStringDate("MM") + File.separator + DateUtil.getStringDate("dd") + File.separator;
- // 重命名文件
- String newFileName = DateUtil.dateToStr(new Date(), DateUtil.YYYYMMDDHHMMSS) + "_" + new Random().nextInt(1000) + ".png";
- // 保存路径
- File uploadFile = new File(tempPath + datePath + newFileName);
- InputStream inputStream = null;
- FileOutputStream fileOutputStream = null;
- try {
- if (!uploadFile.getParentFile().exists()) {
- uploadFile.getParentFile().mkdirs();
- }
- inputStream = getInputStream(mediaId);
- byte[] data = new byte[1024];
- int len = 0;
- fileOutputStream = new FileOutputStream(uploadFile);
- while ((len = inputStream.read(data)) != -1) {
- fileOutputStream.write(data, 0, len);
- }
- // 生成缩略图
- ImageCompress.compress(uploadFile.getAbsolutePath(), uploadFile.getAbsolutePath() + "_small", 300, 300);
- // 返回保存路径
- return datePath + newFileName;
- } catch (IOException e) {
- e.printStackTrace();
- } finally {
- if (inputStream != null) {
- try {
- inputStream.close();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- if (fileOutputStream != null) {
- try {
- fileOutputStream.close();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- }
- return null;
- }
- public String saveImageToDiskNoImageCompress(String mediaId) throws Exception {
- // 文件保存的临时路径
- String tempPath = SystemConf.getInstance().getImagePath() + File.separator;
- // 拼接年月日路径
- String datePath = DateUtil.getStringDate("yyyy") + File.separator + DateUtil.getStringDate("MM") + File.separator + DateUtil.getStringDate("dd") + File.separator;
- // 重命名文件
- String newFileName = DateUtil.dateToStr(new Date(), DateUtil.YYYYMMDDHHMMSS) + "_" + new Random().nextInt(1000) + ".png";
- // 保存路径
- File uploadFile = new File(tempPath + datePath + newFileName);
- InputStream inputStream = null;
- FileOutputStream fileOutputStream = null;
- try {
- if (!uploadFile.getParentFile().exists()) {
- uploadFile.getParentFile().mkdirs();
- }
- inputStream = getInputStream(mediaId);//下载微信图片
- byte[] data = new byte[1024];
- int len = 0;
- fileOutputStream = new FileOutputStream(uploadFile);
- while ((len = inputStream.read(data)) != -1) {
- fileOutputStream.write(data, 0, len);
- }
- return datePath + newFileName;
- } catch (IOException e) {
- e.printStackTrace();
- } finally {
- if (inputStream != null) {
- try {
- inputStream.close();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- if (fileOutputStream != null) {
- try {
- fileOutputStream.close();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- }
- return null;
- }
- /**
- * 获取微信服务器图片
- *
- * @return
- */
- public String fetchWxImages() {
- String photos = "";
- try {
- String images = request.getParameter("mediaIds");
- if (StringUtils.isEmpty(images)) {
- return photos;
- }
- String[] mediaIds = images.split(",");
- for (String mediaId : mediaIds) {
- if (StringUtils.isEmpty(mediaId)) {
- continue;
- }
- String temp = saveImageToDisk(mediaId);
- if (StringUtils.isNotEmpty(temp)) {
- if (photos.length() == 0) {
- photos = temp;
- } else {
- photos += "," + temp;
- }
- }
- }
- } catch (Exception e) {
- error(e);
- }
- return photos;
- }
- /**
- * 获取微信服务器语音
- *
- * @return
- */
- public String fetchWxVoices() {
- String voiceIds = "";
- try {
- String voices = request.getParameter("voices");
- if (StringUtils.isEmpty(voices)) {
- return voices;
- }
- String[] mediaIds = voices.split(",");
- for (String mediaId : mediaIds) {
- if (StringUtils.isEmpty(mediaId)) {
- continue;
- }
- String temp = saveVoiceToDisk(mediaId);
- if (StringUtils.isNotEmpty(temp)) {
- if (voiceIds.length() == 0) {
- voiceIds = temp;
- } else {
- voiceIds += "," + temp;
- }
- }
- }
- } catch (Exception e) {
- error(e);
- }
- return voiceIds;
- }
- /**
- * 获取下载语音信息(jpg)
- *
- * @param mediaId 文件的id
- * @throws Exception
- */
- public String saveVoiceToDisk(String mediaId) throws Exception {
- // 文件保存的临时路径
- String tempPath = SystemConf.getInstance().getTempPath() + File.separator;
- // 拼接年月日路径
- String datePath = DateUtil.getStringDate("yyyy") + File.separator + DateUtil.getStringDate("MM") + File.separator + DateUtil.getStringDate("dd") + File.separator;
- // 重命名文件
- String newFileName = DateUtil.dateToStr(new Date(), DateUtil.YYYYMMDDHHMMSS) + "_" + new Random().nextInt(1000) + ".mp3";
- // 保存路径
- File uploadFile = new File(tempPath + datePath + newFileName);
- InputStream inputStream = null;
- FileOutputStream fileOutputStream = null;
- try {
- if (!uploadFile.getParentFile().exists()) {
- uploadFile.getParentFile().mkdirs();
- }
- inputStream = getInputStream(mediaId);
- byte[] data = new byte[1024];
- int len = 0;
- fileOutputStream = new FileOutputStream(uploadFile);
- while ((len = inputStream.read(data)) != -1) {
- fileOutputStream.write(data, 0, len);
- }
- // 返回保存路径
- return datePath + newFileName;
- } catch (IOException e) {
- e.printStackTrace();
- } finally {
- if (inputStream != null) {
- try {
- inputStream.close();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- if (fileOutputStream != null) {
- try {
- fileOutputStream.close();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- }
- return null;
- }
- /**
- * 下载多媒体文件(请注意,视频文件不支持下载,调用该接口需http协议)
- *
- * @return
- */
- public InputStream getInputStream(String mediaId) {
- String accessToken = getAccessToken();
- InputStream is = null;
- String url = "http://file.api.weixin.qq.com/cgi-bin/media/get?access_token=" + accessToken + "&media_id=" + mediaId;
- try {
- URL urlGet = new URL(url);
- HttpURLConnection http = (HttpURLConnection) urlGet.openConnection();
- http.setRequestMethod("GET"); // 必须是get方式请求
- http.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
- http.setDoOutput(true);
- http.setDoInput(true);
- System.setProperty("sun.net.client.defaultConnectTimeout", "30000");// 连接超时30秒
- System.setProperty("sun.net.client.defaultReadTimeout", "30000"); // 读取超时30秒
- http.connect();
- // 获取文件转化为byte流
- is = http.getInputStream();
- } catch (Exception e) {
- e.printStackTrace();
- }
- return is;
- }
- }
|