sendError(res, "mySerial必須是數字");
return;
}
// 檢查是否為合法的carID
CarReg cr = null;
PhoneReg pr = null;
cr = cr_service.getDataByID(devID);
if (null == cr) {
// 檢查是否為合法的phoneID
pr = pr_service.getDataByID(devID);
if (null == pr) {
sendError(res, "提供的ID尚未註冊, devID = " + devID);
return;
}
}
List<BlobKey> blobs = blobstoreService.getUploads(req).get("myFile");
BlobKey blobKey = blobs.get(0);
if (null == blobKey) {
sendError(res, "無法正常儲存上傳的檔案");
return;
}
ImagesService imagesService = ImagesServiceFactory.getImagesService();
ServingUrlOptions servingOptions = ServingUrlOptions.Builder.withBlobKey(blobKey);
String servingUrl = imagesService.getServingUrl(servingOptions);
res.setStatus(HttpServletResponse.SC_OK);
res.setContentType("application/json");
// 二種方式都能存取上傳的圖檔
JSONObject json = new JSONObject();
// json.put("serving_url", servingUrl);
// json.put("blob_key", blobKey.getKeyString());
// json.put("direct_url", "/serve?blob_key=" + blobKey.getKeyString());
// 儲存在db的動作
DeviceUpload du = new DeviceUpload();
du.setDevID(devID);
du.setMySerial(mySerial);
du.setServing_url(servingUrl);
du.setBlob_key(blobKey.getKeyString());
du.setAddTime(CTCommon.getNowTime());
du_service.add(du);
log.info("新增一筆設備上傳記錄:" + JSON.toJSONString(du));
// 直接新增message info到db
// 並直接把message content發給相關的devices
JSONObject retJson = new JSONObject();
CarTracePushNotificationAPI ctpn_api = new CarTracePushNotificationAPI();
if (null != cr) {
String carID = cr.getEncodedKey();
String title = "設備上傳記錄";
String message = String.format("設備於%s上傳圖片", du.getAddTime());
JSONObject rowdata = new JSONObject();
rowdata.put("carID", carID);
rowdata.put("addTime", du.getAddTime());