You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

127 lines
5.2 KiB

  1. # -*- encoding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Base Location Geonames Import module for OpenERP
  5. # Copyright (C) 2014 Akretion (http://www.akretion.com)
  6. # @author Alexis de Lattre <alexis.delattre@akretion.com>
  7. #
  8. # This program is free software: you can redistribute it and/or modify
  9. # it under the terms of the GNU Affero General Public License as
  10. # published by the Free Software Foundation, either version 3 of the
  11. # License, or (at your option) any later version.
  12. #
  13. # This program is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. # GNU Affero General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU Affero General Public License
  19. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. #
  21. ##############################################################################
  22. from openerp.osv import orm, fields
  23. from openerp.tools.translate import _
  24. import requests
  25. import tempfile
  26. import StringIO
  27. import unicodecsv
  28. import zipfile
  29. import os
  30. import logging
  31. logger = logging.getLogger(__name__)
  32. class better_zip_geonames_import(orm.TransientModel):
  33. _name = 'better.zip.geonames.import'
  34. _description = 'Import Better Zip from Geonames'
  35. _columns = {
  36. 'country_id': fields.many2one('res.country', 'Country', required=True),
  37. }
  38. def _prepare_better_zip(
  39. self, cr, uid, row, country_id, states, context=None):
  40. '''This function is designed to be inherited'''
  41. state_id = False
  42. if states and row[4] and row[4] in states:
  43. state_id = states[row[4].upper()]
  44. if row[0] == 'FR' and 'CEDEX' in row[1]:
  45. return False
  46. vals = {
  47. 'name': row[1],
  48. 'city': row[2],
  49. 'state_id': state_id,
  50. 'country_id': country_id,
  51. }
  52. return vals
  53. def create_better_zip(
  54. self, cr, uid, row, country_id, country_code, states,
  55. context=None):
  56. bzip_id = False
  57. if row[0] != country_code:
  58. raise orm.except_orm(
  59. _('Error:'),
  60. _("The country code inside the file (%s) doesn't "
  61. "correspond to the selected country (%s).")
  62. % (row[0], country_code))
  63. logger.debug('ZIP = %s - City = %s' % (row[1], row[2]))
  64. if row[1] and row[2]:
  65. vals = self._prepare_better_zip(
  66. cr, uid, row, country_id, states, context=context)
  67. if vals:
  68. bzip_id = self.pool['res.better.zip'].create(
  69. cr, uid, vals, context=context)
  70. return bzip_id
  71. def run_import(self, cr, uid, ids, context=None):
  72. assert len(ids) == 1, 'Only one ID for the better zip import wizard'
  73. bzip_obj = self.pool['res.better.zip']
  74. wizard = self.browse(cr, uid, ids[0], context=context)
  75. country_id = wizard.country_id.id
  76. country_code = wizard.country_id.code.upper()
  77. url = 'http://download.geonames.org/export/zip/%s.zip' % country_code
  78. logger.info('Starting to download %s' % url)
  79. res_request = requests.get(url)
  80. if res_request.status_code != requests.codes.ok:
  81. raise orm.except_orm(
  82. _('Error:'),
  83. _('Got an error %d when trying to download the file %s.')
  84. % (res_request.status_code, url))
  85. bzip_ids_to_delete = bzip_obj.search(
  86. cr, uid, [('country_id', '=', country_id)], context=context)
  87. if bzip_ids_to_delete:
  88. bzip_obj.unlink(cr, uid, bzip_ids_to_delete, context=context)
  89. logger.info(
  90. '%d better zip entries deleted for country %s'
  91. % (len(bzip_ids_to_delete), wizard.country_id.name))
  92. state_ids = self.pool['res.country.state'].search(
  93. cr, uid, [('country_id', '=', country_id)], context=context)
  94. states = {}
  95. # key = code of the state ; value = ID of the state in OpenERP
  96. if state_ids:
  97. states_r = self.pool['res.country.state'].read(
  98. cr, uid, state_ids, ['code', 'country_id'], context=context)
  99. for state in states_r:
  100. states[state['code'].upper()] = state['id']
  101. f_geonames = zipfile.ZipFile(StringIO.StringIO(res_request.content))
  102. tempdir = tempfile.mkdtemp(prefix='openerp')
  103. f_geonames.extract('%s.txt' % country_code, tempdir)
  104. logger.info('The geonames zipfile has been decompressed')
  105. data_file = open(os.path.join(tempdir, '%s.txt' % country_code), 'r')
  106. data_file.seek(0)
  107. logger.info(
  108. 'Starting to create the better zip entries %s state information'
  109. % (states and 'with' or 'without'))
  110. for row in unicodecsv.reader(
  111. data_file, encoding='utf-8', delimiter=' '):
  112. self.create_better_zip(
  113. cr, uid, row, country_id, country_code, states,
  114. context=context)
  115. data_file.close()
  116. logger.info(
  117. 'The wizard to create better zip entries from geonames '
  118. 'has been successfully completed.')
  119. return True