account.swift 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515
  1. //
  2. // account.swift
  3. // 74 桌
  4. //
  5. // Created by yunli on 2023/5/20.
  6. //
  7. import Alamofire
  8. import SwiftUI
  9. struct Constant {
  10. var cookiesDefaultsKey: String
  11. }
  12. let Constants: Constant = .init(cookiesDefaultsKey: "JSESSIONID")
  13. class CookieHandler {
  14. static let shared: CookieHandler = .init()
  15. let defaults = UserDefaults.standard
  16. let cookieStorage = HTTPCookieStorage.shared
  17. func getCookie(forURL url: String) -> [HTTPCookie] {
  18. let computedUrl = URL(string: url)
  19. let cookies = cookieStorage.cookies(for: computedUrl!) ?? []
  20. return cookies
  21. }
  22. func getAllCookie() -> [HTTPCookie] {
  23. let cookies = cookieStorage.cookies ?? []
  24. return cookies
  25. }
  26. func delCookie() {}
  27. }
  28. struct Login: Encodable {
  29. let user: String
  30. let pwd: String
  31. let cook: String
  32. }
  33. struct UserInfo: Decodable {
  34. var name: String
  35. var oid: String
  36. var id: String
  37. var xydLink: String
  38. var serviceLink: String
  39. var studyLink: String
  40. var tableData: [[PurpleDatum]]
  41. init() {
  42. name = "-"
  43. oid = "-"
  44. id = "-"
  45. xydLink = "-"
  46. serviceLink = "-"
  47. studyLink = "-"
  48. tableData = []
  49. }
  50. }
  51. class LoginHandler {
  52. static let sharedInstance = LoginHandler()
  53. func getCookie(name: String) -> [HTTPCookie] {
  54. return CookieHandler().getCookie(forURL: "https://debug.sdsz.icu:81/").filter { cookie -> Bool in
  55. cookie.name == name
  56. }
  57. }
  58. func getAllCookie(name: String) -> [HTTPCookie] {
  59. return CookieHandler().getAllCookie().filter { cookie -> Bool in
  60. cookie.name == name
  61. }
  62. }
  63. func fetchLoginCookie(action: @escaping (_: String) -> Void) {
  64. if let cookie = getCookie(name: "JSESSIONID").first {
  65. HTTPCookieStorage.shared.deleteCookie(cookie)
  66. print(cookie)
  67. }
  68. let url = "https://debug.sdsz.icu:81/sso/login"
  69. AF.request(url, method: .get, parameters: nil, encoding: URLEncoding.default, headers: nil).response { _ in
  70. if let cookie = self.getCookie(name: "JSESSIONID").first {
  71. action(cookie.value)
  72. }
  73. }
  74. }
  75. }
  76. class FetchHandler {
  77. static let sharedInstance = FetchHandler()
  78. func matches(url: String) -> Bool {
  79. do {
  80. return try url.matches(of: Regex(#"(^\[\]$|param":"|"workRests"|<tr>|DOCTYPE|in\?username=|requestParams|\"newmessage\"|Sorry, Page Not Found|北师大实验中学--登录|404 Not Found|502 Bad Gateway)"#)).count != 0
  81. } catch {
  82. return true
  83. }
  84. }
  85. func getUrl(url: String) -> String {
  86. var ret: String = url
  87. ret = ret
  88. .replacing("dd.sdsz.com.cn", with: "debug.sdsz.icu:81")
  89. .replacing(/^http:/, with: "https:")
  90. .replacing("service=http%3A%2F%2Fdebug.sdsz.icu:81", with: "service=http%3A%2F%2Fdd.sdsz.com.cn")
  91. print("URL: \(ret)")
  92. return ret
  93. }
  94. func workFetch(url: String, action: @escaping (_: String) -> Void) {
  95. if matches(url: url) {
  96. action(url)
  97. } else {
  98. AF.request(getUrl(url: url), method: .get, parameters: nil, encoding: URLEncoding.default, headers: nil).responseString { res in
  99. if let resv = res.value {
  100. self.workFetch(url: resv, action: action)
  101. }
  102. }
  103. }
  104. }
  105. func fetchAny(url: String, action: @escaping (_: String) -> Void) {
  106. let urlFull = "https://debug.sdsz.icu:81/\(url)"
  107. workFetch(url: urlFull, action: action)
  108. }
  109. }
  110. func doLogin(user: String, password: String, action: @escaping (_: Int) -> Void) {
  111. LoginHandler().fetchLoginCookie { (cookie: String) in
  112. let login = Login(user: user, pwd: password, cook: cookie)
  113. print(login)
  114. AF.request("https://debug.sdsz.icu/andlogin", method: .post, parameters: login, encoder: JSONParameterEncoder.default, headers: nil).responseString { res in
  115. print("\(res)")
  116. if res.value == "success" {
  117. action(1)
  118. } else {
  119. action(0)
  120. }
  121. }
  122. }
  123. }
  124. // This file was generated from JSON Schema using quicktype, do not modify it directly.
  125. // To parse the JSON, add this file to your project and do:
  126. //
  127. // let welcome = try? JSONDecoder().decode(Welcome.self, from: jsonData)
  128. import Foundation
  129. // MARK: - Welcome
  130. struct Welcome: Codable {
  131. let workRests: [WorkREST]
  132. let blocks: [Block]
  133. }
  134. // MARK: - Block
  135. struct Block: Codable {
  136. let ownObjID, type: String
  137. let name: String
  138. let data: [BlockDatum]
  139. let weekMetas: JSONNull?
  140. enum CodingKeys: String, CodingKey {
  141. case ownObjID = "ownObjId"
  142. case type, name, data, weekMetas
  143. }
  144. }
  145. // MARK: - BlockDatum
  146. struct BlockDatum: Codable {
  147. let week: Int
  148. let weekMeta: WeekMeta
  149. let data: [PurpleDatum]
  150. }
  151. // MARK: - PurpleDatum
  152. struct PurpleDatum: Codable {
  153. let day, lesson: Int
  154. let data: [FluffyDatum]
  155. }
  156. extension PurpleDatum {
  157. static var coursePurpleDatum = { (course: String) -> PurpleDatum in
  158. PurpleDatum(day: 0, lesson: 0, data: [FluffyDatum(timetableID: nil, className: "", classID: "", courseName: course, courseID: 0, courseType: 0, placeID: nil, placeName: "", placeSn: "", teacher: [], room: nil, start: "", end: "", timeScope: 0)])
  159. }
  160. }
  161. // MARK: - FluffyDatum
  162. struct FluffyDatum: Codable {
  163. let timetableID: JSONNull?
  164. let className: String
  165. let classID: String
  166. let courseName: String
  167. let courseID, courseType: Int
  168. let placeID: JSONNull?
  169. let placeName: String
  170. let placeSn: String
  171. let teacher: [Teacher]
  172. let room: JSONNull?
  173. let start, end: String
  174. let timeScope: Int
  175. enum CodingKeys: String, CodingKey {
  176. case timetableID = "timetableId"
  177. case className
  178. case classID = "classId"
  179. case courseName
  180. case courseID = "courseId"
  181. case courseType
  182. case placeID = "placeId"
  183. case placeName, placeSn, teacher, room, start, end, timeScope
  184. }
  185. }
  186. // MARK: - Teacher
  187. struct Teacher: Codable {
  188. let userID: Int
  189. let userName: JSONNull?
  190. let fullName: String
  191. let userNo: JSONNull?
  192. enum CodingKeys: String, CodingKey {
  193. case userID = "userId"
  194. case userName, fullName, userNo
  195. }
  196. }
  197. // MARK: - WeekMeta
  198. struct WeekMeta: Codable {
  199. let morningRead: Bool
  200. let night, afternoon, morning, teachingDay: Int
  201. let time: [Time]
  202. }
  203. // MARK: - Time
  204. struct Time: Codable {
  205. let seq: Int
  206. let start, end: String
  207. }
  208. // MARK: - WorkREST
  209. struct WorkREST: Codable {
  210. let beginTime, endTime, time, lessonName: String
  211. }
  212. // MARK: - Encode/decode helpers
  213. class JSONNull: Codable, Hashable {
  214. public static func == (_: JSONNull, _: JSONNull) -> Bool {
  215. return true
  216. }
  217. func hash(into _: inout Hasher) {}
  218. public init() {}
  219. public required init(from decoder: Decoder) throws {
  220. let container = try decoder.singleValueContainer()
  221. if !container.decodeNil() {
  222. throw DecodingError.typeMismatch(JSONNull.self, DecodingError.Context(codingPath: decoder.codingPath, debugDescription: "Wrong type for JSONNull"))
  223. }
  224. }
  225. public func encode(to encoder: Encoder) throws {
  226. var container = encoder.singleValueContainer()
  227. try container.encodeNil()
  228. }
  229. }
  230. var Count: Int = 0
  231. func addCompleted(userInfo: UserInfo, action: @escaping (_: UserInfo) -> Void) {
  232. Count += 1
  233. if Count == 3 {
  234. print(userInfo.tableData)
  235. action(userInfo)
  236. }
  237. }
  238. extension String {
  239. func replace(regex: String, with: String, options: NSRegularExpression.Options) -> String {
  240. do {
  241. let RE = try NSRegularExpression(pattern: regex, options: options)
  242. let modified = RE.stringByReplacingMatches(in: self, range: NSRange(location: 0, length: count), withTemplate: with)
  243. return modified
  244. } catch {
  245. return "ERR"
  246. }
  247. }
  248. func replace(regex: String, with: String) -> String {
  249. do {
  250. let RE = try NSRegularExpression(pattern: regex)
  251. let modified = RE.stringByReplacingMatches(in: self, range: NSRange(location: 0, length: count), withTemplate: with)
  252. return modified
  253. } catch {
  254. return "ERR"
  255. }
  256. }
  257. }
  258. struct TableParam: Encodable {
  259. var oid: String
  260. }
  261. func getUserInfo(userInfoIn: UserInfo, action: @escaping (_: UserInfo) -> Void) {
  262. var userInfo: UserInfo = userInfoIn
  263. FetchHandler().fetchAny(url: "bxn-portal/portal/osforstudent/index") { res in
  264. if let mat = res.firstMatch(of: /userFullName" value="(.*?)"/) {
  265. userInfo.name = "\(mat.1)"
  266. }
  267. if let mat = res.firstMatch(of: /userId" value="(.*?)"/) {
  268. userInfo.oid = "\(mat.1)"
  269. }
  270. if let mat = res.firstMatch(of: /'https:\/\/service.*?'/) {
  271. userInfo.serviceLink = "\(mat.output.split(separator: "'")[0])"
  272. userInfo.studyLink = mat.output.split(separator: "'")[0] + "%2Ffe-pc%2Fb%2Ffe_leco_student%2Fportal%2F%3Fsystem_partition_gId%3D3"
  273. }
  274. print(userInfo)
  275. let tableParam: TableParam = .init(oid: userInfo.oid)
  276. let header: HTTPHeaders = [
  277. "user": userInfo.id,
  278. ]
  279. AF.request("https://debug.sdsz.icu/getWeek", method: .post, parameters: tableParam, encoder: JSONParameterEncoder.default, headers: header).responseString { res in
  280. FetchHandler().fetchAny(url: "bxn-timetable/timetable/monitor/homepage/data/student?studentId=\(userInfo.oid)&dateScope=\(res.value ?? "")&_=0") { res in
  281. do {
  282. let data = res.data(using: String.Encoding.utf8)
  283. let decoder = JSONDecoder()
  284. let kkd = try decoder.decode(Welcome.self, from: data!)
  285. let pp = kkd.blocks.first?.data.first?.data ?? []
  286. var ret: [[PurpleDatum]] = [], mx: Int = 0
  287. for i in 0 ..< pp.count {
  288. print(pp[i])
  289. mx = max(mx, pp[i].lesson)
  290. }
  291. ret.append([])
  292. ret[0].append(PurpleDatum.coursePurpleDatum("  "))
  293. ret[0].append(PurpleDatum.coursePurpleDatum("一 "))
  294. ret[0].append(PurpleDatum.coursePurpleDatum("二 "))
  295. ret[0].append(PurpleDatum.coursePurpleDatum("三 "))
  296. ret[0].append(PurpleDatum.coursePurpleDatum("四 "))
  297. ret[0].append(PurpleDatum.coursePurpleDatum("五 "))
  298. for i in 1 ... mx {
  299. ret.append([])
  300. for j in 0 ... 5 {
  301. ret[i].append(PurpleDatum(day: 0, lesson: 0, data: []))
  302. }
  303. }
  304. for i in 0 ..< pp.count {
  305. ret[pp[i].lesson][pp[i].day] = pp[i]
  306. }
  307. userInfo.tableData = ret
  308. } catch {
  309. print(error)
  310. }
  311. addCompleted(userInfo: userInfo, action: action)
  312. }
  313. }
  314. addCompleted(userInfo: userInfo, action: action)
  315. }
  316. FetchHandler().fetchAny(url: "bxn-library/library/jumpExamreport?jumpUrl=http://36.112.23.77/analysis/auto/%23/autoLogin") { res in
  317. userInfo.xydLink = res
  318. addCompleted(userInfo: userInfo, action: action)
  319. }
  320. }
  321. struct loginView: View {
  322. @State var username: String = ""
  323. @State var password: String = ""
  324. @State var btnText: String = "登录"
  325. @State var btnColor: Color = .blue
  326. @State var inProgress: Bool = false
  327. @FocusState private var isFocused: Bool
  328. @Binding var isLoggedIn: Int
  329. @Binding var userInfo: UserInfo
  330. var body: some View {
  331. VStack {
  332. Form {
  333. List {
  334. HStack {
  335. Image(systemName: "person.fill").foregroundColor(Color(red: 0.7, green: 0.7, blue: 0.7))
  336. TextField(text: $username, prompt: Text("数字校园号")) {
  337. Text("数字校园号")
  338. }.focused($isFocused)
  339. .keyboardType(.numberPad)
  340. }
  341. HStack {
  342. Image(systemName: "key.fill").foregroundColor(Color(red: 0.7, green: 0.7, blue: 0.7))
  343. SecureField(text: $password, prompt: Text("密码")) {
  344. Text("密码")
  345. }.focused($isFocused)
  346. }
  347. }.onTapGesture {
  348. isFocused = false
  349. }
  350. HStack {
  351. Spacer()
  352. Button(action: {
  353. inProgress = true
  354. doLogin(user: username, password: password) { (ret: Int) in
  355. isLoggedIn = ret
  356. inProgress = false
  357. if ret == 0 {
  358. btnText = "登录失败"
  359. btnColor = .red
  360. } else {
  361. userInfo.id = username
  362. getUserInfo(userInfoIn: userInfo) { res in
  363. userInfo = res
  364. }
  365. }
  366. }
  367. }) {
  368. HStack {
  369. Text(btnText)
  370. if inProgress {
  371. ProgressView()
  372. } else {
  373. Image(systemName: "chevron.right")
  374. }
  375. }
  376. }.foregroundColor(btnColor).buttonStyle(.bordered)
  377. }
  378. }
  379. }
  380. }
  381. }
  382. struct accountView: View {
  383. @State var username: String = ""
  384. @State var password: String = ""
  385. @FocusState private var isFocused: Bool
  386. @Binding var isLoggedIn: Int
  387. @Binding var userInfo: UserInfo
  388. func delAllCookie(name: String) {
  389. for cookie in LoginHandler().getAllCookie(name: name) {
  390. print(cookie)
  391. HTTPCookieStorage.shared.deleteCookie(cookie)
  392. }
  393. }
  394. var body: some View {
  395. VStack {
  396. Form {
  397. Section(header: Text("基本信息")) {
  398. HStack {
  399. Text("姓名")
  400. Spacer()
  401. Text(userInfo.name).foregroundColor(.gray)
  402. }
  403. HStack {
  404. Text("内部 ID")
  405. Spacer()
  406. Text(userInfo.oid).foregroundColor(.gray)
  407. }
  408. }
  409. Section {
  410. NavigationLink(destination: aboutView()) {
  411. Text("关于")
  412. }
  413. }
  414. Section {
  415. Button(action: {
  416. isLoggedIn = 0
  417. delAllCookie(name: "CASTGC")
  418. delAllCookie(name: "JSESSIONID")
  419. }) {
  420. VStack {
  421. Text("退出").foregroundColor(.red)
  422. }
  423. }
  424. }
  425. }
  426. Spacer()
  427. }
  428. }
  429. }
  430. struct aboutView: View {
  431. var body: some View {
  432. List {
  433. Section(footer: Text("实验中学 74 桌是一款面向北师大附属实验中学学生的 App,提供查分及数字校园基础服务。")) {
  434. Text("实验中学 74 桌")
  435. HStack {
  436. Text("开发者")
  437. Spacer()
  438. Text("74 开发组").foregroundColor(.gray)
  439. }
  440. }
  441. }.navigationBarTitle("关于")
  442. }
  443. }
  444. struct accountView_Previews: PreviewProvider {
  445. @State static var isLoggedIn = 1
  446. @State static var userInfo: UserInfo = .init()
  447. static var previews: some View {
  448. loginView(isLoggedIn: $isLoggedIn, userInfo: $userInfo)
  449. }
  450. }