apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

buildscript {
  // Buildscript is evaluated before everything else so we can't use getExtOrDefault
  def kotlin_version = rootProject.ext.has('kotlinVersion') ? rootProject.ext.get('kotlinVersion') : project.properties['JedaiReactNativePackage_kotlinVersion']

  repositories {
    google()
    mavenCentral()
    maven { url 'https://jitpack.io' }
  }

  dependencies {
    classpath 'com.android.tools.build:gradle:7.1.3'
    // noinspection DifferentKotlinGradleVersion
    classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  }
}

rootProject.allprojects {
  repositories {
    google()
    mavenCentral()
    maven { url 'https://jitpack.io' }
    maven {
      url "https://dl.anagog.com/android/public"
    }

  //  try {
  //    def awsDownloadAccessKey = getProperty("AwsDownloadAccessKeyId")
  //    def awsDownloadSecretAccessKey = getProperty("AwsDownloadSecretAccessKey")
  //    if (awsDownloadAccessKey != null && awsDownloadSecretAccessKey != null) {
  //      maven {
  //        url "s3://anagog-jedai-downloads/android/private"
  //        credentials(AwsCredentials) {
  //          accessKey = awsDownloadAccessKey
  //          secretKey = awsDownloadSecretAccessKey
  //        }
  //      }
  //    }
  //  } catch(e) {
  //    println("Can't access anagog private repo, only pulished versions available")
  //  }
  }
}

def getExtOrDefault(name) {
  return rootProject.ext.has(name) ? rootProject.ext.get(name) : project.properties['JedaiReactNativePackage_' + name]
}

def getExtOrIntegerDefault(name) {
  return rootProject.ext.has(name) ? rootProject.ext.get(name) : (project.properties['JedaiReactNativePackage_' + name]).toInteger()
}

android {
  compileSdkVersion getExtOrIntegerDefault('compileSdkVersion')
  buildToolsVersion getExtOrDefault('buildToolsVersion')
  defaultConfig {
    minSdkVersion 21
    targetSdkVersion getExtOrIntegerDefault('targetSdkVersion')
    versionCode 1
    versionName "1.0"
  }

  buildTypes {
    release {
      minifyEnabled false
    }
  }
  lintOptions {
    disable 'GradleCompatible'
  }

  namespace "com.jedaireactnativepackage"
}

repositories {
  mavenCentral()
  maven { url 'https://jitpack.io' }
  google()
  def found = false
  def defaultDir = null
  def androidSourcesName = 'React Native sources'

  if (rootProject.ext.has('reactNativeAndroidRoot')) {
    defaultDir = rootProject.ext.get('reactNativeAndroidRoot')
  } else {
    defaultDir = new File(
      projectDir,
      '/../../../node_modules/react-native/android'
    )
  }

  if (defaultDir.exists()) {
    maven {
      url defaultDir.toString()
      name androidSourcesName
    }

    logger.info(":${project.name}:reactNativeAndroidRoot ${defaultDir.canonicalPath}")
    found = true
  } else {
    def parentDir = rootProject.projectDir

    1.upto(5, {
      if (found) return true
      parentDir = parentDir.parentFile

      def androidSourcesDir = new File(
        parentDir,
        'node_modules/react-native'
      )

      def androidPrebuiltBinaryDir = new File(
        parentDir,
        'node_modules/react-native/android'
      )

      if (androidPrebuiltBinaryDir.exists()) {
        maven {
          url androidPrebuiltBinaryDir.toString()
          name androidSourcesName
        }

        logger.info(":${project.name}:reactNativeAndroidRoot ${androidPrebuiltBinaryDir.canonicalPath}")
        found = true
      } else if (androidSourcesDir.exists()) {
        maven {
          url androidSourcesDir.toString()
          name androidSourcesName
        }

        logger.info(":${project.name}:reactNativeAndroidRoot ${androidSourcesDir.canonicalPath}")
        found = true
      }
    })
  }

  if (!found) {
    throw new GradleException(
      "${project.name}: unable to locate React Native android sources. " +
        "Ensure you have you installed React Native as a dependency in your project and try again."
    )
  }
}

def jedai_version = rootProject.ext.has('jedaiVersion') ? rootProject.ext.get('jedaiVersion') : project.properties['JedaiReactNativePackage_jedaiVersion']

dependencies {
  implementation 'com.facebook.react:react-native:+'
  implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.1"

  //Anagog
  api "com.anagog.jedai:anagog_api:$jedai_version"
  debugImplementation "com.anagog.jedai:debugging:$jedai_version"
}

