KMLightMemberConfig.swift 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. //
  2. // KMLightMemberConfig.swift
  3. // PDF Reader Pro
  4. //
  5. // Created by lizhe on 2023/2/26.
  6. //
  7. import Cocoa
  8. class KMLightMemberConfig: NSObject {
  9. var isDebug: Bool = true
  10. // 会员
  11. var kServerURL: String {
  12. get {
  13. #if DEBUG
  14. if self.isDebug {
  15. // 测试服务器
  16. return "http://139.196.160.101:8081"
  17. } else {
  18. // 正式服务器
  19. return "https://pdfmaster.pdfreaderpro.com"
  20. }
  21. #else
  22. //正式服务器
  23. return "https://pdfmaster.pdfreaderpro.com"
  24. #endif
  25. }
  26. }
  27. // 网页跳转
  28. var kStoreServerURL: String {
  29. get {
  30. #if DEBUG
  31. if self.isDebug {
  32. // 测试服务器
  33. return "http://test-pdf-pro.kdan.cn:3021"
  34. } else {
  35. // 正式服务器
  36. return "https://www.pdfreaderpro.com"
  37. }
  38. #else
  39. // 正式服务器
  40. return "https://www.pdfreaderpro.com"
  41. #endif
  42. }
  43. }
  44. //苹果内购地址
  45. var kAppleServerURL: String {
  46. get {
  47. #if DEBUG
  48. if self.isDebug {
  49. // 测试服务器
  50. return "https://sandbox.itunes.apple.com/verifyReceipt"
  51. } else {
  52. // 正式服务器
  53. return "https://buy.itunes.apple.com/verifyReceipt"
  54. }
  55. #else
  56. return "https://buy.itunes.apple.com/verifyReceipt"
  57. #endif
  58. }
  59. }
  60. //分包下载地址
  61. var kResourceServerURL: String {
  62. get{
  63. #if DEBUG
  64. if self.isDebug {
  65. // 测试服务器
  66. return "http://test-pdf-pro.kdan.cn:3021/downloads/DocumentAI.xml"
  67. } else {
  68. // 正式服务器
  69. return "https://www.pdfreaderpro.com/downloads/DocumentAI.xml"
  70. }
  71. #else
  72. return "https://www.pdfreaderpro.com/downloads/DocumentAI.xml"
  73. #endif
  74. }
  75. }
  76. }