mirror of
https://github.com/plausible/analytics.git
synced 2024-12-22 09:01:40 +03:00
Use db-ip lite database for countries (#906)
* Use DBIP database for countries * Add fake data for geolocation tests
This commit is contained in:
parent
3af86dbb1f
commit
83a759c60a
4
.gitignore
vendored
4
.gitignore
vendored
@ -36,7 +36,7 @@ npm-debug.log
|
||||
# we ignore priv/static. You may want to comment
|
||||
# this depending on your deployment strategy.
|
||||
/priv/static/
|
||||
/priv/geolix/
|
||||
/priv/geodb/
|
||||
|
||||
# Files matching config/*.secret.exs pattern contain sensitive
|
||||
# data and you should not commit them into version control.
|
||||
@ -58,4 +58,4 @@ plausible-report.xml
|
||||
|
||||
# Dializer
|
||||
/priv/plts/*.plt
|
||||
/priv/plts/*.plt.hash
|
||||
/priv/plts/*.plt.hash
|
||||
|
@ -10,6 +10,7 @@ All notable changes to this project will be documented in this file.
|
||||
- Site switching keybinds (1-9 for respective sites) plausible/analytics#735
|
||||
- Glob (wildcard) based pageview goals plausible/analytics#750
|
||||
- Support for embedding shared links in an iframe plausible/analytics#812
|
||||
- Include a basic IP-To-Country database by default plausible/analytics#906
|
||||
- Add name/label to shared links plausible/analytics#910
|
||||
|
||||
### Fixed
|
||||
|
@ -15,7 +15,8 @@ if (container) {
|
||||
hasGoals: container.dataset.hasGoals === 'true',
|
||||
insertedAt: container.dataset.insertedAt,
|
||||
embedded: container.dataset.embedded,
|
||||
background: container.dataset.background
|
||||
background: container.dataset.background,
|
||||
selfhosted: container.dataset.selfhosted === 'true'
|
||||
}
|
||||
|
||||
const loggedIn = container.dataset.loggedIn === 'true'
|
||||
|
@ -125,13 +125,22 @@ class Countries extends React.Component {
|
||||
});
|
||||
}
|
||||
|
||||
geolocationDbNotice() {
|
||||
if (this.props.site.selfhosted) {
|
||||
return (
|
||||
<span className="text-xs text-gray-500 absolute bottom-4 right-3">IP Geolocation by <a target="_blank" href="https://db-ip.com" className="text-indigo-600">DB-IP</a></span>
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
renderBody() {
|
||||
if (this.state.countries) {
|
||||
return (
|
||||
<React.Fragment>
|
||||
<h3 className="font-bold dark:text-gray-100">Countries</h3>
|
||||
<div className="mx-auto mt-6" style={{width: '100%', maxWidth: '475px', height: '320px'}} id="map-container"></div>
|
||||
<div className="mx-auto mt-6" style={{width: '100%', maxWidth: '475px', height: '335px'}} id="map-container"></div>
|
||||
<MoreLink site={this.props.site} list={this.state.countries} endpoint="countries" />
|
||||
{ this.geolocationDbNotice() }
|
||||
</React.Fragment>
|
||||
)
|
||||
}
|
||||
|
@ -56,7 +56,7 @@ cron_enabled = String.to_existing_atom(System.get_env("CRON_ENABLED", "false"))
|
||||
custom_domain_server_ip = System.get_env("CUSTOM_DOMAIN_SERVER_IP")
|
||||
custom_domain_server_user = System.get_env("CUSTOM_DOMAIN_SERVER_USER")
|
||||
custom_domain_server_password = System.get_env("CUSTOM_DOMAIN_SERVER_PASSWORD")
|
||||
geolite2_country_db = System.get_env("GEOLITE2_COUNTRY_DB")
|
||||
geolite2_country_db = System.get_env("EOLITE2_COUNTRY_DB", "priv/geodb/dbip-country.mmdb")
|
||||
disable_auth = String.to_existing_atom(System.get_env("DISABLE_AUTH", "false"))
|
||||
disable_registration = String.to_existing_atom(System.get_env("DISABLE_REGISTRATION", "false"))
|
||||
hcaptcha_sitekey = System.get_env("HCAPTCHA_SITEKEY")
|
||||
@ -243,7 +243,7 @@ config :kaffy,
|
||||
]
|
||||
]
|
||||
|
||||
if geolite2_country_db do
|
||||
if config_env() != :test && geolite2_country_db do
|
||||
config :geolix,
|
||||
databases: [
|
||||
%{
|
||||
|
38
lib/mix/tasks/download_country_database.ex
Normal file
38
lib/mix/tasks/download_country_database.ex
Normal file
@ -0,0 +1,38 @@
|
||||
defmodule Mix.Tasks.DownloadCountryDatabase do
|
||||
use Mix.Task
|
||||
use Plausible.Repo
|
||||
require Logger
|
||||
|
||||
# coveralls-ignore-start
|
||||
|
||||
def run(_) do
|
||||
Application.ensure_all_started(:httpoison)
|
||||
Application.ensure_all_started(:timex)
|
||||
this_month = Timex.today()
|
||||
last_month = Timex.shift(this_month, months: -1)
|
||||
this_month = this_month |> Date.to_iso8601() |> binary_part(0, 7)
|
||||
last_month = last_month |> Date.to_iso8601() |> binary_part(0, 7)
|
||||
this_month_url = "https://download.db-ip.com/free/dbip-country-lite-#{this_month}.mmdb.gz"
|
||||
last_month_url = "https://download.db-ip.com/free/dbip-country-lite-#{last_month}.mmdb.gz"
|
||||
Logger.info("Downloading #{this_month_url}")
|
||||
res = HTTPoison.get!(this_month_url)
|
||||
|
||||
res =
|
||||
case res.status_code do
|
||||
404 ->
|
||||
Logger.info("Got 404 for #{this_month_url}, trying #{last_month_url}")
|
||||
HTTPoison.get!(last_month_url)
|
||||
|
||||
_ ->
|
||||
res
|
||||
end
|
||||
|
||||
if res.status_code == 200 do
|
||||
File.mkdir("priv/geodb")
|
||||
File.write!("priv/geodb/dbip-country.mmdb", res.body)
|
||||
Logger.info("Downloaded and saved the database successfully")
|
||||
else
|
||||
Logger.error("Unable to download and save the database. Response: #{inspect(res)}")
|
||||
end
|
||||
end
|
||||
end
|
@ -5,7 +5,7 @@
|
||||
</div>
|
||||
<% end %>
|
||||
<div class="pt-6"></div>
|
||||
<div id="stats-react-container" data-domain="<%= @site.domain %>" data-offset="<%= Timex.Timezone.total_offset(Timex.Timezone.get(@site.timezone)) %>" data-has-goals="<%= @has_goals %>" data-logged-in="<%= !!@conn.assigns[:current_user] %>" data-inserted-at="<%= @site.inserted_at %>" data-shared-link-auth="<%= assigns[:shared_link_auth] %>" data-embedded="<%= @conn.assigns[:embedded] %>" data-background="<%= @conn.assigns[:background] %>"></div>
|
||||
<div id="stats-react-container" data-domain="<%= @site.domain %>" data-offset="<%= Timex.Timezone.total_offset(Timex.Timezone.get(@site.timezone)) %>" data-has-goals="<%= @has_goals %>" data-logged-in="<%= !!@conn.assigns[:current_user] %>" data-inserted-at="<%= @site.inserted_at %>" data-shared-link-auth="<%= assigns[:shared_link_auth] %>" data-embedded="<%= @conn.assigns[:embedded] %>" data-background="<%= @conn.assigns[:background] %>" data-selfhosted="<%= Application.get_env(:plausible, :is_selfhost) %>"></div>
|
||||
<div id="modal_root"></div>
|
||||
<%= if !@conn.assigns[:current_user] && @conn.assigns[:demo] do %>
|
||||
<div class="bg-gray-50 dark:bg-gray-850">
|
||||
|
Loading…
Reference in New Issue
Block a user