summaryrefslogtreecommitdiff
path: root/build.gradle
blob: 29ceb2f20280da66fd87798d8dba2dbb741ec1c1 (plain)
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
import au.com.coherentsoftware.gradle.mercurial.task.*
import org.apache.tools.ant.filters.ReplaceTokens

buildscript {
  repositories {
    mavenCentral()
    jcenter()
  }
  dependencies {
    classpath 'com.android.tools.build:gradle:0.9.+'
    classpath 'au.com.coherentsoftware.gradle:Gradle-MercurialMqPlugin:1.1.0+'
  }
}

allprojects {
  repositories {
    mavenCentral()
  }
}

apply plugin: 'mercurial-mq'

task cloneIcsOpenVPN( type: HgClone ) {
  ext.srcFile = file('build.gradle')
  ext.destDir = new File('.', 'ics-openvpn')
  inputs.file srcFile
  outputs.dir destDir
     
  sourceUrl = 'https://code.google.com/p/ics-openvpn/'
}

task updateIcsOpenVPN( type: HgUpdate, dependsOn: 'pullIcsOpenVPN' ) {
  workingDir = 'ics-openvpn'
  branch = 'default'
}

task pullIcsOpenVPN( type: HgPull ) {
  sourceUrl = 'https://code.google.com/p/ics-openvpn/'
  workingDir = 'ics-openvpn'
}

task copyIcsOpenVPNClasses( type: Copy ) {
  from ('ics-openvpn/main') {
    include '**/*.java'
    include '**/*.aidl'
    include '**/strings.xml'

    rename 'strings.xml', 'strings-icsopenvpn.xml'
    filter {
      line -> line.replaceAll('de.blinkt.openvpn.R', 'se.leap.bitmaskclient.R')
    }
    filter {
      line -> line.replaceAll('de.blinkt.openvpn.BuildConfig', 'se.leap.bitmaskclient.BuildConfig')
    }    
  } into 'app'

  from ('ics-openvpn/main') {
    //TODO We should detect which drawables are needed by the classes
    //we need (such as de.blinkt.openvpn.core.OpenVpnService)
    include '**/ic_stat_vpn_offline.png'
    include '**/ic_stat_vpn_outline.png'
    include '**/ic_stat_vpn_empty_halo.png'
  } into 'app'
}

def processFileInplace(file, Closure processText) {
  def text = file.text
  file.write(processText(text))
}

// thanks to http://pleac.sourceforge.net/pleac_groovy/fileaccess.html
task removeDuplicatedStrings( dependsOn: 'copyIcsOpenVPNClasses' ) {
  def resources_directory = new File('./app/src/main/res/')
  resources_directory.eachFileRecurse {
    if(it.name.equals('strings.xml')) {
      def ics_openvpn_file = file(it.path.replace('strings.xml', 'strings-icsopenvpn.xml'))
      def ics_openvpn_strings_names = (new XmlParser()).parse(ics_openvpn_file)
      def current_file = it
      
      ics_openvpn_strings_names.string.each {
	processFileInplace(current_file) { text ->
	  text.replaceAll('.*name=\"' + it.attribute('name') + '\".*(\n)*.*string>.*\n+', '')
	}
      }

      if(it.path.contains('/values/')) {
	def untranslatable_strings_names = (new XmlParser()).parse(it.path.replace('strings.xml', 'untranslatable.xml'))
	untranslatable_strings_names.string.each {
	  processFileInplace(ics_openvpn_file) { text ->
	    text.replaceAll('.*name=\"' + it.attribute('name') + '\".*(\n)*.*string>.*\n+', '')
	  }
	}
      }
    }
  }
}