123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- //
- // AppConstant.swift
- // Learn Genie
- //
- // Created by Suraj Kumar Mandal on 18/08/21.
- //
- import Foundation
- import UIKit
- struct ApiUrl {
-
- static let BASE_URL = "https://learngenie.finlabsindia.org"
-
- static let API_AUTH = "/login/authenticate"
- static let API_ROLE = "/role"
- static let API_LANGUAGE = "/language"
- static let API_TRANSLATION = "/translation"
- static let API_STATE = "/state"
- static let API_DISTRICT = "/district"
- static let API_LEVEL = "/level"
- static let API_TOPIC = "/topic"
- static let API_QUESTION_BANK = "/questionBank"
- static let API_QUESTION = "/question"
- static let API_CHOICE = "/choice"
- static let API_SCORE = "/topicQuizResult/search.json?id=%d" // here id is Student id
- static let API_MEETING_SESSION = "/meetingSession"
- static let API_STUDENT = "/student" // (action: 'save') (action: 'index')
- static let API_SCOREBOARD = "/topicQuizResult" // (action: 'save') (action: 'index')
- static let API_Monthly_Quiz = "/score" // (action: 'save') (action: 'index')
- static let API_ALTER_STUDENT = "/student/%d" // Pass the id here. (action: 'update') (action: 'delete') (action: 'patch') (action: 'show')
- static let API_ALTER_SCOREBOARD = "/topicQuizResult/%d" // Pass the id here. (action: 'update') (action: 'delete') (action: 'patch') (action: 'show')
- static let API_SEARCH_STUDENT = "/student/search"
- static let API_SEARCH_APPLE_USERIDENTIFIER = "/student/search_apple_user"
- static let API_SEARCH_SCOREBOARD = "/topicQuizResult/search.json" //here id is studentId
-
- // No Auth Required
- static let API_DOWNLOAD_TOPIC = "/topic/downloadZipFile" // https://mahindracms.mahindrafs.com:8080/topic/downloadZipFile?topic=807&lang=en
-
- }
- struct Constant {
-
- //App Constants
- static let AppName = "Learn Genie"
- static let CookieName = "JSESSIONID"
- static let googleClientId = "826630069173-eb9kv95gb68j1d3j44rptu0s8ll4s7vj.apps.googleusercontent.com"
-
- static let dateFormat = "dd/MM/yyyy"
-
- //Alert View Constants
- static let Ok = "OK"
- static let defaultTitle = "Alert"
- static let defaultMsg = "Something went wrong"
- static let internetAlertTitle = "No Internet"
- static let internetAlertMessage = "Internet connection is not available, please check your internet connection and try again"
- static let learningModuleContentArray = [
- "\"Save Money and Money will Save You\" Understand how your income is utilized, how to budget your expenses and increase savings",
- "\"Make your Money work for You\" Learn how investments are different from savings and importance of investments",
- "\"If you fail to plan, you are planning to fail\" Learn how to plan for your life goals effectively",
- "Learn about the different types of loans you can avail and how best to manage debt",
- "\"Good Luck doesn't last forever But Good Insurance does\" Know more about Insurance to protect your family & assets",
- "Know how best to use Digital Money and Digital payments for a secured and hassle free experience",
- "",
- ""
- ]
-
- static let quizInstruction = [
- "1) The Test will have 5 questions",
- "2) The time limit of the Test is 5 minutes You have the option to submit earlier than the allocated time",
- "3) For each question, you have to choose the correct answer amongst the option given",
- "4) You will score as per the following",
- "question right - You are out, No score, You can proceed to the next topic, but you are advised to try again",
- "questions right - You are out, No score, You can proceed to the next topic, but you are advised to try again",
- "questions right - No Score, You can proceed to the next topic, but you are advised to try again",
- "questions right - 3 runs, You can proceed to the next topic",
- "questions right - 4 runs, You can proceed to the next topic",
- "questions right - 6 runs, You can proceed to the next topic"
- ]
-
- static let bullet = "•"
-
- //Button names
- static let GoogleSignIn = "Sign in with Google"
- static let AppleSignIn = "Sign in with Apple"
- static let Next = "Next"
- static let GetStarted = "Get Started"
- static let Close = "Close"
-
-
- //Userdefaults Key
- static let languageId = "selectedLanguageId"
- static let languageShortName = "selectedLanguageShortName"
- static let languageName = "selectedLanguageName"
- static let welcomeSlider = "welcomeStatus"
- static let introduction = "introduction"
- static let signInMethod = "signInMethod"
- static let appleId = "appleId"
- static let userData = "userData"
- static let userIdentifier = "userIdentifier"
- static let studentId = "studentId"
-
-
- //Welcome slider content
- static let onboarding1 = "onboarding1"
- static let content1 = "Money Managed Well is Money Earned. Learn everything you need to know about your Money"
- static let onboarding2 = "onboarding2"
- static let content2 = "Complex Financial Concepts and Products made Simple!"
- static let onboarding3 = "onboarding3"
- static let content3 = "Learn in a fun way Answer simple quizzes & win Exciting prizes."
-
- }
|