Blame view

HDFwear/Mine/Model/UserInfo.swift 14.7 KB
f2cf74c7   yangbin   1.0.20(4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  //
  //  UserInfo.swift
  //  Twear
  //
  //  Created by yangbin on 2021/12/8.
  //
  
  import UIKit
  import HandyJSON
  import SwiftDate
  
  class AdminModel: NSObject, HandyJSON {
      var userInfo: UserInfoModel = UserInfoModel()
      var device: DeviceModel = DeviceModel()
      required override init() { }
  }
  
  
  enum Platform: String, HandyJSONEnum {
f2cf74c7   yangbin   1.0.20(4)
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
      case _828 = "828"
      case other = "other"
  }
  
  class RemindModel: NSObject, HandyJSON {
      var isOn: Bool = false
      var startDate: Date = Date()
      var endDate: Date = Date()
      var interval: Int = 0
      var cycle: Int = 127
      
      init(isOn: Bool, startDate: Date, endDate: Date) {
          super.init()
          self.isOn = isOn
          self.startDate = startDate
          self.endDate = endDate
      }
      
      init(type: String) {
          super.init()
          self.isOn = false
          switch type {
          case "disturb":
              self.startDate = DateInRegion(year: 2000, month: 1, day: 1, hour: 22, minute: 0).date
              self.endDate = DateInRegion(year: 2000, month: 1, day: 1, hour: 22, minute: 0).date
          case "sedentary", "drink":
              self.startDate = DateInRegion(year: 2000, month: 1, day: 1, hour: 9, minute: 0).date
              self.endDate = DateInRegion(year: 2000, month: 1, day: 1, hour: 23, minute: 00).date
              self.interval = 45
          default:
              break
          }
      }
      override func isEqual(_ object: Any?) -> Bool {
          if let otherFoo = object as? RemindModel {
              return self.isOn == otherFoo.isOn && self.startDate == otherFoo.startDate && self.endDate == otherFoo.endDate && self.interval == otherFoo.interval && self.cycle == otherFoo.cycle
          }
          return false
      }
      
      
      class func toRemindModel(_ bytes: [UInt8]) -> RemindModel {
          let remind = RemindModel()
          remind.isOn = bytes[0] == 1
          if bytes.count == 5 {
              remind.startDate = DateInRegion(year: 2000, month: 1, day: 1, hour: Int(bytes[1]), minute: Int(bytes[2])).date
              remind.endDate = DateInRegion(year: 2000, month: 1, day: 1, hour: Int(bytes[3]), minute: Int(bytes[4])).date
          } else if bytes.count == 6 {
              remind.startDate = DateInRegion(year: 2000, month: 1, day: 1, hour: Int(bytes[1]), minute: 0).date
              remind.endDate = DateInRegion(year: 2000, month: 1, day: 1, hour: Int(bytes[2]), minute: 0).date
              remind.cycle = Int(bytes[3])
              remind.interval = bytesToInt(Array(bytes[4..<bytes.count]))
          } else if bytes.count == 8 {
              remind.startDate = DateInRegion(year: 2000, month: 1, day: 1, hour: Int(bytes[1]), minute: Int(bytes[2])).date
              remind.endDate = DateInRegion(year: 2000, month: 1, day: 1, hour: Int(bytes[3]), minute: Int(bytes[4])).date
              remind.cycle = Int(bytes[5])
              remind.interval = bytesToInt(Array(bytes[6..<bytes.count]))
          }
          return remind
      }
      
      func mapping(mapper: HelpingMapper) {
          mapper <<<
              startDate <-- CustomDateFormatTransform(formatString: "HH:mm")
          mapper <<<
              endDate <-- CustomDateFormatTransform(formatString: "HH:mm")
      }
      
      required override init() { }
  
  }
  
  class AlarmClockModel: NSObject, HandyJSON {
      var date: Date = Date()
      var isOn: Bool = false
      var cycle: Int = 0
      var remark: String = ""
      var cycleStr: String? {
          get {
              let array = UInt8(cycle).toAlarmClockCycle()
              if array[0] == 1 {
                  return LocString("不重复")
              } else {
                  var str = ""
  //                array.remove(at: 0)
                  for i in 1..<8 {
                      if array[i] == 1 {
                          switch i {
                          case 1:
                              str += " \(LocString("周一"))"
                          case 2:
                              str += " \(LocString("周二"))"
                          case 3:
                              str += " \(LocString("周三"))"
                          case 4:
                              str += " \(LocString("周四"))"
                          case 5:
                              str += " \(LocString("周五"))"
                          case 6:
                              str += " \(LocString("周六"))"
                          case 7:
                              str += " \(LocString("周日"))"
                          default:
                              break
                          }
                      }
                  }
                  if str != "" {
                      str = str.substring(fromIndex: 1)
                  }
                  return str
              }
          }
      }
      
      class func toAlarmClock(_ bytes: [UInt8]) -> AlarmClockModel? {
          let alarmClock = AlarmClockModel()
          if Int(bytes[3]) == 0 {
              return nil
          }
          alarmClock.date = DateInRegion(year: 2000, month: 1, day: 1, hour:  Int(bytes[0]), minute: Int(bytes[1])).date
          alarmClock.cycle = Int(bytes[2])
          alarmClock.isOn = Int(bytes[4]) == 1
          return alarmClock
      }
      
      init(date: Date, isOn: Bool, cycle: Int) {
          self.date = date
          self.isOn = isOn
          self.cycle = cycle
      }
      
      func mapping(mapper: HelpingMapper) {
          mapper <<<
              date <-- CustomDateFormatTransform(formatString: "HH:mm")
      }
      
      
      func toBytes() -> [UInt8] {
          let bytes: [UInt8] = [UInt8(self.date.hour), UInt8(self.date.minute), UInt8(self.cycle), 0x01, isOn ? 0x01 : 0x00]
          print("闹钟:\(bytes)")
          return [UInt8(self.date.hour), UInt8(self.date.minute), UInt8(self.cycle), 0x01, isOn ? 0x01 : 0x00]
      }
      
      
      
      required override init() { }
  }
  
  
  class MessagePushModel: NSObject, HandyJSON {
      var value: Int {
          get {
              return bitsToInt([other ? 1 : 0, facebook ? 1 : 0, ins ? 1 : 0, linkedin ? 1 : 0, twitter ? 1 : 0, messenger ? 1 : 0, whatsapp ? 1 : 0, wechat ? 1 : 0, qq ? 1 : 0, sms ? 1 : 0, call ? 1 : 0])
          }
      }
  
      var call: Bool = false
      var sms: Bool = false
      var qq: Bool = false
      var wechat: Bool = false
      var whatsapp: Bool = false
      var messenger: Bool = false
      var twitter: Bool = false
      var linkedin: Bool = false
      var ins: Bool = false
      var facebook: Bool = false
      var other: Bool = false
      
      var app: Bool {
          get {
              return qq || wechat || whatsapp || messenger || twitter || linkedin || ins || facebook || other
          }
      }
      
      init(value: Int) {
          super.init()
          let array = toBits(value)
          self.call = array[0] == 1
          self.sms = array[1] == 1
          self.qq = array[2] == 1
          self.wechat = array[3] == 1
          self.whatsapp = array[4] == 1
          self.messenger = array[5] == 1
          self.twitter = array[6] == 1
          self.linkedin = array[7] == 1
          self.ins = array[8] == 1
          self.facebook = array[9] == 1
          self.other = array[10] == 1
          
      }
      
      private func bitsToInt(_ bits: [Int]) -> Int {
          let decimalValue = bits.reduce(0) { v, byte in
              return v << 1 | Int(byte)
          }
          print(decimalValue)
          return Int(decimalValue)
      }
      private func toBits(_ value: Int) -> [Int] {
          var byte = value
          var bits = [Int](repeating: 0, count: 11)
          for i in 0..<11 {
              let currentBit = byte & 0x01
              if currentBit != 0 {
                  bits[i] = 1
              }
              byte >>= 1
          }
          return bits
      }
      
      required override init() { }
  }
  
  class MenstrualModel: NSObject, HandyJSON {
      var days: Int = 0
      var cycle: Int = 0
      var lastDate: Date?
  //    var calendar: MenstrualCalendarModel = MenstrualCalendarModel()
      
      init(days: Int, cycle: Int, lastDate: Date) {
          super.init()
          self.days = days
          self.cycle = cycle
          self.lastDate = lastDate
      }
      
      func mapping(mapper: HelpingMapper) {
          mapper <<<
              lastDate <-- CustomDateFormatTransform(formatString: "yyyy-MM-dd")
      }
      
      required override init() { }
  }
  
  class DeviceModel: NSObject, HandyJSON {
      var uuid: String = ""
      var name: String = ""
  //    var typeRaw: String = "other"
      var isSync: Bool = false
      var isConnected: Bool = false
      var mac: String = ""
  
      
      var disturb: RemindModel = RemindModel(type: "disturb")
      
      var type: String = ""
      var languageRaw: String = "system"
      var version: String = ""
      var allFunctions: [String] = ["HeartRate", "Sleep", "Train",  "WomenHealth", "MotionRecord"]
84bd9999   daifengyi   feat:home page ic...
271
      var homePage: [String] = ["HeartRate", "Sleep", "WomenHealth", "Train", "MotionRecord"]
f2cf74c7   yangbin   1.0.20(4)
272
273
274
275
276
277
278
279
280
281
      
      var queryArray: [String] {
          get {
              var array = allFunctions
              if let i = array.firstIndex(of: "MotionRecord") {
                  array.remove(at: i)
              }
              if let i = array.firstIndex(of: "WomenHealth") {
                  array.remove(at: i)
              }
53fae286   daifengyi   feat:remove platf...
282
              if platform == ._828 {
f2cf74c7   yangbin   1.0.20(4)
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
                  if let i = array.firstIndex(of: "BloodPressure") {
                      array.remove(at: i)
                  }
                  if let i = array.firstIndex(of: "BloodOxygen") {
                      array.remove(at: i)
                  }
              }
              array.append(contentsOf: ["Step", "Setting"])
              return array
          }
      }
  
      var platform: Platform = .other
  
      init(uuid: String, name: String, platform: Platform, mac: String) {
          super.init()
          self.uuid = uuid
          self.name = name
          self.platform = platform
          self.mac = mac
          switch platform {
f2cf74c7   yangbin   1.0.20(4)
304
          case ._828:
84bd9999   daifengyi   feat:home page ic...
305
306
              self.allFunctions = ["BloodPressure", "BloodOxygen", "HeartRate", "Sleep", "Train", "MotionRecord", "WomenHealth"]
              self.homePage = ["BloodPressure", "BloodOxygen", "HeartRate", "Sleep", "Train", "MotionRecord", "WomenHealth"]
f2cf74c7   yangbin   1.0.20(4)
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
              if name.contains("P8GT") {
                  self.allFunctions = ["BloodPressure", "BloodOxygen", "HeartRate", "Sleep", "Train", "MotionRecord", "WomenHealth"]
                  self.homePage = ["BloodPressure", "BloodOxygen", "HeartRate", "Sleep", "Train", "MotionRecord", "WomenHealth"]
              }
  //            self.queryArray = ["BloodPressure", "Step", "HeartRate", "Sleep", "Train", "Setting"]
          case .other:
              break
          }
      }
      
      required override init() { }
  }
  class NFCModel: NSObject, HandyJSON {
      var type: String = ""
      var identifier: String = ""
      var payload: String = ""
      var format: String = ""
      var image: String = "4"
      var name: String = LocString("门卡")
      required override init() { }
  }
  
  class ContactModel: NSObject, HandyJSON {
      var name: String = ""
      var number: String = ""
      var isSOS: Bool = false
      var isSelected: Bool = false
      
      init(name: String, number: String) {
          super.init()
          self.name = name
          self.number = number
      }
      
      func toBytes(_ index: Int) -> [UInt8] {
          var bytes: [UInt8] = [UInt8](repeating: 0x00, count: 66)
          if name == "" && number == "" {
              return bytes
          }
          var phoneNumber = number
          phoneNumber = phoneNumber.replacingOccurrences(of: " ", with: "")
          
          if name == "" {
              for (i, scalar) in phoneNumber.unicodeScalars.enumerated() {
                  if i < 16 {
                      bytes[i*2+30] = UInt8(scalar.value & 0xFF)
                      bytes[i*2+31] = UInt8(scalar.value >> 8)
                  }
              }
          } else {
              for (i, scalar) in name.unicodeScalars.enumerated() {
                  if i < 16 {
                      if #available(iOS 10.2, *) {
                          if scalar.properties.isEmoji && scalar.value > 0x238C {
                              bytes[i*2+30] = UInt8("□".unicodeScalars.first!.value & 0xFF)
                              bytes[i*2+31] = UInt8("□".unicodeScalars.first!.value >> 8)
                          } else {
                              bytes[i*2+30] = UInt8(scalar.value & 0xFF)
                              bytes[i*2+31] = UInt8(scalar.value >> 8)
                          }
                      } else {
                          if scalar.value > 0xFFFF {
                              bytes[i*2+30] = UInt8("□".unicodeScalars.first!.value & 0xFF)
                              bytes[i*2+31] = UInt8("□".unicodeScalars.first!.value >> 8)
                          } else {
                              bytes[i*2+30] = UInt8(scalar.value & 0xFF)
                              bytes[i*2+31] = UInt8(scalar.value >> 8)
                          }
                      }
                     
                  }
              }
          }
          //54, 65, 108, 101, 110
  //        let num = number.replacingOccurrences(of: " ", with: "")
          for (i, scalar) in phoneNumber.unicodeScalars.enumerated() {
              if i < 15 {
                  bytes[i*2] = UInt8(scalar.value & 0xFF)
                  bytes[i*2+1] = UInt8(scalar.value >> 8)
              }
          }
          bytes[62] = UInt8(phoneNumber.count > 15 ? 15 : phoneNumber.count)
          bytes[63] = UInt8(name.count > 16 ? 16 : name.count)
          bytes[64] = UInt8(index)
          bytes[65] = isSOS ? 0x01 : 0x00
          return bytes
  //        l2KeyValue[startIndex+50]=(byte)numberLength;
         //            l2KeyValue[startIndex+51]=(byte)nameLength;
         //            l2KeyValue[startIndex+52]=(byte)(i+1);
         //            l2KeyValue[startIndex+53]=(byte)(sos[i]);
      }
      
      required override init() { }
      
  }
  
  class UserInfoModel: NSObject, HandyJSON {
      var name: String = ""
c8e3bebb   jason   feat:set user info
405
      var gender: Int = 1 // 0 1
f2cf74c7   yangbin   1.0.20(4)
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
      var mac: String = ""
      var height: Int = 175 //cm
      var weight: Int = 65 //kg
      var age: Int = 24
      var phone: String = ""
      var userId: Int = Int(arc4random_uniform(89999999) + 10000000)
      var stepsGoal: Int = 8000
      var birth: Date = (DateInRegion().date - 24.years).dateAtStartOf(.year)
      var menstrual: MenstrualModel = MenstrualModel()
      var contacts: [ContactModel] = []
      var nfc: [NFCModel] = []
      var isDailSync: Bool = false
      var dailIndex: Int = -1
      var dialIndexPath: String = ""
      var customDial: String = ""
      var dialNumDic: [String: Int] = [:]
      var dailVersion: String = "0"
      var medalVersion: String = "0"
      var push: MessagePushModel = MessagePushModel()
      var drink: RemindModel = RemindModel(type: "drink")
      var sedentary: RemindModel = RemindModel(type: "sedentary")
      var alarmClocks: [AlarmClockModel] = []
  //    var avatarUrl: String = "" //头像
      var distanceUnit: Int = 0
      var temperatureUnit: Int = 0
      var timeFormat: Int = 0
      var wrist: Bool = true
      var autoMasure: Bool = false
      
  
      
      func mapping(mapper: HelpingMapper) {
          mapper <<<
              birth <-- CustomDateFormatTransform(formatString: "yyyy-MM-dd")
      }
      
      
      required override init() { }
  }
  
  
  //
  //class MedalTypeModel: NSObject {
  //    var title: String = ""
  //    var medals: [MedalModel] = []
  //}