[Django] #33442: contrib.gis.geoip does not support Country-Lite version from DBIP

4 просмотра
Перейти к первому непрочитанному сообщению

Django

не прочитано,
14 янв. 2022 г., 09:05:4914.01.2022
– django-...@googlegroups.com
#33442: contrib.gis.geoip does not support Country-Lite version from DBIP
---------------------------------------+------------------------
Reporter: DonkeyOatie | Owner: nobody
Type: Bug | Status: new
Component: GIS | Version: 4.0
Severity: Normal | Keywords:
Triage Stage: Unreviewed | Has patch: 0
Needs documentation: 0 | Needs tests: 0
Patch needs improvement: 0 | Easy pickings: 0
UI/UX: 0 |
---------------------------------------+------------------------
The
{{{
db_type
}}}
property of the geoip database metadata for the dbip (https://db-
ip.com/db/lite.php) lite databases is being returned as "DBIP-Country-
Lite"

The check here then fails

https://github.com/django/django/blob/stable/3.2.x/django/contrib/gis/geoip2/base.py#L107

despite the database being in the mmdb format.

I believe Django should support the (free) dbip lite databases as well as
the commercial maxmind databases.

Changing the above line to check for

{{{
if db_type.contains("Country"):
...
}}}

would be sufficient. As would a second check to check for

{{{
if db_type.endswith("Country-") or db_type.endswith("Country-Lite"):
...
}}}

A similar change would be required the the dbip City-Lite database to be
supported.

--
Ticket URL: <https://code.djangoproject.com/ticket/33442>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

Django

не прочитано,
14 янв. 2022 г., 09:24:4614.01.2022
– django-...@googlegroups.com
#33442: contrib.gis.geoip does not support Country-Lite version from DBIP
-----------------------------+--------------------------------------

Reporter: DonkeyOatie | Owner: nobody
Type: Bug | Status: new
Component: GIS | Version: 4.0
Severity: Normal | Resolution:

Keywords: | Triage Stage: Unreviewed
Has patch: 0 | Needs documentation: 0
Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 0 | UI/UX: 0
-----------------------------+--------------------------------------
Description changed by DonkeyOatie:

Old description:

> The
> {{{
> db_type
> }}}
> property of the geoip database metadata for the dbip (https://db-
> ip.com/db/lite.php) lite databases is being returned as "DBIP-Country-
> Lite"
>
> The check here then fails
>
> https://github.com/django/django/blob/stable/3.2.x/django/contrib/gis/geoip2/base.py#L107
>
> despite the database being in the mmdb format.
>
> I believe Django should support the (free) dbip lite databases as well as
> the commercial maxmind databases.
>
> Changing the above line to check for
>
> {{{
> if db_type.contains("Country"):
> ...
> }}}
>
> would be sufficient. As would a second check to check for
>
> {{{
> if db_type.endswith("Country-") or db_type.endswith("Country-Lite"):
> ...
> }}}
>
> A similar change would be required the the dbip City-Lite database to be
> supported.

New description:

The
{{{
db_type
}}}
property of the geoip database metadata for the dbip (https://db-
ip.com/db/lite.php) lite databases is being returned as "DBIP-Country-
Lite"

The check here then fails

https://github.com/django/django/blob/stable/3.2.x/django/contrib/gis/geoip2/base.py#L107

despite the database being in the mmdb format.

I believe Django should support the (free) dbip lite databases as well as
the commercial maxmind databases.

Changing the above line to check for

{{{
if db_type.contains("Country"):
...
}}}

would be sufficient. As would a second check to check for

{{{
if db_type.endswith("Country") or db_type.endswith("Country-Lite"):
...
}}}

A similar change would be required the the dbip City-Lite database to be
supported.

I am happy to put in a pull request but I am also hoping we can find a way
to get this into the 3.2.x branch as well as a future 4.x release if thats
possible.

--

--
Ticket URL: <https://code.djangoproject.com/ticket/33442#comment:1>

Django

не прочитано,
14 янв. 2022 г., 11:10:2614.01.2022
– django-...@googlegroups.com
#33442: contrib.gis.geoip does not support Country-Lite version from DBIP
----------------------------------+------------------------------------
Reporter: Nathan Humphreys | Owner: nobody
Type: New feature | Status: new
Component: GIS | Version: dev
Severity: Normal | Resolution:
Keywords: | Triage Stage: Accepted

Has patch: 0 | Needs documentation: 0
Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 0 | UI/UX: 0
----------------------------------+------------------------------------
Changes (by Claude Paroz):

* version: 4.0 => dev
* type: Bug => New feature
* stage: Unreviewed => Accepted


Comment:

A patch is welcome. Unfortunately, per Django release policy, this will
not enter 3.2.x, nor 4.0.x, as it's not a regression.

--
Ticket URL: <https://code.djangoproject.com/ticket/33442#comment:2>

Django

не прочитано,
29 июл. 2022 г., 14:35:2329.07.2022
– django-...@googlegroups.com
#33442: contrib.gis.geoip does not support Country-Lite version from DBIP
----------------------------------+----------------------------------------
Reporter: Nathan Humphreys | Owner: Claude Paroz
Type: New feature | Status: assigned

Component: GIS | Version: dev
Severity: Normal | Resolution:
Keywords: | Triage Stage: Accepted
Has patch: 1 | Needs documentation: 1

Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 0 | UI/UX: 0
----------------------------------+----------------------------------------
Changes (by Mariusz Felisiak):

* owner: nobody => Claude Paroz
* needs_docs: 0 => 1
* has_patch: 0 => 1
* status: new => assigned


Comment:

[https://github.com/django/django/pull/15892 PR]

--
Ticket URL: <https://code.djangoproject.com/ticket/33442#comment:3>

Django

не прочитано,
30 июл. 2022 г., 13:36:5330.07.2022
– django-...@googlegroups.com
#33442: contrib.gis.geoip does not support Country-Lite version from DBIP
-------------------------------------+-------------------------------------

Reporter: Nathan Humphreys | Owner: Claude
| Paroz
Type: New feature | Status: assigned
Component: GIS | Version: dev
Severity: Normal | Resolution:
Keywords: | Triage Stage: Ready for
| checkin
Has patch: 1 | Needs documentation: 0

Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 0 | UI/UX: 0
-------------------------------------+-------------------------------------
Changes (by Mariusz Felisiak):

* needs_docs: 1 => 0
* stage: Accepted => Ready for checkin


--
Ticket URL: <https://code.djangoproject.com/ticket/33442#comment:4>

Django

не прочитано,
30 июл. 2022 г., 14:00:2230.07.2022
– django-...@googlegroups.com
#33442: contrib.gis.geoip does not support Country-Lite version from DBIP
-------------------------------------+-------------------------------------
Reporter: Nathan Humphreys | Owner: Claude
| Paroz
Type: New feature | Status: closed
Component: GIS | Version: dev
Severity: Normal | Resolution: fixed

Keywords: | Triage Stage: Ready for
| checkin
Has patch: 1 | Needs documentation: 0

Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 0 | UI/UX: 0
-------------------------------------+-------------------------------------
Changes (by Mariusz Felisiak <felisiak.mariusz@…>):

* status: assigned => closed
* resolution: => fixed


Comment:

In [changeset:"1e5bbbb2a866faf56e00eb744ab940e40e87d497" 1e5bbbb2]:
{{{
#!CommitTicketReference repository=""
revision="1e5bbbb2a866faf56e00eb744ab940e40e87d497"
Fixed #33442 -- Allowed GeoIP2 to use DB-IP Lite datasets.
}}}

--
Ticket URL: <https://code.djangoproject.com/ticket/33442#comment:5>

Ответить всем
Отправить сообщение автору
Переслать
0 новых сообщений