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.

526 lines
31 KiB

12 years ago
  1. # -*- encoding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Asterisk Click2dial module for OpenERP
  5. # Copyright (C) 2010-2013 Alexis de Lattre <alexis@via.ecp.fr>
  6. #
  7. # This program is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU Affero General Public License as
  9. # published by the Free Software Foundation, either version 3 of the
  10. # License, or (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU Affero General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Affero General Public License
  18. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. #
  20. ##############################################################################
  21. from openerp.osv import osv, fields
  22. # Lib required to print logs
  23. import logging
  24. # Lib to translate error messages
  25. from openerp.tools.translate import _
  26. # Lib for phone number reformating -> pip install phonenumbers
  27. import phonenumbers
  28. # Lib py-asterisk from http://code.google.com/p/py-asterisk/
  29. # We need a version which has this commit : http://code.google.com/p/py-asterisk/source/detail?r=8d0e1c941cce727c702582f3c9fcd49beb4eeaa4
  30. # so a version after Nov 20th, 2012
  31. from Asterisk import Manager
  32. _logger = logging.getLogger(__name__)
  33. class asterisk_server(osv.osv):
  34. '''Asterisk server object, to store all the parameters of the Asterisk IPBXs'''
  35. _name = "asterisk.server"
  36. _description = "Asterisk Servers"
  37. _columns = {
  38. 'name': fields.char('Asterisk server name', size=50, required=True, help="Asterisk server name."),
  39. 'active': fields.boolean('Active', help="The active field allows you to hide the Asterisk server without deleting it."),
  40. 'ip_address': fields.char('Asterisk IP addr. or DNS', size=50, required=True, help="IP address or DNS name of the Asterisk server."),
  41. 'port': fields.integer('Port', required=True, help="TCP port on which the Asterisk Manager Interface listens. Defined in /etc/asterisk/manager.conf on Asterisk."),
  42. 'out_prefix': fields.char('Out prefix', size=4, help="Prefix to dial to place outgoing calls. If you don't use a prefix to place outgoing calls, leave empty."),
  43. 'national_prefix': fields.char('National prefix', size=4, help="Prefix for national phone calls (don't include the 'out prefix'). For e.g., in France, the phone numbers look like '01 41 98 12 42' : the National prefix is '0'."),
  44. 'international_prefix': fields.char('International prefix', required=True, size=4, help="Prefix to add to make international phone calls (don't include the 'out prefix'). For e.g., in France, the International prefix is '00'."),
  45. 'country_prefix': fields.char('My country prefix', required=True, size=4, help="Phone prefix of the country where the Asterisk server is located. For e.g. the phone prefix for France is '33'. If the phone number to dial starts with the 'My country prefix', OpenERP will remove the country prefix from the phone number and add the 'out prefix' followed by the 'national prefix'. If the phone number to dial doesn't start with the 'My country prefix', OpenERP will add the 'out prefix' followed by the 'international prefix'."),
  46. 'login': fields.char('AMI login', size=30, required=True, help="Login that OpenERP will use to communicate with the Asterisk Manager Interface. Refer to /etc/asterisk/manager.conf on your Asterisk server."),
  47. 'password': fields.char('AMI password', size=30, required=True, help="Password that Asterisk will use to communicate with the Asterisk Manager Interface. Refer to /etc/asterisk/manager.conf on your Asterisk server."),
  48. 'context': fields.char('Dialplan context', size=50, required=True, help="Asterisk dialplan context from which the calls will be made. Refer to /etc/asterisk/extensions.conf on your Asterisk server."),
  49. 'wait_time': fields.integer('Wait time (sec)', required=True, help="Amount of time (in seconds) Asterisk will try to reach the user's phone before hanging up."),
  50. 'extension_priority': fields.integer('Extension priority', required=True, help="Priority of the extension in the Asterisk dialplan. Refer to /etc/asterisk/extensions.conf on your Asterisk server."),
  51. 'alert_info': fields.char('Alert-Info SIP header', size=255, help="Set Alert-Info header in SIP request to user's IP Phone for the click2dial feature. If empty, the Alert-Info header will not be added. You can use it to have a special ring tone for click2dial (a silent one !) or to activate auto-answer for example."),
  52. 'number_of_digits_to_match_from_end': fields.integer('Number of digits to match from end', help='In several situations, the Asterisk-OpenERP connector will have to find a Partner in OpenERP from a phone number presented by the calling party. As the phone numbers presented by your phone operator may not always be displayed in a standard format, the best method to find the related Partner in OpenERP is to try to match the end of the phone numbers of the Partners in OpenERP with the N last digits of the phone number presented by the calling party. N is the value you should enter in this field.'),
  53. 'company_id': fields.many2one('res.company', 'Company', help="Company who uses the Asterisk server."),
  54. }
  55. def _get_prefix_from_country(self, cr, uid, context=None):
  56. user = self.pool['res.users'].browse(cr, uid, uid, context=context)
  57. country_code = user.company_id and user.company_id.partner_id and user.company_id.partner_id.country_id and user.company_id.partner_id.country_id.code or False
  58. default_country_prefix = False
  59. if country_code:
  60. default_country_prefix = phonenumbers.country_code_for_region(country_code)
  61. return default_country_prefix
  62. _defaults = {
  63. 'active': True,
  64. 'port': 5038, # Default AMI port
  65. 'out_prefix': '0',
  66. 'national_prefix': '0',
  67. 'international_prefix': '00',
  68. 'country_prefix': _get_prefix_from_country,
  69. 'extension_priority': 1,
  70. 'wait_time': 15,
  71. 'number_of_digits_to_match_from_end': 9,
  72. }
  73. def _check_validity(self, cr, uid, ids):
  74. for server in self.browse(cr, uid, ids):
  75. country_prefix = ('Country prefix', server.country_prefix)
  76. international_prefix = ('International prefix', server.international_prefix)
  77. out_prefix = ('Out prefix', server.out_prefix)
  78. national_prefix = ('National prefix', server.national_prefix)
  79. dialplan_context = ('Dialplan context', server.context)
  80. alert_info = ('Alert-Info SIP header', server.alert_info)
  81. login = ('AMI login', server.login)
  82. password = ('AMI password', server.password)
  83. for digit_prefix in [country_prefix, international_prefix, out_prefix, national_prefix]:
  84. if digit_prefix[1] and not digit_prefix[1].isdigit():
  85. raise osv.except_osv(_('Error :'), _("Only use digits for the '%s' on the Asterisk server '%s'" % (digit_prefix[0], server.name)))
  86. if server.wait_time < 1 or server.wait_time > 120:
  87. raise osv.except_osv(_('Error :'), _("You should set a 'Wait time' value between 1 and 120 seconds for the Asterisk server '%s'" % server.name))
  88. if server.extension_priority < 1:
  89. raise osv.except_osv(_('Error :'), _("The 'extension priority' must be a positive value for the Asterisk server '%s'" % server.name))
  90. if server.port > 65535 or server.port < 1:
  91. raise osv.except_osv(_('Error :'), _("You should set a TCP port between 1 and 65535 for the Asterisk server '%s'" % server.name))
  92. if server.number_of_digits_to_match_from_end > 20 or server.number_of_digits_to_match_from_end < 1:
  93. raise osv.except_osv(_('Error :'), _("You should set a 'Number of digits to match from end' between 1 and 20 for the Asterisk server '%s'" % server.name))
  94. for check_string in [dialplan_context, alert_info, login, password]:
  95. if check_string[1]:
  96. try:
  97. string = check_string[1].encode('ascii')
  98. except UnicodeEncodeError:
  99. raise osv.except_osv(_('Error :'), _("The '%s' should only have ASCII caracters for the Asterisk server '%s'" % (check_string[0], server.name)))
  100. return True
  101. _constraints = [
  102. (_check_validity, "Error message in raise", ['out_prefix', 'country_prefix', 'national_prefix', 'international_prefix', 'wait_time', 'extension_priority', 'port', 'context', 'alert_info', 'login', 'password', 'number_of_digits_to_match_from_end']),
  103. ]
  104. def _reformat_number(self, cr, uid, erp_number, ast_server, context=None):
  105. '''
  106. This function is dedicated to the transformation of the number
  107. available in OpenERP to the number that Asterisk should dial.
  108. You may have to inherit this function in another module specific
  109. for your company if you are not happy with the way I reformat
  110. the OpenERP numbers.
  111. '''
  112. error_title_msg = _("Invalid phone number")
  113. invalid_international_format_msg = _("The phone number is not written in valid international format. Example of valid international format : +33 1 41 98 12 42")
  114. invalid_national_format_msg = _("The phone number is not written in valid national format.")
  115. invalid_format_msg = _("The phone number is not written in valid format.")
  116. # Let's call the variable tmp_number now
  117. tmp_number = erp_number
  118. _logger.debug('Number before reformat = %s' % tmp_number)
  119. # Check if empty
  120. if not tmp_number:
  121. raise osv.except_osv(error_title_msg, invalid_format_msg)
  122. # Before starting to use prefix, we convert empty prefix whose value
  123. # is False to an empty string
  124. country_prefix = ast_server.country_prefix or ''
  125. national_prefix = ast_server.national_prefix or ''
  126. international_prefix = ast_server.international_prefix or ''
  127. out_prefix = ast_server.out_prefix or ''
  128. # Maybe one day we will use
  129. # phonenumbers.format_out_of_country_calling_number(phonenumbers.parse('<phone_number_e164', None), 'FR')
  130. # The country code seems to be OK with the ones of OpenERP
  131. # But it returns sometimes numbers with '-'... we have to investigate this first
  132. # International format
  133. if tmp_number[0] != '+':
  134. raise # This should never happen
  135. # Remove the starting '+' of the number
  136. tmp_number = tmp_number.replace('+','')
  137. _logger.debug('Number after removal of special char = %s' % tmp_number)
  138. # At this stage, 'tmp_number' should only contain digits
  139. if not tmp_number.isdigit():
  140. raise osv.except_osv(error_title_msg, invalid_format_msg)
  141. _logger.debug('Country prefix = %s' % country_prefix)
  142. if country_prefix == tmp_number[0:len(country_prefix)]:
  143. # If the number is a national number,
  144. # remove 'my country prefix' and add 'national prefix'
  145. tmp_number = (national_prefix) + tmp_number[len(country_prefix):len(tmp_number)]
  146. _logger.debug('National prefix = %s - Number with national prefix = %s' % (national_prefix, tmp_number))
  147. else:
  148. # If the number is an international number,
  149. # add 'international prefix'
  150. tmp_number = international_prefix + tmp_number
  151. _logger.debug('International prefix = %s - Number with international prefix = %s' % (international_prefix, tmp_number))
  152. # Add 'out prefix' to all numbers
  153. tmp_number = out_prefix + tmp_number
  154. _logger.debug('Out prefix = %s - Number to be sent to Asterisk = %s' % (out_prefix, tmp_number))
  155. return tmp_number
  156. # TODO : one day, we will use phonenumbers.format_out_of_country_calling_number() ?
  157. # if yes, then we can trash the fields international_prefix, national_prefix
  158. # country_prefix and this kind of code
  159. def _convert_number_to_international_format(self, cr, uid, number, ast_server, context=None):
  160. '''Convert the number presented by the phone network to a number
  161. in international format e.g. +33141981242'''
  162. if number and number.isdigit() and len(number) > 5:
  163. if ast_server.international_prefix and number[0:len(ast_server.international_prefix)] == ast_server.international_prefix:
  164. number = number[len(ast_server.international_prefix):]
  165. number = '+' + number
  166. elif ast_server.national_prefix and number[0:len(ast_server.national_prefix)] == ast_server.national_prefix:
  167. number = number[len(ast_server.national_prefix):]
  168. number = '+' + ast_server.country_prefix + number
  169. return number
  170. def _get_asterisk_server_from_user(self, cr, uid, context=None):
  171. '''Returns an asterisk.server browse object'''
  172. # We check if the user has an Asterisk server configured
  173. user = self.pool['res.users'].browse(cr, uid, uid, context=context)
  174. if user.asterisk_server_id.id:
  175. ast_server = user.asterisk_server_id
  176. else:
  177. asterisk_server_ids = self.search(cr, uid, [('company_id', '=', user.company_id.id)], context=context)
  178. # If no asterisk server is configured on the user, we take the first one
  179. if not asterisk_server_ids:
  180. raise osv.except_osv(_('Error :'), _("No Asterisk server configured for the company '%s'.") % user.company_id.name)
  181. else:
  182. ast_server = self.browse(cr, uid, asterisk_server_ids[0], context=context)
  183. return ast_server
  184. def _connect_to_asterisk(self, cr, uid, context=None):
  185. '''
  186. Open the connection to the asterisk manager
  187. Returns an instance of the Asterisk Manager
  188. '''
  189. user = self.pool['res.users'].browse(cr, uid, uid, context=context)
  190. # Note : if I write 'Error' without ' :', it won't get translated...
  191. # I don't understand why !
  192. ast_server = self._get_asterisk_server_from_user(cr, uid, context=context)
  193. # We check if the current user has a chan type
  194. if not user.asterisk_chan_type:
  195. raise osv.except_osv(_('Error :'), _('No channel type configured for the current user.'))
  196. # We check if the current user has an internal number
  197. if not user.resource:
  198. raise osv.except_osv(_('Error :'), _('No resource name configured for the current user'))
  199. _logger.debug("User's phone : %s/%s" % (user.asterisk_chan_type, user.resource))
  200. _logger.debug("Asterisk server = %s:%d" % (ast_server.ip_address, ast_server.port))
  201. # Connect to the Asterisk Manager Interface
  202. try:
  203. ast_manager = Manager.Manager((ast_server.ip_address, ast_server.port), ast_server.login, ast_server.password)
  204. except Exception, e:
  205. _logger.error("Error in the Originate request to Asterisk server %s" % ast_server.ip_address)
  206. _logger.error("Here is the detail of the error : %s" % e.strerror)
  207. raise osv.except_osv(_('Error :'), _("Problem in the request from OpenERP to Asterisk. Here is the detail of the error: %s." % e.strerror))
  208. return False
  209. return (user, ast_server, ast_manager)
  210. def _dial_with_asterisk(self, cr, uid, erp_number, context=None):
  211. #print "_dial_with_asterisk erp_number=", erp_number
  212. if not erp_number:
  213. raise osv.except_osv(_('Error :'), "Hara kiri : you must call the function with erp_number")
  214. user, ast_server, ast_manager = self._connect_to_asterisk(cr, uid, context=context)
  215. ast_number = self._reformat_number(cr, uid, erp_number, ast_server, context=context)
  216. # The user should have a CallerID
  217. if not user.callerid:
  218. raise osv.except_osv(_('Error :'), _('No callerID configured for the current user'))
  219. variable = []
  220. if user.asterisk_chan_type == 'SIP':
  221. # We can only have one alert-info header in a SIP request
  222. if user.alert_info:
  223. variable.append('SIPAddHeader=Alert-Info: ' + user.alert_info)
  224. elif ast_server.alert_info:
  225. variable.append('SIPAddHeader=Alert-Info: ' + ast_server.alert_info)
  226. if user.variable:
  227. for user_variable in user.variable.split('|'):
  228. variable.append(user_variable.strip())
  229. try:
  230. ast_manager.Originate(
  231. user.asterisk_chan_type + '/' + user.resource + ( ('/' + user.dial_suffix) if user.dial_suffix else ''),
  232. context = ast_server.context,
  233. extension = ast_number,
  234. priority = str(ast_server.extension_priority),
  235. timeout = str(ast_server.wait_time*1000),
  236. caller_id = user.callerid,
  237. variable = variable)
  238. except Exception, e:
  239. _logger.error("Error in the Originate request to Asterisk server %s" % ast_server.ip_address)
  240. _logger.error("Here is the detail of the error : '%s'" % unicode(e))
  241. raise osv.except_osv(_('Error :'), _("Click to dial with Asterisk failed.\nHere is the error: '%s'" % unicode(e)))
  242. finally:
  243. ast_manager.Logoff()
  244. return True
  245. def _get_calling_number(self, cr, uid, context=None):
  246. user, ast_server, ast_manager = self._connect_to_asterisk(cr, uid, context=context)
  247. calling_party_number = False
  248. try:
  249. list_chan = ast_manager.Status()
  250. #from pprint import pprint
  251. #pprint(list_chan)
  252. _logger.debug("Result of Status AMI request: %s", list_chan)
  253. for chan in list_chan.values():
  254. sip_account = user.asterisk_chan_type + '/' + user.resource
  255. if chan.get('ChannelState') == '4' and chan.get('ConnectedLineNum') == user.internal_number: # 4 = Ring
  256. _logger.debug("Found a matching Event in 'Ring' state")
  257. calling_party_number = chan.get('CallerIDNum')
  258. break
  259. if chan.get('ChannelState') == '6' and sip_account in chan.get('BridgedChannel', ''): # 6 = Up
  260. _logger.debug("Found a matching Event in 'Up' state")
  261. calling_party_number = chan.get('CallerIDNum')
  262. break
  263. except Exception, e:
  264. _logger.error("Error in the Status request to Asterisk server %s" % ast_server.ip_address)
  265. _logger.error("Here is the detail of the error : '%s'" % unicode(e))
  266. raise osv.except_osv(_('Error :'), _("Can't get calling number from Asterisk.\nHere is the error: '%s'" % unicode(e)))
  267. finally:
  268. ast_manager.Logoff()
  269. _logger.debug("The calling party number is '%s'" % calling_party_number)
  270. return calling_party_number
  271. # Parameters specific for each user
  272. class res_users(osv.osv):
  273. _inherit = "res.users"
  274. _columns = {
  275. 'internal_number': fields.char('Internal number', size=15,
  276. help="User's internal phone number."),
  277. 'dial_suffix': fields.char('User-specific dial suffix', size=15,
  278. help="User-specific dial suffix such as aa=2wb for SCCP auto answer."),
  279. 'callerid': fields.char('Caller ID', size=50,
  280. help="Caller ID used for the calls initiated by this user."),
  281. # You'd probably think : Asterisk should reuse the callerID of sip.conf !
  282. # But it cannot, cf http://lists.digium.com/pipermail/asterisk-users/2012-January/269787.html
  283. 'asterisk_chan_type': fields.selection([
  284. ('SIP', 'SIP'),
  285. ('IAX2', 'IAX2'),
  286. ('DAHDI', 'DAHDI'),
  287. ('Zap', 'Zap'),
  288. ('Skinny', 'Skinny'),
  289. ('MGCP', 'MGCP'),
  290. ('mISDN', 'mISDN'),
  291. ('H323', 'H323'),
  292. ('SCCP', 'SCCP'),
  293. ], 'Asterisk channel type',
  294. help="Asterisk channel type, as used in the Asterisk dialplan. If the user has a regular IP phone, the channel type is 'SIP'."),
  295. 'resource': fields.char('Resource name', size=64,
  296. help="Resource name for the channel type selected. For example, if you use 'Dial(SIP/phone1)' in your Asterisk dialplan to ring the SIP phone of this user, then the resource name for this user is 'phone1'. For a SIP phone, the phone number is often used as resource name, but not always."),
  297. 'alert_info': fields.char('User-specific Alert-Info SIP header', size=255, help="Set a user-specific Alert-Info header in SIP request to user's IP Phone for the click2dial feature. If empty, the Alert-Info header will not be added. You can use it to have a special ring tone for click2dial (a silent one !) or to activate auto-answer for example."),
  298. 'variable': fields.char('User-specific Variable', size=255, help="Set a user-specific 'Variable' field in the Asterisk Manager Interface 'originate' request for the click2dial feature. If you want to have several variable headers, separate them with '|'."),
  299. 'asterisk_server_id': fields.many2one('asterisk.server', 'Asterisk server',
  300. help="Asterisk server on which the user's phone is connected. If you leave this field empty, it will use the first Asterisk server of the user's company."),
  301. }
  302. _defaults = {
  303. 'asterisk_chan_type': 'SIP',
  304. }
  305. def _check_validity(self, cr, uid, ids):
  306. for user in self.browse(cr, uid, ids):
  307. for check_string in [('Resource name', user.resource), ('Internal number', user.internal_number), ('Caller ID', user.callerid)]:
  308. if check_string[1]:
  309. try:
  310. plom = check_string[1].encode('ascii')
  311. except UnicodeEncodeError:
  312. raise osv.except_osv(_('Error :'), _("The '%s' for the user '%s' should only have ASCII caracters" % (check_string[0], user.name)))
  313. return True
  314. _constraints = [
  315. (_check_validity, "Error message in raise", ['resource', 'internal_number', 'callerid']),
  316. ]
  317. class res_partner(osv.osv):
  318. _inherit = "res.partner"
  319. def _format_phonenumber_to_e164(self, cr, uid, ids, name, arg, context=None):
  320. result = {}
  321. for partner in self.read(cr, uid, ids, ['phone', 'mobile', 'fax'], context=context):
  322. result[partner['id']] = {}
  323. for fromfield, tofield in [('phone', 'phone_e164'), ('mobile', 'mobile_e164'), ('fax', 'fax_e164')]:
  324. if not partner.get(fromfield):
  325. res = False
  326. else:
  327. try:
  328. res = phonenumbers.format_number(phonenumbers.parse(partner.get(fromfield), None), phonenumbers.PhoneNumberFormat.E164)
  329. except Exception, e:
  330. _logger.error("Cannot reformat the phone number '%s' to E.164 format. Error message: %s" % (partner.get(fromfield), e))
  331. _logger.error("You should fix this number and run the wizard 'Reformat all phone numbers' from the menu Settings > Configuration > Asterisk")
  332. # If I raise an exception here, it won't be possible to install
  333. # the module on a DB with bad phone numbers
  334. #raise osv.except_osv(_('Error :'), _("Cannot reformat the phone number '%s' to E.164 format. Error message: %s" % (partner.get(fromfield), e)))
  335. res = False
  336. result[partner['id']][tofield] = res
  337. #print "RESULT _format_phonenumber_to_e164", result
  338. return result
  339. _columns = {
  340. 'phone_e164': fields.function(_format_phonenumber_to_e164, type='char', size=64, string='Phone in E.164 format', readonly=True, multi="e164", store={
  341. 'res.partner': (lambda self, cr, uid, ids, c={}: ids, ['phone'], 10),
  342. }),
  343. 'mobile_e164': fields.function(_format_phonenumber_to_e164, type='char', size=64, string='Mobile in E.164 format', readonly=True, multi="e164", store={
  344. 'res.partner': (lambda self, cr, uid, ids, c={}: ids, ['mobile'], 10),
  345. }),
  346. 'fax_e164': fields.function(_format_phonenumber_to_e164, type='char', size=64, string='Fax in E.164 format', readonly=True, multi="e164", store={
  347. 'res.partner': (lambda self, cr, uid, ids, c={}: ids, ['fax'], 10),
  348. }),
  349. }
  350. def _reformat_phonenumbers(self, cr, uid, vals, context=None):
  351. """Reformat phone numbers in international format i.e. +33141981242"""
  352. phonefields = ['phone', 'fax', 'mobile']
  353. if any([vals.get(field) for field in phonefields]):
  354. user = self.pool['res.users'].browse(cr, uid, uid, context=context)
  355. # country_id on res.company is a fields.function that looks at
  356. # company_id.partner_id.addres(default).country_id
  357. if user.company_id.country_id:
  358. user_countrycode = user.company_id.country_id.code
  359. else:
  360. # We need to raise an exception here because, if we pass None as second arg of phonenumbers.parse(), it will raise an exception when you try to enter a phone number in national format... so it's better to raise the exception here
  361. raise osv.except_osv(_('Error :'), _("You should set a country on the company '%s'" % user.company_id.name))
  362. #print "user_countrycode=", user_countrycode
  363. for field in phonefields:
  364. if vals.get(field):
  365. try:
  366. res_parse = phonenumbers.parse(vals.get(field), user_countrycode)
  367. except Exception, e:
  368. raise osv.except_osv(_('Error :'), _("Cannot reformat the phone number '%s' to international format. Error message: %s" % (vals.get(field), e)))
  369. #print "res_parse=", res_parse
  370. vals[field] = phonenumbers.format_number(res_parse, phonenumbers.PhoneNumberFormat.INTERNATIONAL)
  371. return vals
  372. def create(self, cr, uid, vals, context=None):
  373. vals_reformated = self._reformat_phonenumbers(cr, uid, vals, context=context)
  374. return super(res_partner, self).create(cr, uid, vals_reformated, context=context)
  375. def write(self, cr, uid, ids, vals, context=None):
  376. vals_reformated = self._reformat_phonenumbers(cr, uid, vals, context=context)
  377. return super(res_partner, self).write(cr, uid, ids, vals_reformated, context=context)
  378. def dial(self, cr, uid, ids, phone_field=['phone', 'phone_e164'], context=None):
  379. '''Read the number to dial and call _connect_to_asterisk the right way'''
  380. erp_number_read = self.read(cr, uid, ids[0], phone_field, context=context)
  381. erp_number_e164 = erp_number_read[phone_field[1]]
  382. erp_number_display = erp_number_read[phone_field[0]]
  383. # Check if the number to dial is not empty
  384. if not erp_number_display:
  385. raise osv.except_osv(_('Error :'), _('There is no phone number !'))
  386. elif erp_number_display and not erp_number_e164:
  387. raise osv.except_osv(_('Error :'), _("The phone number isn't stored in the standard E.164 format. Try to run the wizard 'Reformat all phone numbers' from the menu Settings > Configuration > Asterisk."))
  388. return self.pool['asterisk.server']._dial_with_asterisk(cr, uid, erp_number_e164, context=context)
  389. def action_dial_phone(self, cr, uid, ids, context=None):
  390. '''Function called by the button 'Dial' next to the 'phone' field
  391. in the partner view'''
  392. return self.dial(cr, uid, ids, phone_field=['phone', 'phone_e164'], context=context)
  393. def action_dial_mobile(self, cr, uid, ids, context=None):
  394. '''Function called by the button 'Dial' next to the 'mobile' field
  395. in the partner view'''
  396. return self.dial(cr, uid, ids, phone_field=['mobile', 'mobile_e164'], context=context)
  397. def get_name_from_phone_number(self, cr, uid, number, context=None):
  398. '''Function to get name from phone number. Usefull for use from Asterisk
  399. to add CallerID name to incoming calls.
  400. The "scripts/" subdirectory of this module has an AGI script that you can
  401. install on your Asterisk IPBX : the script will be called from the Asterisk
  402. dialplan via the AGI() function and it will use this function via an XML-RPC
  403. request.
  404. '''
  405. res = self.get_partner_from_phone_number(cr, uid, number, context=context)
  406. if res:
  407. return res[2]
  408. else:
  409. return False
  410. def get_partner_from_phone_number(self, cr, uid, presented_number, context=None):
  411. # We check that "number" is really a number
  412. _logger.debug(u"Call get_name_from_phone_number with number = %s" % presented_number)
  413. if not isinstance(presented_number, (str, unicode)):
  414. _logger.warning(u"Number '%s' should be a 'str' or 'unicode' but it is a '%s'" % (presented_number, type(presented_number)))
  415. return False
  416. if not presented_number.isdigit():
  417. _logger.warning(u"Number '%s' should only contain digits." % presented_number)
  418. return False
  419. ast_server = self.pool['asterisk.server']._get_asterisk_server_from_user(cr, uid, context=context)
  420. nr_digits_to_match_from_end = ast_server.number_of_digits_to_match_from_end
  421. if len(presented_number) >= nr_digits_to_match_from_end:
  422. end_number_to_match = presented_number[-nr_digits_to_match_from_end:len(presented_number)]
  423. else:
  424. end_number_to_match = presented_number
  425. _logger.debug("Will search phone and mobile numbers in res.partner ending with '%s'" % end_number_to_match)
  426. # We try to match a phone or mobile number with the same end
  427. pg_seach_number = str('%' + end_number_to_match)
  428. res_ids = self.search(cr, uid, ['|', ('phone_e164', 'ilike', pg_seach_number), ('mobile_e164', 'ilike', pg_seach_number)], context=context)
  429. # TODO : use is_number_match() of the phonenumber lib ?
  430. if len(res_ids) > 1:
  431. _logger.warning(u"There are several partners (IDS = %s) with a phone number ending with '%s'" % (str(res_ids), end_number_to_match))
  432. if res_ids:
  433. entry = self.read(cr, uid, res_ids[0], ['name', 'parent_id'], context=context)
  434. _logger.debug(u"Answer get_partner_from_phone_number with name = %s" % entry['name'])
  435. return (entry['id'], entry['parent_id'] and entry['parent_id'][0] or False, entry['name'])
  436. else:
  437. _logger.debug(u"No match for end of phone number '%s'" % end_number_to_match)
  438. return False
  439. # This module supports multi-company
  440. class res_company(osv.osv):
  441. _inherit = "res.company"
  442. _columns = {
  443. 'asterisk_server_ids': fields.one2many('asterisk.server', 'company_id', 'Asterisk servers', help="List of Asterisk servers.")
  444. }