f655ec5a5c
In this commit, GeoIP-related classes are refactored and relocated to a common library as they are shared across multiple services. The crawler is refactored to enable the GeoIpBlocklist to use the new GeoIpDictionary as the base of its decisions. The converter is modified ot query this data to add a geoip:-keyword to documents to permit limiting a search to the country of the hosting server. The commit also adds due BY-SA attribution in the search engine footer for the source of the IP geolocation data.
39 lines
815 B
Groovy
39 lines
815 B
Groovy
plugins {
|
|
id 'java'
|
|
|
|
|
|
id 'jvm-test-suite'
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(21))
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':code:common:model')
|
|
implementation project(':code:common:config')
|
|
implementation project(':code:libraries:guarded-regex')
|
|
implementation project(':code:libraries:geo-ip')
|
|
|
|
implementation libs.notnull
|
|
|
|
implementation libs.bundles.gson
|
|
implementation libs.rxjava
|
|
implementation libs.bundles.slf4j
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
implementation libs.guava
|
|
implementation libs.guice
|
|
|
|
implementation libs.commons.net
|
|
|
|
implementation libs.opencsv
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
testImplementation libs.bundles.junit
|
|
testImplementation libs.mockito
|
|
}
|
|
|