Skip to content
Snippets Groups Projects
initDataManagerService.ts 13.9 KiB
Newer Older
  • Learn to ignore specific revisions
  • Hugo NOUTS's avatar
    Hugo NOUTS committed
    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 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 405 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 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490
    import { Client } from 'cozy-client'
    import {
      CHALLENGETYPE_DOCTYPE,
      ECOGESTURE_DOCTYPE,
      USERCHALLENGE_DOCTYPE,
      USERPROFILE_DOCTYPE,
      EGL_DAY_DOCTYPE,
      EGL_MONTH_DOCTYPE,
      EGL_YEAR_DOCTYPE,
      ENEDIS_DAY_DOCTYPE,
      ENEDIS_MINUTE_DOCTYPE,
      ENEDIS_MONTH_DOCTYPE,
      ENEDIS_YEAR_DOCTYPE,
      GRDF_DAY_DOCTYPE,
      GRDF_HOUR_DOCTYPE,
      GRDF_MONTH_DOCTYPE,
      GRDF_YEAR_DOCTYPE,
    } from 'doctypes'
    
    import ChallengeDataManager from 'services/challengeDataManagerService'
    import challengeTypeData from 'db/challengeTypeData.json'
    import userChallengeData from 'db/userChallengeData.json'
    import EcogestureDataManager from 'services/ecogestureDataManagerService'
    import ecogestureData from 'db/ecogestureData.json'
    import UserProfileDataManager from 'services/userProfileDataManagerService'
    import userProfileData from 'db/userProfileData.json'
    import KonnectorStatusService from 'services/konnectorStatusService'
    
    import { hashFile } from 'utils/hash'
    import {
      UserProfile,
      TypeChallenge,
      UserChallenge,
    } from 'services/dataChallengeContracts'
    import { FluidType } from 'enum/fluid.enum'
    import { DateTime } from 'luxon'
    
    export default class InitDataManager {
      private readonly _client: Client
    
      constructor(_client: Client) {
        this._client = _client
      }
    
      public async checkChallengeType(hash: string): Promise<boolean> {
        const hashChanllengeType = hashFile(challengeTypeData)
        const cdm = new ChallengeDataManager(this._client)
        const updm = new UserProfileDataManager(this._client)
    
        // Populate data if none challengeType exists
        const loadedChallengeTypes = await cdm.getAllChallengeTypeEntities()
        if (
          !loadedChallengeTypes ||
          (loadedChallengeTypes && loadedChallengeTypes.length === 0)
        ) {
          // Populate the doctype with data
          try {
            for (let i = 0; i <= challengeTypeData.length - 1; i++) {
              const result = await this._client.create(
                CHALLENGETYPE_DOCTYPE,
                challengeTypeData[i]
              )
              if (!result) {
                return false
              }
            }
            // Check of created document
            const checkCount = await cdm.getAllChallengeTypeEntities()
            if (
              !checkCount ||
              (checkCount && checkCount.length !== challengeTypeData.length)
            ) {
              return false
            }
            // Update userProfil with the hash
            const updatedUserProfil = await updm.updateUserProfile({
              challengeTypeHash: hashChanllengeType,
            })
            if (!updatedUserProfil) {
              return false
            }
          } catch (error) {
            console.log('Context error: ', error)
            return false
          }
          return true
        }
    
        // Update if the hash is not the same as the one from userprofile
        if (hash !== hashChanllengeType) {
          // Update the doctype
          try {
            // Deletion of all documents
            const resultDeletion = await cdm.deleteAllChallengeTypeEntities()
            if (!resultDeletion) {
              return false
            }
            // Population with the data
            const resultPopulation = await Promise.all(
              challengeTypeData.map(async challengeType => {
                await this._client.create(CHALLENGETYPE_DOCTYPE, challengeType)
              })
            )
            if (!resultPopulation) {
              return false
            }
            // Check of created document
            const checkCount = await cdm.getAllChallengeTypeEntities()
            if (
              !checkCount ||
              (checkCount && checkCount.length !== challengeTypeData.length)
            ) {
              return false
            }
            // Update userProfil with the hash
            const updatedUserProfil = await updm.updateUserProfile({
              challengeTypeHash: hashChanllengeType,
            })
            if (!updatedUserProfil) {
              return false
            }
          } catch (error) {
            console.log('Context error: ', error)
            return false
          }
          return true
        } else {
          // Doctype already up to date
          return true
        }
      }
    
      public async checkEcogesture(hash: string): Promise<boolean> {
        const hashEcogestureType = hashFile(ecogestureData)
        const edm = new EcogestureDataManager(this._client)
        const updm = new UserProfileDataManager(this._client)
    
        // Populate data if none ecogesture exists
        const loadedEcogestures = await edm.getAllEcogestures()
        if (
          !loadedEcogestures ||
          (loadedEcogestures && loadedEcogestures.length === 0)
        ) {
          // Populate the doctype with data
          try {
            for (let i = 0; i <= ecogestureData.length - 1; i++) {
              const result = await this._client.create(
                ECOGESTURE_DOCTYPE,
                ecogestureData[i]
              )
              if (!result) {
                return false
              }
            }
    
            // Check of created document based on count
            const checkCount = await edm.getAllEcogestures()
            if (
              !checkCount ||
              (checkCount && checkCount.length !== ecogestureData.length)
            ) {
              return false
            }
            // Update userProfil with the hash
            const updatedUserProfil = await updm.updateUserProfile({
              ecogestureHash: hashEcogestureType,
            })
            if (!updatedUserProfil) {
              return false
            }
          } catch (error) {
            console.log('Context error: ', error)
            return false
          }
          return true
        }
    
        // Update if the hash is not the same as the one from userprofile
        if (hash !== hashEcogestureType) {
          // Update the doctype
          try {
            // Deletion of all documents
            const resultDeletion = await edm.deleteAllEcogestures()
            if (!resultDeletion) {
              return false
            }
            // Population with the data
            const resultPopulation = await Promise.all(
              ecogestureData.map(async ecogesture => {
                await this._client.create(ECOGESTURE_DOCTYPE, ecogesture)
              })
            )
            if (!resultPopulation) {
              return false
            }
            // Check of created document based on count
            const checkCount = await edm.getAllEcogestures()
            if (
              !checkCount ||
              (checkCount && checkCount.length !== ecogestureData.length)
            ) {
              return false
            }
            // Update userProfil with the hash
            const updatedUserProfil = await updm.updateUserProfile({
              ecogestureHash: hashEcogestureType,
            })
            if (!updatedUserProfil) {
              return false
            }
          } catch (error) {
            console.log('Context error: ', error)
            return false
          }
          return true
        } else {
          // Doctype already up to date
          return true
        }
      }
    
      /*
       * Check if userChallenge exist
       * If not, the userChallenge is created
       * sucess return: true
       * failure return: false
       */
      public async checkUserChallenge(): Promise<boolean> {
        const cdm = new ChallengeDataManager(this._client)
        const loadedUserChallenge = await cdm.getAllUserChallengeEntities()
        if (
          !loadedUserChallenge ||
          (loadedUserChallenge && loadedUserChallenge.length === 0)
        ) {
          try {
            // Population with the data
            await this._client.create(USERCHALLENGE_DOCTYPE, userChallengeData[0])
            // Check of created document
            const checkUserChallenge = await cdm.getAllUserChallengeEntities()
            if (!checkUserChallenge) {
              return false
            }
            return true
          } catch (error) {
            console.log('Context error: ', error)
            return false
          }
        } else {
          return true
        }
      }
    
      /*
       * Check if UserProfil exist
       * If not, the UserProfil is created
       * sucess return: userProfil
       * failure return: null
       */
      public async checkUserProfile(): Promise<UserProfile | null> {
        const updm = new UserProfileDataManager(this._client)
        const loadedUserProfile = await updm.getUserProfile()
        if (!loadedUserProfile) {
          try {
            // Population with the data
            await this._client.create(USERPROFILE_DOCTYPE, userProfileData[0])
            // Check of created document
            const checkUserProfile = await updm.getUserProfile()
            return checkUserProfile
          } catch (error) {
            console.log('Context error: ', error)
            return null
          }
        } else {
          return loadedUserProfile
        }
      }
    
      /*
       * Call each check function to init data
       * sucess return: true
       * failure return: false or null
       */
      public async initData(): Promise<boolean | null> {
        try {
          const resultUserProfile = await this.checkUserProfile()
          if (!resultUserProfile) {
            return false
          } else {
            console.log(
              '%c Context: UserProfile loaded ',
              'background: #222; color: white'
            )
          }
          const resultChallengeType = await this.checkChallengeType(
            resultUserProfile.challengeTypeHash
          )
          if (!resultChallengeType) {
            return false
          } else {
            console.log(
              '%c Context: ChallengeType loaded ',
              'background: #222; color: white'
            )
          }
          const resultEcogesture = await this.checkEcogesture(
            resultUserProfile.ecogestureHash
          )
          if (!resultEcogesture) {
            return false
          } else {
            console.log(
              '%c Context: Ecogesture loaded ',
              'background: #222; color: white'
            )
          }
          const resultUserChallenge = await this.checkUserChallenge()
          if (!resultUserChallenge) {
            return false
          } else {
            console.log(
              '%c Context: UserChallenge loaded',
              'background: #222; color: white'
            )
          }
          return true
        } catch (error) {
          console.log('Context error: ', error)
          return null
        }
      }
    
      /*
       * Check if FluidTypes exist
       * sucess return: FluidType[]
       * failure return: null
       */
      public async checkFluidTypes(): Promise<FluidType[] | null> {
        const kss = new KonnectorStatusService(this._client)
        try {
          const fluidtypes = await kss.getKonnectorAccountStatus()
          if (!fluidtypes) {
            return null
          }
          return fluidtypes
        } catch (error) {
          console.log('Context error: ', error)
          return null
        }
      }
    
      /*
       * Call a query with where clause to create the index if not exist
       */
      public async createIndex(doctype: string): Promise<any> {
        return await this._client.query(
          this._client
            .find(doctype)
            .where({
              year: {
                $lte: 9999,
              },
              month: {
                $lte: 12,
              },
              day: {
                $lte: 31,
              },
            })
            .limitBy(1)
        )
      }
    
      /*
       * create index for each Doctype
       * sucess return: true
       * failure return: null
       */
      public async initIndex(): Promise<boolean | null> {
        try {
          await this.createIndex(EGL_DAY_DOCTYPE)
          await this.createIndex(EGL_MONTH_DOCTYPE)
          await this.createIndex(EGL_YEAR_DOCTYPE)
          await this.createIndex(ENEDIS_DAY_DOCTYPE)
          await this.createIndex(ENEDIS_MINUTE_DOCTYPE)
          await this.createIndex(ENEDIS_MONTH_DOCTYPE)
          await this.createIndex(ENEDIS_YEAR_DOCTYPE)
          await this.createIndex(GRDF_DAY_DOCTYPE)
          await this.createIndex(GRDF_HOUR_DOCTYPE)
          await this.createIndex(GRDF_MONTH_DOCTYPE)
          await this.createIndex(GRDF_YEAR_DOCTYPE)
          return true
        } catch (error) {
          console.log('Context error: ', error)
          return null
        }
      }
    
      /*
       * Search for a current challenge
       * and update it if found
       */
      public async checkCurrentChallenge(
        fluidTypes: FluidType[]
      ): Promise<UserChallenge | null> {
        try {
          // get the current challenge
          const cdm = new ChallengeDataManager(this._client)
          const currentChallenge = await cdm.getCurrentChallenge()
          if (!currentChallenge) {
            // No current challenge
            return null
          } else {
            if (
              currentChallenge &&
              currentChallenge.challengeType &&
              currentChallenge.challengeType.type === TypeChallenge.CHALLENGE
            ) {
              // Check if we are in the viewing timezone for current challenge
              const viewingDate = cdm.getViewingDate(currentChallenge, fluidTypes)
              if (DateTime.local() >= viewingDate) {
                if (currentChallenge.maxEnergy === -1) {
                  const maxEnergyResult = await cdm.setMaxEnergy(
                    currentChallenge,
                    this._client,
                    fluidTypes
                  )
                  if (maxEnergyResult > 0) {
                    currentChallenge.maxEnergy = maxEnergyResult
                  }
                }
                const currentEnergyResult = await cdm.setSpentEnergy(
                  currentChallenge,
                  this._client,
                  fluidTypes
                )
                if (currentEnergyResult) {
                  currentChallenge.currentEnergy = currentEnergyResult
                }
              }
            }
            return currentChallenge
          }
        } catch (error) {
          console.log('Context error: ', error)
          throw error
        }
      }
    
      /*
       * If the challenge is over
       * Set the rigth badge and return true
       * else return false
       */
      public async isCurrentChallengeOver(
        challenge: UserChallenge,
        fluidTypes: FluidType[]
      ): Promise<boolean> {
        try {
          // get the current challenge
          if (!challenge) {
            // No current challenge
            return false
          } else {
            const cdm = new ChallengeDataManager(this._client)
            const typeChallenge = challenge.challengeType
              ? challenge.challengeType.type
              : 0
            const isOver = await cdm.isChallengeOverByDate(
              challenge.endingDate,
              fluidTypes,
              typeChallenge
            )
            if (isOver) {
              await cdm.setTheRightBadge(challenge)
              return true
            } else {
              return false
            }
          }
        } catch (error) {
          console.log('Context error: ', error)
          return false
        }
      }
    
      public async checkAchievement(id: string): Promise<UserChallenge | null> {
        const cdm = new ChallengeDataManager(this._client)
        return await cdm.checkAchievement(id)
      }
    }