AppConstant.swift 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. //
  2. // AppConstant.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 18/08/21.
  6. //
  7. import Foundation
  8. import UIKit
  9. struct ApiUrl {
  10. static let BASE_URL = "https://learngenie.finlabsindia.org"
  11. static let API_AUTH = "/login/authenticate"
  12. static let API_ROLE = "/role"
  13. static let API_LANGUAGE = "/language"
  14. static let API_TRANSLATION = "/translation"
  15. static let API_STATE = "/state"
  16. static let API_DISTRICT = "/district"
  17. static let API_LEVEL = "/level"
  18. static let API_TOPIC = "/topic"
  19. static let API_QUESTION_BANK = "/questionBank"
  20. static let API_QUESTION = "/question"
  21. static let API_CHOICE = "/choice"
  22. static let API_SCORE = "/topicQuizResult/search.json?id=%d" // here id is Student id
  23. static let API_MEETING_SESSION = "/meetingSession"
  24. static let API_STUDENT = "/student" // (action: 'save') (action: 'index')
  25. static let API_SCOREBOARD = "/topicQuizResult" // (action: 'save') (action: 'index')
  26. static let API_Monthly_Quiz = "/score" // (action: 'save') (action: 'index')
  27. static let API_ALTER_STUDENT = "/student/%d" // Pass the id here. (action: 'update') (action: 'delete') (action: 'patch') (action: 'show')
  28. static let API_ALTER_SCOREBOARD = "/topicQuizResult/%d" // Pass the id here. (action: 'update') (action: 'delete') (action: 'patch') (action: 'show')
  29. static let API_SEARCH_STUDENT = "/student/search"
  30. static let API_SEARCH_APPLE_USERIDENTIFIER = "/student/search_apple_user"
  31. static let API_SEARCH_SCOREBOARD = "/topicQuizResult/search.json" //here id is studentId
  32. // No Auth Required
  33. static let API_DOWNLOAD_TOPIC = "/topic/downloadZipFile" // https://mahindracms.mahindrafs.com:8080/topic/downloadZipFile?topic=807&lang=en
  34. }
  35. struct Constant {
  36. //App Constants
  37. static let AppName = "Learn Genie"
  38. static let CookieName = "JSESSIONID"
  39. static let googleClientId = "826630069173-eb9kv95gb68j1d3j44rptu0s8ll4s7vj.apps.googleusercontent.com"
  40. static let dateFormat = "dd/MM/yyyy"
  41. //Alert View Constants
  42. static let Ok = "OK"
  43. static let defaultTitle = "Alert"
  44. static let defaultMsg = "Something went wrong"
  45. static let internetAlertTitle = "No Internet"
  46. static let internetAlertMessage = "Internet connection is not available, please check your internet connection and try again"
  47. static let learningModuleContentArray = [
  48. "\"Save Money and Money will Save You\" Understand how your income is utilized, how to budget your expenses and increase savings",
  49. "\"Make your Money work for You\" Learn how investments are different from savings and importance of investments",
  50. "\"If you fail to plan, you are planning to fail\" Learn how to plan for your life goals effectively",
  51. "Learn about the different types of loans you can avail and how best to manage debt",
  52. "\"Good Luck doesn't last forever But Good Insurance does\" Know more about Insurance to protect your family & assets",
  53. "Know how best to use Digital Money and Digital payments for a secured and hassle free experience",
  54. "",
  55. ""
  56. ]
  57. static let quizInstruction = [
  58. "1) The Test will have 5 questions",
  59. "2) The time limit of the Test is 5 minutes You have the option to submit earlier than the allocated time",
  60. "3) For each question, you have to choose the correct answer amongst the option given",
  61. "4) You will score as per the following",
  62. "question right - You are out, No score, You can proceed to the next topic, but you are advised to try again",
  63. "questions right - You are out, No score, You can proceed to the next topic, but you are advised to try again",
  64. "questions right - No Score, You can proceed to the next topic, but you are advised to try again",
  65. "questions right - 3 runs, You can proceed to the next topic",
  66. "questions right - 4 runs, You can proceed to the next topic",
  67. "questions right - 6 runs, You can proceed to the next topic"
  68. ]
  69. static let bullet = "•"
  70. //Button names
  71. static let GoogleSignIn = "Sign in with Google"
  72. static let AppleSignIn = "Sign in with Apple"
  73. static let Next = "Next"
  74. static let GetStarted = "Get Started"
  75. static let Close = "Close"
  76. //Userdefaults Key
  77. static let languageId = "selectedLanguageId"
  78. static let languageShortName = "selectedLanguageShortName"
  79. static let languageName = "selectedLanguageName"
  80. static let welcomeSlider = "welcomeStatus"
  81. static let introduction = "introduction"
  82. static let signInMethod = "signInMethod"
  83. static let appleId = "appleId"
  84. static let userData = "userData"
  85. static let userIdentifier = "userIdentifier"
  86. static let studentId = "studentId"
  87. //Welcome slider content
  88. static let onboarding1 = "onboarding1"
  89. static let content1 = "Money Managed Well is Money Earned. Learn everything you need to know about your Money"
  90. static let onboarding2 = "onboarding2"
  91. static let content2 = "Complex Financial Concepts and Products made Simple!"
  92. static let onboarding3 = "onboarding3"
  93. static let content3 = "Learn in a fun way Answer simple quizzes & win Exciting prizes."
  94. }