Browse Source

体积小

XMLWAN 3 years ago
parent
commit
675bd2b06f

+ 98 - 7
controllers/xcx_mobile_api_controller.go/xcx_api_controller.go View File

@@ -30,6 +30,9 @@ func XcxApiControllersRegisterRouters() {
30 30
 
31 31
 	//获取排班数据
32 32
 	beego.Router("/xcx/api/mobile/schedule", &XcxApiController{}, "Get:GetScheduleInfo")
33
+
34
+	//获取病历信息
35
+	//beego.Router("/xcx/api/mobile/")
33 36
 }
34 37
 
35 38
 type XcxApiController struct {
@@ -138,7 +141,7 @@ func (this *XcxApiController) GetLoginInfor() {
138 141
 	fmt.Println(mobile)
139 142
 	info, err := service.GetMobilePatientInfo(mobile)
140 143
 	if info.ID == 0 {
141
-		if err == nil {
144
+		if err != nil {
142 145
 			this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeSystemError)
143 146
 			return
144 147
 		}
@@ -181,10 +184,18 @@ func (this *XcxApiController) GetLoginInfor() {
181 184
 }
182 185
 
183 186
 func (this *XcxApiController) GetPatientList() {
184
-	var appid = "wx20b60369111b063a"
185
-	var key = "4BactRvIKCBXzvpyl2SQyQ=="
186
-	var iv = "aXiAcKIWKfseTyzelqcZ0w=="
187
-	var strs = "Gr5gmKz9OjWGipAxt3ujQtHBBXV/Uvhsm+qvvZy6gF+HBc8c6gZhZkqIqLbs8nHkId5zm/mGVNpghvM/egYTLOOI7LxhvjRsPE1691j+jltU9OIavGIWFp3I4m3OdP9CuPohhrpZPgwsGajJmtGNNjPvGA61ssErVZ7SBceq+leag532zCmgEXN3NpZP0TRgpIpwpegCAEW07oyI0LiRYA=="
187
+	//var appid = "wx4f4bc4dec97d474b"
188
+	//var key = "tiihtNczf5v6AKRyjwEUhQ=="
189
+	//var iv = "r7BXXKkLb8qrSNn05n0qiA=="
190
+	//var strs = "CiyLU1Aw2KjvrjMdj8YKliAjtP4gsMZMQmRzooG2xrDcvSnxIMXFufNstNGTyaGS9uT5geRa0W4oTOb1WT7fJlAC+oNPdbB+3hVbJSRgv+4lGOETKUQz6OYStslQ142dNCuabNPGBzlooOmB231qMM85d2/fV6ChevvXvQP8Hkue1poOFtnEtpyxVLW1zAo6/1Xx1COxFvrc2d7UL/lmHInNlxuacJXwu0fjpXfz/YqYzBIBzD6WUfTIF9GRHpOn/Hz7saL8xz+W//FRAUid1OksQaQx4CMs8LOddcQhULW4ucetDf96JcR3g0gfRK4PC7E/r7Z6xNrXd2UIeorGj5Ef7b1pJAYB6Y5anaHqZ9J6nKEBvB4DnNLIVWSgARns/8wR2SiRS7MNACwTyrGvt9ts8p12PKFdlqYTopNHR1Vf7XjfhQlVsAJdNiKdYmYVoKlaRv85IfVunYzO0IKXsyl7JCUjCpoG20f0a04COwfneQAGGwd5oa+T8yO5hzuyDb/XcxxmK01EpqOyuxINew=="
191
+
192
+	appid := "wx4f4bc4dec97d474b"
193
+	key := "4BactRvIKCBXzvpyl2SQyQ=="
194
+	strs := "Gr5gmKz9OjWGipAxt3ujQtHBBXV/Uvhsm+qvvZy6gF+HBc8c6gZhZkqIqLbs8nHkId5zm/mGVNpghvM/egYTLOOI7LxhvjRsPE1691j+jltU9OIavGIWFp3I4m3OdP9CuPohhrpZPgwsGajJmtGNNjPvGA61ssErVZ7SBceq+leag532zCmgEXN3NpZP0TRgpIpwpegCAEW07oyI0LiRYA=="
195
+	iv := "aXiAcKIWKfseTyzelqcZ0w=="
196
+	//data, err := service.Dncrypt(strs, key, iv)
197
+	//fmt.Println(err)
198
+
188 199
 	data, err := service.DecryptData(appid, key, iv, strs)
189 200
 	patient_id, _ := this.GetInt64("patient_id")
190 201
 	patient, err := service.GetPatientListByPatientId(patient_id)
@@ -203,17 +214,20 @@ func (this *XcxApiController) GetPatientList() {
203 214
 func (this *XcxApiController) GetDataInfo() {
204 215
 
205 216
 	appid := this.GetString("appid")
217
+	fmt.Println(appid)
206 218
 	key := this.GetString("key")
207 219
 	iv := this.GetString("iv")
208 220
 	encryptedData := this.GetString("encryptedData")
209 221
 	list, _ := service.DecryptData(appid, key, iv, encryptedData)
210
-	fmt.Println(list)
222
+	//list, err := service.Dncrypt(encryptedData, key, iv)
223
+
211 224
 	this.ServeSuccessJSON(map[string]interface{}{
212 225
 		"list": list,
213 226
 	})
214 227
 }
215 228
 
216 229
 func (this *XcxApiController) GetScheduleInfo() {
230
+	//patient_id, _ := this.GetInt64("patient_id")
217 231
 	thisWeekMonday := service.GetFirstDateOfWeek()
218 232
 	weekDayWeek := service.GetWeekDayOfWeek()
219 233
 	TimeMonday, _ := time.Parse("2006-01-02", thisWeekMonday)
@@ -229,8 +243,85 @@ func (this *XcxApiController) GetScheduleInfo() {
229 243
 	loc, _ := time.LoadLocation("Local")
230 244
 
231 245
 	startTime, _ := time.ParseInLocation(timeLayout+" 15:04:05", weekMonday+" 00:00:00", loc)
232
-
246
+	fmt.Println("startiem", startTime)
233 247
 	endTime, _ := time.ParseInLocation(timeLayout+" 15:04:05", weekDay+" 00:00:00", loc)
234 248
 
235 249
 	fmt.Println(startTime.Unix(), endTime.Unix())
250
+
251
+	schedule, err := service.GetScheduleInfo(1630252800, 1631980800, 2448)
252
+	if err != nil {
253
+		this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeSystemError)
254
+		return
255
+	}
256
+	array := []interface{}{
257
+		map[string]string{"schedule_type": "1", "schedule_date": "1630252800", "schedule_week": "", "mode_id": ""},
258
+		map[string]string{"schedule_type": "2", "schedule_date": "1630252800", "schedule_week": "", "mode_id": ""},
259
+		map[string]string{"schedule_type": "3", "schedule_date": "1630252800", "schedule_week": "", "mode_id": ""},
260
+		map[string]string{"schedule_type": "1", "schedule_date": "1630339200", "schedule_week": "", "mode_id": ""},
261
+		map[string]string{"schedule_type": "2", "schedule_date": "1630339200", "schedule_week": "", "mode_id": ""},
262
+		map[string]string{"schedule_type": "3", "schedule_date": "1630339200", "schedule_week": "", "mode_id": ""},
263
+		map[string]string{"schedule_type": "1", "schedule_date": "1630425600", "schedule_week": "", "mode_id": ""},
264
+		map[string]string{"schedule_type": "2", "schedule_date": "1630425600", "schedule_week": "", "mode_id": ""},
265
+		map[string]string{"schedule_type": "3", "schedule_date": "1630425600", "schedule_week": "", "mode_id": ""},
266
+		map[string]string{"schedule_type": "1", "schedule_date": "1630512000", "schedule_week": "", "mode_id": ""},
267
+		map[string]string{"schedule_type": "2", "schedule_date": "1630512000", "schedule_week": "", "mode_id": ""},
268
+		map[string]string{"schedule_type": "3", "schedule_date": "1630512000", "schedule_week": "", "mode_id": ""},
269
+		map[string]string{"schedule_type": "1", "schedule_date": "1630598400", "schedule_week": "", "mode_id": ""},
270
+		map[string]string{"schedule_type": "2", "schedule_date": "1630598400", "schedule_week": "", "mode_id": ""},
271
+		map[string]string{"schedule_type": "3", "schedule_date": "1630598400", "schedule_week": "", "mode_id": ""},
272
+		map[string]string{"schedule_type": "1", "schedule_date": "1630684800", "schedule_week": "", "mode_id": ""},
273
+		map[string]string{"schedule_type": "2", "schedule_date": "1630684800", "schedule_week": "", "mode_id": ""},
274
+		map[string]string{"schedule_type": "3", "schedule_date": "1630684800", "schedule_week": "", "mode_id": ""},
275
+		map[string]string{"schedule_type": "1", "schedule_date": "1630771200", "schedule_week": "", "mode_id": ""},
276
+		map[string]string{"schedule_type": "2", "schedule_date": "1630771200", "schedule_week": "", "mode_id": ""},
277
+		map[string]string{"schedule_type": "3", "schedule_date": "1630771200", "schedule_week": "", "mode_id": ""},
278
+
279
+		map[string]string{"schedule_type": "1", "schedule_date": "1630857600", "schedule_week": "", "mode_id": ""},
280
+		map[string]string{"schedule_type": "2", "schedule_date": "1630857600", "schedule_week": "", "mode_id": ""},
281
+		map[string]string{"schedule_type": "3", "schedule_date": "1630857600", "schedule_week": "", "mode_id": ""},
282
+		map[string]string{"schedule_type": "1", "schedule_date": "1630944000", "schedule_week": "", "mode_id": ""},
283
+		map[string]string{"schedule_type": "2", "schedule_date": "1630944000", "schedule_week": "", "mode_id": ""},
284
+		map[string]string{"schedule_type": "3", "schedule_date": "1630944000", "schedule_week": "", "mode_id": ""},
285
+		map[string]string{"schedule_type": "1", "schedule_date": "1631030400", "schedule_week": "", "mode_id": ""},
286
+		map[string]string{"schedule_type": "2", "schedule_date": "1631030400", "schedule_week": "", "mode_id": ""},
287
+		map[string]string{"schedule_type": "3", "schedule_date": "1631030400", "schedule_week": "", "mode_id": ""},
288
+		map[string]string{"schedule_type": "1", "schedule_date": "1631116800", "schedule_week": "", "mode_id": ""},
289
+		map[string]string{"schedule_type": "2", "schedule_date": "1631116800", "schedule_week": "", "mode_id": ""},
290
+		map[string]string{"schedule_type": "3", "schedule_date": "1631116800", "schedule_week": "", "mode_id": ""},
291
+		map[string]string{"schedule_type": "1", "schedule_date": "1631203200", "schedule_week": "", "mode_id": ""},
292
+		map[string]string{"schedule_type": "2", "schedule_date": "1631203200", "schedule_week": "", "mode_id": ""},
293
+		map[string]string{"schedule_type": "3", "schedule_date": "1631203200", "schedule_week": "", "mode_id": ""},
294
+		map[string]string{"schedule_type": "1", "schedule_date": "1631289600", "schedule_week": "", "mode_id": ""},
295
+		map[string]string{"schedule_type": "2", "schedule_date": "1631289600", "schedule_week": "", "mode_id": ""},
296
+		map[string]string{"schedule_type": "3", "schedule_date": "1631289600", "schedule_week": "", "mode_id": ""},
297
+		map[string]string{"schedule_type": "1", "schedule_date": "1631376000", "schedule_week": "", "mode_id": ""},
298
+		map[string]string{"schedule_type": "2", "schedule_date": "1631376000", "schedule_week": "", "mode_id": ""},
299
+		map[string]string{"schedule_type": "3", "schedule_date": "1631376000", "schedule_week": "", "mode_id": ""},
300
+
301
+		map[string]string{"schedule_type": "1", "schedule_date": "1631462400", "schedule_week": "", "mode_id": ""},
302
+		map[string]string{"schedule_type": "2", "schedule_date": "1631462400", "schedule_week": "", "mode_id": ""},
303
+		map[string]string{"schedule_type": "3", "schedule_date": "1631462400", "schedule_week": "", "mode_id": ""},
304
+		map[string]string{"schedule_type": "1", "schedule_date": "1631548800", "schedule_week": "", "mode_id": ""},
305
+		map[string]string{"schedule_type": "2", "schedule_date": "1631548800", "schedule_week": "", "mode_id": ""},
306
+		map[string]string{"schedule_type": "3", "schedule_date": "1631548800", "schedule_week": "", "mode_id": ""},
307
+		map[string]string{"schedule_type": "1", "schedule_date": "1631635200", "schedule_week": "", "mode_id": ""},
308
+		map[string]string{"schedule_type": "2", "schedule_date": "1631635200", "schedule_week": "", "mode_id": ""},
309
+		map[string]string{"schedule_type": "3", "schedule_date": "1631635200", "schedule_week": "", "mode_id": ""},
310
+		map[string]string{"schedule_type": "1", "schedule_date": "1631721600", "schedule_week": "", "mode_id": ""},
311
+		map[string]string{"schedule_type": "2", "schedule_date": "1631721600", "schedule_week": "", "mode_id": ""},
312
+		map[string]string{"schedule_type": "3", "schedule_date": "1631721600", "schedule_week": "", "mode_id": ""},
313
+		map[string]string{"schedule_type": "1", "schedule_date": "1631808000", "schedule_week": "", "mode_id": ""},
314
+		map[string]string{"schedule_type": "2", "schedule_date": "1631808000", "schedule_week": "", "mode_id": ""},
315
+		map[string]string{"schedule_type": "3", "schedule_date": "1631808000", "schedule_week": "", "mode_id": ""},
316
+		map[string]string{"schedule_type": "1", "schedule_date": "1631894400", "schedule_week": "", "mode_id": ""},
317
+		map[string]string{"schedule_type": "2", "schedule_date": "1631894400", "schedule_week": "", "mode_id": ""},
318
+		map[string]string{"schedule_type": "3", "schedule_date": "1631894400", "schedule_week": "", "mode_id": ""},
319
+		map[string]string{"schedule_type": "1", "schedule_date": "1631980800", "schedule_week": "", "mode_id": ""},
320
+		map[string]string{"schedule_type": "2", "schedule_date": "1631980800", "schedule_week": "", "mode_id": ""},
321
+		map[string]string{"schedule_type": "3", "schedule_date": "1631980800", "schedule_week": "", "mode_id": ""},
322
+	}
323
+	this.ServeSuccessJSON(map[string]interface{}{
324
+		"list":  schedule,
325
+		"array": array,
326
+	})
236 327
 }

+ 29 - 0
models/xcx_user_models.go View File

@@ -112,3 +112,32 @@ func (XcxPatients) TableName() string {
112 112
 
113 113
 	return "xt_patients"
114 114
 }
115
+
116
+type VmBloodSchedule struct {
117
+	PatientId    int64  `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
118
+	ScheduleDate int64  `gorm:"column:schedule_date" json:"schedule_date" form:"schedule_date"`
119
+	ScheduleType int64  `gorm:"column:schedule_type" json:"schedule_type" form:"schedule_type"`
120
+	ScheduleWeek int64  `gorm:"column:schedule_week" json:"schedule_week" form:"schedule_week"`
121
+	ModeId       int64  `gorm:"column:mode_id" json:"mode_id" form:"mode_id"`
122
+	Name         string `json:"name" form:"name"`
123
+}
124
+
125
+type BloodSchedule struct {
126
+	ID           int64 `gorm:"column:id" json:"id" form:"id"`
127
+	UserOrgId    int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
128
+	PartitionId  int64 `gorm:"column:partition_id" json:"partition_id" form:"partition_id"`
129
+	BedId        int64 `gorm:"column:bed_id" json:"bed_id" form:"bed_id"`
130
+	PatientId    int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
131
+	ScheduleDate int64 `gorm:"column:schedule_date" json:"schedule_date" form:"schedule_date"`
132
+	ScheduleType int64 `gorm:"column:schedule_type" json:"schedule_type" form:"schedule_type"`
133
+	ScheduleWeek int64 `gorm:"column:schedule_week" json:"schedule_week" form:"schedule_week"`
134
+	ModeId       int64 `gorm:"column:mode_id" json:"mode_id" form:"mode_id"`
135
+	Status       int64 `gorm:"column:status" json:"status" form:"status"`
136
+	CreatedTime  int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
137
+	UpdatedTime  int64 `gorm:"column:updated_time" json:"updated_time" form:"updated_time"`
138
+}
139
+
140
+func (BloodSchedule) TableName() string {
141
+
142
+	return "xt_schedule"
143
+}

+ 84 - 2
service/xcx_mobile_api_service.go View File

@@ -7,6 +7,7 @@ import (
7 7
 	"encoding/base64"
8 8
 	"encoding/json"
9 9
 	"errors"
10
+	"fmt"
10 11
 	"github.com/jinzhu/gorm"
11 12
 	"strings"
12 13
 	"time"
@@ -53,7 +54,7 @@ func GetPatientListByPatientId(id int64) (models.XcxPatients, error) {
53 54
 }
54 55
 
55 56
 func DecryptData(app_id, session_key, iv, encrypted_data string) (map[string]interface{}, error) {
56
-	if len := strings.Count(session_key, "") - 1; len != 30 {
57
+	if len := strings.Count(session_key, "") - 1; len != 24 {
57 58
 		return nil, errors.New("Invalid value session_key!")
58 59
 	}
59 60
 	aesKey, err := base64.StdEncoding.DecodeString(session_key)
@@ -61,7 +62,7 @@ func DecryptData(app_id, session_key, iv, encrypted_data string) (map[string]int
61 62
 		return nil, err
62 63
 	}
63 64
 
64
-	if len := strings.Count(iv, "") - 1; len != 30 {
65
+	if len := strings.Count(iv, "") - 1; len != 24 {
65 66
 		return nil, errors.New("Invalid value iv!")
66 67
 	}
67 68
 	ivKey, err := base64.StdEncoding.DecodeString(iv)
@@ -69,12 +70,17 @@ func DecryptData(app_id, session_key, iv, encrypted_data string) (map[string]int
69 70
 		return nil, err
70 71
 	}
71 72
 
73
+	if len := strings.Count(encrypted_data, "") - 1; len != 24 {
74
+		return nil, errors.New("Invalid value encrypted_data!")
75
+	}
76
+
72 77
 	decodeData, err := base64.StdEncoding.DecodeString(encrypted_data)
73 78
 	if err != nil {
74 79
 		return nil, err
75 80
 	}
76 81
 
77 82
 	dataBytes, err := AesDecrypt(decodeData, aesKey, ivKey)
83
+	fmt.Println("err232332232332232232323", err)
78 84
 	if err != nil {
79 85
 		return nil, err
80 86
 	}
@@ -88,21 +94,25 @@ func DecryptData(app_id, session_key, iv, encrypted_data string) (map[string]int
88 94
 	}
89 95
 
90 96
 	return result, err
97
+
91 98
 }
92 99
 
93 100
 func AesDecrypt(crypted, key, iv []byte) ([]byte, error) {
94 101
 	block, err := aes.NewCipher(key)
102
+	fmt.Println("w2222", err)
95 103
 	if err != nil {
96 104
 		return nil, err
97 105
 	}
98 106
 
99 107
 	blockMode := cipher.NewCBCDecrypter(block, iv)
100 108
 	origData := make([]byte, len(crypted))
109
+	fmt.Println("4443434344334434334343434", origData)
101 110
 	blockMode.CryptBlocks(origData, crypted)
102 111
 
103 112
 	// 去除填充
104 113
 	length := len(origData)
105 114
 	unp := int(origData[length-1])
115
+	fmt.Println("hhh23h2323232332", origData[:(length-unp)], nil)
106 116
 	return origData[:(length - unp)], nil
107 117
 
108 118
 }
@@ -148,3 +158,75 @@ func GetMobilePatient(mobile string) (*models.XcxPatients, error) {
148 158
 	return &patient, nil
149 159
 
150 160
 }
161
+
162
+func Dncrypt(rawData, key, iv string) (string, error) {
163
+	data, err := base64.StdEncoding.DecodeString(rawData)
164
+	key_b, err_1 := base64.StdEncoding.DecodeString(key)
165
+	iv_b, _ := base64.StdEncoding.DecodeString(iv)
166
+	if err != nil {
167
+		return "", err
168
+	}
169
+	if err_1 != nil {
170
+		return "", err_1
171
+	}
172
+	dnData, err := AesCBCDncrypt(data, key_b, iv_b)
173
+	if err != nil {
174
+		return "", err
175
+	}
176
+	return string(dnData), nil
177
+}
178
+
179
+// 解密
180
+func AesCBCDncrypt(encryptData, key, iv []byte) ([]byte, error) {
181
+	block, err := aes.NewCipher(key)
182
+	if err != nil {
183
+		panic(err)
184
+	}
185
+	blockSize := block.BlockSize()
186
+	if len(encryptData) < blockSize {
187
+		panic("ciphertext too short")
188
+	}
189
+	if len(encryptData)%blockSize != 0 {
190
+		panic("ciphertext is not a multiple of the block size")
191
+	}
192
+	mode := cipher.NewCBCDecrypter(block, iv)
193
+	mode.CryptBlocks(encryptData, encryptData)
194
+	// 解填充
195
+	encryptData = PKCS7UnPadding(encryptData)
196
+	return encryptData, nil
197
+}
198
+
199
+//去除填充
200
+func PKCS7UnPadding(origData []byte) []byte {
201
+	length := len(origData)
202
+	unpadding := int(origData[length-1])
203
+	if length-unpadding < 0 {
204
+		return origData[:0]
205
+	}
206
+	fmt.Println("changdu", length)
207
+	fmt.Println("data", unpadding)
208
+	return origData[:(length - unpadding)]
209
+}
210
+
211
+func GetScheduleInfo(startime int64, endtime int64, patient_id int64) (schedule []*models.VmBloodSchedule, err error) {
212
+
213
+	//err = XTReadDB().Model(&schedule).Where("schedule_date >=? and schedule_date<=? and status = 1", startime, endtime, patient_id).Find(&schedule).Error
214
+	//return schedule,err
215
+
216
+	db := XTReadDB().Table("xt_schedule as x").Where("x.status = 1")
217
+	table := XTReadDB().Table("xt_patients as t").Where("t.status = 1")
218
+	fmt.Println(table)
219
+
220
+	if startime > 0 {
221
+		db = db.Where("x.schedule_date >=?", startime)
222
+	}
223
+	if endtime > 0 {
224
+		db = db.Where("x.schedule_date <=?", endtime)
225
+	}
226
+	if patient_id > 0 {
227
+		db = db.Where("x.patient_id = ?", patient_id)
228
+	}
229
+
230
+	err = db.Select("x.patient_id,x.schedule_date,x.schedule_type,x.schedule_week,x.mode_id,t.name").Joins("left join xt_patients as t on t.id = x.patient_id").Scan(&schedule).Error
231
+	return schedule, err
232
+}