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.
 
 
 
 
 

172 lines
7.4 KiB

# -*- coding: utf-8 -*-
###################################################################################
#
# Cybrosys Technologies Pvt. Ltd.
#
# Author: Nilmar Shereef (<shereef@cybrosys.in>)
# Copyright (C) 2018-TODAY Cybrosys Technologies (<https://www.cybrosys.com>).
#
# This program is free software: you can modify
# it under the terms of the GNU Affero General Public License (AGPL) as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
###################################################################################
import logging
_logger = logging.getLogger(__name__)
try:
import mechanize
from linkedin import linkedin
from urllib.request import HTTPRedirectHandler as MechanizeRedirectHandler
except ImportError:
_logger.error('Odoo module hr_linkedin_recruitment depends on the several external python package'
'Please read the doc/requirement.txt file inside the module.')
import requests
import mechanicalsoup
import json
from urllib.parse import urlsplit
from urllib.parse import parse_qs
from urllib.parse import urlparse
from odoo import models, fields, api, _
from odoo.exceptions import ValidationError, Warning
import builtins as exceptions
class HrJobShare(models.Model):
_inherit = 'hr.job'
update_key = fields.Char(string='Update Key', readonly=True)
@api.multi
def share_linkedin(self):
""" Button function for sharing post """
credential_dict = self.get_authorize()
access_token = credential_dict['access_token']
li_credential = credential_dict['li_credential']
share_data = {
"author": "urn:li:person:"+li_credential['profile_urn'],
"lifecycleState": "PUBLISHED",
"specificContent": {
"com.linkedin.ugc.ShareContent": {
"shareCommentary": {
"text": self.description
},
"shareMediaCategory": "NONE"
}
},
"visibility": {
"com.linkedin.ugc.MemberNetworkVisibility": "PUBLIC"
}
}
# URLS
page_share_url = 'https://api.linkedin.com/v2/ugcPosts'
if self.description:
response = self.share_request('POST', page_share_url, access_token, data=json.dumps(share_data))
share_response_text = response.json()
share_response_code = response.status_code
if share_response_code == 201:
self.update_key = True
elif share_response_code == 404:
raise Warning("Resource does not exist.!")
elif share_response_code == 409:
raise Warning("Already shared!")
else:
raise Warning("Error!! Check your connection...")
else:
raise Warning("Provide a Job description....")
def share_request(self, method, page_share_url, access_token, data):
""" Function will return UPDATED KEY , [201] if sharing is OK """
headers = {'x-li-format': 'json', 'Content-Type': 'application/json'}
params = {}
params.update({'oauth2_access_token': access_token})
kw = dict(data=data, params=params, headers=headers, timeout=60)
req_response = requests.request(method.upper(), page_share_url, **kw)
return req_response
def get_urn(self, method, has_access_url, access_token):
""" Function will return TRUE if credentials user has the access to update """
headers = {'x-li-format': 'json', 'Content-Type': 'application/json'}
params = {}
params.update({'oauth2_access_token': access_token})
kw = dict(params=params, headers=headers, timeout=60)
req_response = requests.request(method.upper(), has_access_url, **kw)
return req_response
def get_authorize(self):
""" Supporting function for authenticating operations """
li_credential = {}
linkedin_auth_provider = self.env.ref('hr_linkedin_recruitment.provider_linkedin')
if linkedin_auth_provider.client_id and linkedin_auth_provider.client_secret:
li_credential['api_key'] = linkedin_auth_provider.client_id
li_credential['secret_key'] = linkedin_auth_provider.client_secret
else:
raise ValidationError(_('LinkedIn Access Credentials are empty.!\n'
'Please fill up in Auth Provider form.'))
if self.env['ir.config_parameter'].sudo().get_param('recruitment.li_username'):
li_credential['un'] = self.env['ir.config_parameter'].sudo().get_param('recruitment.li_username')
else:
raise exceptions.Warning(_('Please fill up username in LinkedIn Credential settings.'))
if self.env['ir.config_parameter'].sudo().get_param('recruitment.li_password'):
li_credential['pw'] = self.env['ir.config_parameter'].sudo().get_param('recruitment.li_password')
else:
raise exceptions.Warning(_('Please fill up password in LinkedIn Credential settings.'))
# Browser Data Posting And Signing
br = mechanicalsoup.StatefulBrowser()
br.set_cookiejar(mechanize.CookieJar())
return_uri = self.env['ir.config_parameter'].sudo().get_param('web.base.url')
li_permissions = ['r_liteprofile', 'r_emailaddress', 'w_share', 'rw_company_admin', 'w_member_social']
auth = linkedin.LinkedInAuthentication(li_credential['api_key'],
li_credential['secret_key'],
return_uri,
li_permissions)
try:
br.open(auth.authorization_url)
br.select_form(selector='form', nr=0)
br['session_key'] = li_credential['un']
br['session_password'] = li_credential['pw']
br.submit_selected()
try:
auth.authorization_code = parse_qs(urlsplit(br.get_url()).query)['code']
except:
br.open(br.get_url())
br.select_form(selector='form', nr=1)
q = br.submit_selected()
auth.authorization_code = parse_qs(urlsplit(br.get_url()).query)['code']
if not auth.authorization_code:
raise Warning("Please check Redirect URLs in the LinkedIn app settings!")
except:
raise Warning("Please check Redirect URLs in the LinkedIn app settings!")
li_suit_credent = {}
li_suit_credent['access_token'] = str(auth.get_access_token().access_token)
member_url = 'https://api.linkedin.com/v2/me'
response = self.get_urn('GET', member_url, li_suit_credent['access_token'])
urn_response_text = response.json()
li_credential['profile_urn'] = urn_response_text['id']
li_suit_credent['li_credential'] = li_credential
return li_suit_credent