本文整理汇总了Python中voter.models.VoterManager.retrieve_voter_from_voter_device_id方法的典型用法代码示例。如果您正苦于以下问题:Python VoterManager.retrieve_voter_from_voter_device_id方法的具体用法?Python VoterManager.retrieve_voter_from_voter_device_id怎么用?Python VoterManager.retrieve_voter_from_voter_device_id使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类voter.models.VoterManager
的用法示例。
在下文中一共展示了VoterManager.retrieve_voter_from_voter_device_id方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: facebook_disconnect_for_api
# 需要导入模块: from voter.models import VoterManager [as 别名]
# 或者: from voter.models.VoterManager import retrieve_voter_from_voter_device_id [as 别名]
def facebook_disconnect_for_api(voter_device_id): # facebookDisconnect
"""
:param voter_device_id:
:return:
"""
# Get voter_id from the voter_device_id
results = is_voter_device_id_valid(voter_device_id)
if not results['success']:
results = {
'success': False,
'status': "VALID_VOTER_DEVICE_ID_MISSING",
'voter_device_id': voter_device_id,
}
return results
voter_manager = VoterManager()
results = voter_manager.retrieve_voter_from_voter_device_id(voter_device_id)
if not positive_value_exists(results['voter_found']):
results = {
'success': False,
'status': "VALID_VOTER_MISSING",
'voter_device_id': voter_device_id,
}
return results
voter = results['voter']
facebook_id = 0
results = voter_manager.save_facebook_user_values(voter, facebook_id)
status = results['status']
success = results['success']
if success:
results = {
'success': True,
'status': status,
'voter_device_id': voter_device_id,
}
else:
results = {
'success': False,
'status': status,
'voter_device_id': voter_device_id,
}
return results
示例2: login_user
# 需要导入模块: from voter.models import VoterManager [as 别名]
# 或者: from voter.models.VoterManager import retrieve_voter_from_voter_device_id [as 别名]
def login_user(request):
"""
This method is called when you login from the /login/ form
:param request:
:return:
"""
voter_api_device_id = get_voter_api_device_id(request) # We look in the cookies for voter_api_device_id
store_new_voter_api_device_id_in_cookie = False
voter_signed_in = False
voter_manager = VoterManager()
voter_device_link_manager = VoterDeviceLinkManager()
results = voter_manager.retrieve_voter_from_voter_device_id(voter_api_device_id)
if results['voter_found']:
voter_on_stage = results['voter']
voter_on_stage_id = voter_on_stage.id
# Just because a We Vote voter is found doesn't mean they are authenticated for Django
else:
voter_on_stage_id = 0
info_message = ''
error_message = ''
username = ''
# Does Django think user is already signed in?
if request.user.is_authenticated():
# If so, make sure user and voter_on_stage are the same.
if request.user.id != voter_on_stage_id:
# Delete the prior voter_api_device_id from database
voter_device_link_manager.delete_voter_device_link(voter_api_device_id)
# Create a new voter_api_device_id and voter_device_link
voter_api_device_id = generate_voter_device_id()
results = voter_device_link_manager.save_new_voter_device_link(voter_api_device_id, request.user.id)
store_new_voter_api_device_id_in_cookie = results['voter_device_link_created']
voter_on_stage = request.user
voter_on_stage_id = voter_on_stage.id
elif request.POST:
username = request.POST.get('username')
password = request.POST.get('password')
user = authenticate(username=username, password=password)
if user is not None:
if user.is_active:
login(request, user)
info_message = "You're successfully logged in!"
# Delete the prior voter_api_device_id from database
voter_device_link_manager.delete_voter_device_link(voter_api_device_id)
# Create a new voter_api_device_id and voter_device_link
voter_api_device_id = generate_voter_device_id()
results = voter_device_link_manager.save_new_voter_device_link(voter_api_device_id, user.id)
store_new_voter_api_device_id_in_cookie = results['voter_device_link_created']
else:
error_message = "Your account is not active, please contact the site admin."
if user.id != voter_on_stage_id:
# Eventually we want to merge voter_on_stage into user account
pass
else:
error_message = "Your username and/or password were incorrect."
elif not positive_value_exists(voter_on_stage_id):
# If here, delete the prior voter_api_device_id from database
voter_device_link_manager.delete_voter_device_link(voter_api_device_id)
# We then need to set a voter_api_device_id cookie and create a new voter (even though not signed in)
results = voter_setup(request)
voter_api_device_id = results['voter_api_device_id']
store_new_voter_api_device_id_in_cookie = results['store_new_voter_api_device_id_in_cookie']
# Does Django think user is signed in?
if request.user.is_authenticated():
voter_signed_in = True
else:
info_message = "Please log in below..."
if positive_value_exists(error_message):
messages.add_message(request, messages.ERROR, error_message)
if positive_value_exists(info_message):
messages.add_message(request, messages.INFO, info_message)
messages_on_stage = get_messages(request)
template_values = {
'request': request,
'username': username,
'next': next,
'voter_signed_in': voter_signed_in,
'messages_on_stage': messages_on_stage,
}
response = render(request, 'registration/login_user.html', template_values)
# We want to store the voter_api_device_id cookie if it is new
if positive_value_exists(voter_api_device_id) and positive_value_exists(store_new_voter_api_device_id_in_cookie):
set_voter_api_device_id(request, response, voter_api_device_id)
return response
示例3: twitter_sign_in_request_voter_info_for_api
# 需要导入模块: from voter.models import VoterManager [as 别名]
# 或者: from voter.models.VoterManager import retrieve_voter_from_voter_device_id [as 别名]
def twitter_sign_in_request_voter_info_for_api(voter_device_id, return_url, switch_accounts_if_needed=True):
"""
twitterSignInRequestVoterInfo
When here, the incoming voter_device_id should already be authenticated
:param voter_device_id:
:param return_url: Where to return the browser when sign in process is complete
:param switch_accounts_if_needed:
:return:
"""
twitter_handle = ''
twitter_handle_found = False
tweepy_user_object = None
twitter_user_object_found = False
voter_info_retrieved = False
switch_accounts = False
# Get voter_id from the voter_device_id
results = is_voter_device_id_valid(voter_device_id)
if not results['success']:
results = {
'success': False,
'status': "VALID_VOTER_DEVICE_ID_MISSING",
'voter_device_id': voter_device_id,
'twitter_handle': twitter_handle,
'twitter_handle_found': twitter_handle_found,
'voter_info_retrieved': voter_info_retrieved,
'switch_accounts': switch_accounts,
'return_url': return_url,
}
return results
voter_manager = VoterManager()
results = voter_manager.retrieve_voter_from_voter_device_id(voter_device_id)
if not positive_value_exists(results['voter_found']):
results = {
'status': "VALID_VOTER_MISSING",
'success': False,
'voter_device_id': voter_device_id,
'twitter_handle': twitter_handle,
'twitter_handle_found': twitter_handle_found,
'voter_info_retrieved': voter_info_retrieved,
'switch_accounts': switch_accounts,
'return_url': return_url,
}
return results
voter = results['voter']
auth = tweepy.OAuthHandler(TWITTER_CONSUMER_KEY, TWITTER_CONSUMER_SECRET)
auth.set_access_token(voter.twitter_access_token, voter.twitter_access_secret)
api = tweepy.API(auth)
try:
tweepy_user_object = api.me()
twitter_json = tweepy_user_object._json
success = True
status = 'TWITTER_SIGN_IN_REQUEST_VOTER_INFO_SUCCESSFUL'
twitter_handle = tweepy_user_object.screen_name
twitter_handle_found = True
twitter_user_object_found = True
except tweepy.RateLimitError:
success = False
status = 'TWITTER_SIGN_IN_REQUEST_VOTER_INFO_RATE_LIMIT_ERROR'
except tweepy.error.TweepError as error_instance:
success = False
status = 'TWITTER_SIGN_IN_REQUEST_VOTER_INFO_TWEEPY_ERROR: '
error_tuple = error_instance.args
for error_dict in error_tuple:
for one_error in error_dict:
status += '[' + one_error['message'] + '] '
if twitter_user_object_found:
# We need to deal with these cases
# 1) Does account already exist?
results = voter_manager.retrieve_voter_by_twitter_id(tweepy_user_object.id)
if results['voter_found'] and switch_accounts_if_needed:
voter_found_with_twitter_id = results['voter']
switch_accounts = True
# Relink this voter_device_id to the original account
voter_device_manager = VoterDeviceLinkManager()
voter_device_link_results = voter_device_manager.retrieve_voter_device_link(voter_device_id)
voter_device_link = voter_device_link_results['voter_device_link']
update_voter_device_link_results = voter_device_manager.update_voter_device_link(
voter_device_link, voter_found_with_twitter_id)
if update_voter_device_link_results['voter_device_link_updated']:
# Transfer access token and secret
voter_found_with_twitter_id.twitter_access_token = voter.twitter_access_token
voter_found_with_twitter_id.twitter_access_secret = voter.twitter_access_secret
voter_found_with_twitter_id.save()
status += "TWITTER_SIGN_IN-ALREADY_LINKED_TO_OTHER_ACCOUNT-TRANSFERRED "
success = True
save_user_results = voter_manager.save_twitter_user_values(voter_found_with_twitter_id,
#.........这里部分代码省略.........
示例4: twitter_sign_in_request_access_token_for_api
# 需要导入模块: from voter.models import VoterManager [as 别名]
# 或者: from voter.models.VoterManager import retrieve_voter_from_voter_device_id [as 别名]
def twitter_sign_in_request_access_token_for_api(voter_device_id,
incoming_request_token, incoming_oauth_verifier,
return_url):
"""
twitterSignInRequestAccessToken
After signing in and agreeing to the application's terms, the user is redirected back to the application with
the same request token and another value, this time the OAuth verifier.
Within this function we use
1) the request token and
2) request secret along with the
3) OAuth verifier to get an access token, also from Twitter.
:param voter_device_id:
:param incoming_request_token:
:param incoming_oauth_verifier:
:param return_url: If a value is provided, return to this URL when the whole process is complete
:return:
"""
# Get voter_id from the voter_device_id
results = is_voter_device_id_valid(voter_device_id)
if not results['success']:
results = {
'success': False,
'status': "VALID_VOTER_DEVICE_ID_MISSING",
'voter_device_id': voter_device_id,
'access_token_and_secret_returned': False,
'return_url': return_url,
}
return results
voter_manager = VoterManager()
results = voter_manager.retrieve_voter_from_voter_device_id(voter_device_id)
if not positive_value_exists(results['voter_found']):
results = {
'status': "VALID_VOTER_MISSING",
'success': False,
'voter_device_id': voter_device_id,
'access_token_and_secret_returned': False,
'return_url': return_url,
}
return results
voter = results['voter']
if not voter.twitter_request_token == incoming_request_token:
results = {
'status': "TWITTER_REQUEST_TOKEN_DOES_NOT_MATCH_STORED_VOTER_VALUE",
'success': False,
'voter_device_id': voter_device_id,
'access_token_and_secret_returned': False,
'return_url': return_url,
}
return results
twitter_access_token = ''
twitter_access_token_secret = ''
try:
# We take the Request Token, Request Secret, and OAuth Verifier and request an access_token
auth = tweepy.OAuthHandler(TWITTER_CONSUMER_KEY, TWITTER_CONSUMER_SECRET)
auth.request_token = {'oauth_token': voter.twitter_request_token,
'oauth_token_secret': voter.twitter_request_secret}
auth.get_access_token(incoming_oauth_verifier)
if positive_value_exists(auth.access_token) and positive_value_exists(auth.access_token_secret):
twitter_access_token = auth.access_token
twitter_access_token_secret = auth.access_token_secret
except tweepy.RateLimitError:
success = False
status = 'TWITTER_RATE_LIMIT_ERROR'
except tweepy.error.TweepError as error_instance:
success = False
status = 'TWITTER_SIGN_IN_REQUEST_ACCESS_TOKEN: '
error_tuple = error_instance.args
for error_dict in error_tuple:
count = 0
# for one_error in error_dict:
# status += '[' + one_error[count] + '] '
# count += 1
try:
# We save these values in the Voter table
if positive_value_exists(twitter_access_token) and positive_value_exists(twitter_access_token_secret):
voter.twitter_access_token = twitter_access_token
voter.twitter_access_secret = twitter_access_token_secret
voter.save()
success = True
status = "TWITTER_ACCESS_TOKEN_RETRIEVED_AND_SAVED"
else:
success = False
status = "TWITTER_ACCESS_TOKEN_NOT_RETRIEVED"
except Exception as e:
success = False
status = "TWITTER_ACCESS_TOKEN_NOT_SAVED"
if success:
results = {
'status': status,
'success': True,
'voter_device_id': voter_device_id,
#.........这里部分代码省略.........
示例5: twitter_sign_in_start_for_api
# 需要导入模块: from voter.models import VoterManager [as 别名]
# 或者: from voter.models.VoterManager import retrieve_voter_from_voter_device_id [as 别名]
def twitter_sign_in_start_for_api(voter_device_id, return_url): # twitterSignInStart
"""
:param voter_device_id:
:param return_url: Where to direct the browser at the very end of the process
:return:
"""
# Get voter_id from the voter_device_id
results = is_voter_device_id_valid(voter_device_id)
if not results['success']:
results = {
'success': False,
'status': "VALID_VOTER_DEVICE_ID_MISSING",
'voter_device_id': voter_device_id,
'twitter_redirect_url': '',
'voter_info_retrieved': False,
'switch_accounts': False,
}
return results
voter_manager = VoterManager()
results = voter_manager.retrieve_voter_from_voter_device_id(voter_device_id)
if not positive_value_exists(results['voter_found']):
results = {
'status': "VALID_VOTER_MISSING",
'success': False,
'voter_device_id': voter_device_id,
'twitter_redirect_url': '',
'voter_info_retrieved': False,
'switch_accounts': False,
}
return results
voter = results['voter']
if voter.twitter_access_token and voter.twitter_access_secret:
# If here the voter might already be signed in, so we don't want to ask them to approve again
auth = tweepy.OAuthHandler(TWITTER_CONSUMER_KEY, TWITTER_CONSUMER_SECRET)
auth.set_access_token(voter.twitter_access_token, voter.twitter_access_secret)
api = tweepy.API(auth)
try:
tweepy_user_object = api.me()
success = True
# What is the error situation where the twitter_access_token and twitter_access_secret are no longer valid?
# We need to deal with this (wipe them from the database and rewind to the right place in the process
except tweepy.RateLimitError:
success = False
status = 'TWITTER_RATE_LIMIT_ERROR'
except tweepy.error.TweepError as error_instance:
success = False
status = ''
error_tuple = error_instance.args
for error_dict in error_tuple:
for one_error in error_dict:
status += '[' + one_error['message'] + '] '
if success:
# Reach out to the twitterSignInRequestVoterInfo -- no need to redirect
empty_return_url = ""
voter_info_results = twitter_sign_in_request_voter_info_for_api(voter_device_id, empty_return_url)
success = voter_info_results['success']
status = "SKIPPED_AUTH_DIRECT_REQUEST_VOTER_INFO: " + voter_info_results['status']
results = {
'status': status,
'success': success,
'voter_device_id': voter_device_id,
'twitter_redirect_url': '',
'voter_info_retrieved': voter_info_results['voter_info_retrieved'],
'switch_accounts': voter_info_results['switch_accounts'], # If true, new voter_device_id returned
}
return results
else:
# Somehow reset tokens and start over.
pass
callback_url = WE_VOTE_SERVER_ROOT_URL + "/apis/v1/twitterSignInRequestAccessToken/"
callback_url += "?voter_device_id=" + voter_device_id
callback_url += "&return_url=" + return_url
# This is where
twitter_authorization_url = ''
try:
# We take the Consumer Key and the Consumer Secret, and request a token & token_secret
auth = tweepy.OAuthHandler(TWITTER_CONSUMER_KEY, TWITTER_CONSUMER_SECRET, callback_url)
twitter_authorization_url = auth.get_authorization_url()
request_token_dict = auth.request_token
twitter_request_token = ''
twitter_request_token_secret = ''
if 'oauth_token' in request_token_dict:
twitter_request_token = request_token_dict['oauth_token']
if 'oauth_token_secret' in request_token_dict:
twitter_request_token_secret = request_token_dict['oauth_token_secret']
# We save these values in the Voter table, and then return a twitter_authorization_url where the voter signs in
# Once they sign in to the Twitter login, they are redirected back to the We Vote callback_url
#.........这里部分代码省略.........
示例6: quick_info_text_save_for_api
# 需要导入模块: from voter.models import VoterManager [as 别名]
# 或者: from voter.models.VoterManager import retrieve_voter_from_voter_device_id [as 别名]
def quick_info_text_save_for_api( # TODO to be converted
voter_device_id, quick_info_id, quick_info_we_vote_id,
google_civic_election_id,
office_we_vote_id,
candidate_we_vote_id,
measure_we_vote_id,
statement_text,
statement_html
):
results = is_voter_device_id_valid(voter_device_id)
if not results['success']:
json_data_from_results = results['json_data']
json_data = {
'status': json_data_from_results['status'],
'success': False,
'voter_device_id': voter_device_id,
'quick_info_id': quick_info_id,
'quick_info_we_vote_id': quick_info_we_vote_id,
'new_quick_info_created': False,
'is_support': False,
'is_oppose': False,
'is_information_only': False,
'google_civic_election_id': google_civic_election_id,
'office_we_vote_id': office_we_vote_id,
'candidate_we_vote_id': candidate_we_vote_id,
'measure_we_vote_id': measure_we_vote_id,
'statement_text': statement_text,
'statement_html': statement_html,
'last_updated': '',
}
return HttpResponse(json.dumps(json_data), content_type='application/json')
voter_manager = VoterManager()
voter_results = voter_manager.retrieve_voter_from_voter_device_id(voter_device_id)
voter_id = voter_results['voter_id']
if not positive_value_exists(voter_id):
json_data = {
'status': "VOTER_NOT_FOUND_FROM_VOTER_DEVICE_ID",
'success': False,
'voter_device_id': voter_device_id,
'quick_info_id': quick_info_id,
'quick_info_we_vote_id': quick_info_we_vote_id,
'new_quick_info_created': False,
'is_support': False,
'is_oppose': False,
'is_information_only': False,
'google_civic_election_id': google_civic_election_id,
'office_we_vote_id': office_we_vote_id,
'candidate_we_vote_id': candidate_we_vote_id,
'measure_we_vote_id': measure_we_vote_id,
'statement_text': statement_text,
'statement_html': statement_html,
'last_updated': '',
}
return HttpResponse(json.dumps(json_data), content_type='application/json')
voter = voter_results['voter']
quick_info_id = convert_to_int(quick_info_id)
quick_info_we_vote_id = quick_info_we_vote_id.strip().lower()
existing_unique_identifier_found = positive_value_exists(quick_info_id) \
or positive_value_exists(quick_info_we_vote_id)
new_unique_identifier_found = positive_value_exists(voter_id) \
and positive_value_exists(google_civic_election_id) and (
positive_value_exists(office_we_vote_id) or
positive_value_exists(candidate_we_vote_id) or
positive_value_exists(measure_we_vote_id)
)
unique_identifier_found = existing_unique_identifier_found or new_unique_identifier_found
# We must have these variables in order to create a new entry
required_variables_for_new_entry = positive_value_exists(voter_id) \
and positive_value_exists(google_civic_election_id) and (
positive_value_exists(office_we_vote_id) or
positive_value_exists(candidate_we_vote_id) or
positive_value_exists(measure_we_vote_id)
)
if not unique_identifier_found:
results = {
'status': "QUICK_INFO_REQUIRED_UNIQUE_IDENTIFIER_VARIABLES_MISSING",
'success': False,
'voter_device_id': voter_device_id,
'quick_info_id': quick_info_id,
'quick_info_we_vote_id': quick_info_we_vote_id,
'new_quick_info_created': False,
'is_support': False,
'is_oppose': False,
'is_information_only': False,
'google_civic_election_id': google_civic_election_id,
'office_we_vote_id': office_we_vote_id,
'candidate_we_vote_id': candidate_we_vote_id,
'measure_we_vote_id': measure_we_vote_id,
'statement_text': statement_text,
'statement_html': statement_html,
'last_updated': '',
}
return results
elif not existing_unique_identifier_found and not required_variables_for_new_entry:
results = {
'status': "NEW_QUICK_INFO_REQUIRED_VARIABLES_MISSING",
'success': False,
#.........这里部分代码省略.........
示例7: organization_save_for_api
# 需要导入模块: from voter.models import VoterManager [as 别名]
# 或者: from voter.models.VoterManager import retrieve_voter_from_voter_device_id [as 别名]
def organization_save_for_api(voter_device_id, organization_id, organization_we_vote_id, # organizationSave
organization_name,
organization_email, organization_website,
organization_twitter_handle, organization_facebook, organization_image,
refresh_from_twitter):
organization_id = convert_to_int(organization_id)
organization_we_vote_id = organization_we_vote_id.strip().lower()
# Make sure we are only working with the twitter handle, and not the "https" or "@"
organization_twitter_handle = extract_twitter_handle_from_text_string(organization_twitter_handle)
existing_unique_identifier_found = positive_value_exists(organization_id) \
or positive_value_exists(organization_we_vote_id)
new_unique_identifier_found = positive_value_exists(organization_twitter_handle) \
or positive_value_exists(organization_website)
unique_identifier_found = existing_unique_identifier_found or new_unique_identifier_found
# We must have one of these: twitter_handle or website, AND organization_name
required_variables_for_new_entry = positive_value_exists(organization_twitter_handle) \
or positive_value_exists(organization_website) and positive_value_exists(organization_name)
if not unique_identifier_found:
results = {
'status': "ORGANIZATION_REQUIRED_UNIQUE_IDENTIFIER_VARIABLES_MISSING",
'success': False,
'organization_id': organization_id,
'organization_we_vote_id': organization_we_vote_id,
'new_organization_created': False,
'organization_name': organization_name,
'organization_email': organization_email,
'organization_website': organization_website,
'organization_facebook': organization_facebook,
'organization_photo_url': organization_image,
'organization_twitter_handle': organization_twitter_handle,
'twitter_followers_count': 0,
'twitter_description': "",
'refresh_from_twitter': refresh_from_twitter,
}
return results
elif not existing_unique_identifier_found and not required_variables_for_new_entry:
results = {
'status': "NEW_ORGANIZATION_REQUIRED_VARIABLES_MISSING",
'success': False,
'organization_id': organization_id,
'organization_we_vote_id': organization_we_vote_id,
'new_organization_created': False,
'organization_name': organization_name,
'organization_email': organization_email,
'organization_website': organization_website,
'organization_facebook': organization_facebook,
'organization_photo_url': organization_image,
'organization_twitter_handle': organization_twitter_handle,
'twitter_followers_count': 0,
'twitter_description': "",
'refresh_from_twitter': refresh_from_twitter,
}
return results
organization_manager = OrganizationManager()
save_results = organization_manager.update_or_create_organization(
organization_id=organization_id, we_vote_id=organization_we_vote_id,
organization_website_search=organization_website, organization_twitter_search=organization_twitter_handle,
organization_name=organization_name, organization_website=organization_website,
organization_twitter_handle=organization_twitter_handle, organization_email=organization_email,
organization_facebook=organization_facebook, organization_image=organization_image,
refresh_from_twitter=refresh_from_twitter)
if save_results['success']:
organization = save_results['organization']
status = save_results['status']
# Now update the voter record with the organization_we_vote_id
voter_manager = VoterManager()
voter_results = voter_manager.retrieve_voter_from_voter_device_id(voter_device_id)
if voter_results['voter_found']:
voter = voter_results['voter']
# Does this voter have the same Twitter handle as this organization? If so, link this organization to
# this particular voter
if voter.twitter_screen_name.lower() == organization.organization_twitter_handle.lower():
try:
voter.linked_organization_we_vote_id = organization.we_vote_id
voter.save()
except Exception as e:
status += " UNABLE_TO_UPDATE_VOTER_WITH_ORGANIZATION_WE_VOTE_ID"
# If not, then this is a volunteer or admin setting up an organization
else:
status += " DID_NOT_UPDATE_VOTER_WITH_ORGANIZATION_WE_VOTE_ID-VOTER_DOES_NOT_MATCH_TWITTER_HANDLE"
results = {
'success': save_results['success'],
'status': status,
'voter_device_id': voter_device_id,
'organization_id': organization.id,
'organization_we_vote_id': organization.we_vote_id,
'new_organization_created': save_results['new_organization_created'],
'organization_name':
organization.organization_name if positive_value_exists(organization.organization_name) else '',
'organization_email':
organization.organization_email if positive_value_exists(organization.organization_email) else '',
'organization_website':
organization.organization_website if positive_value_exists(organization.organization_website) else '',
#.........这里部分代码省略.........
示例8: voter_position_comment_save_for_api
# 需要导入模块: from voter.models import VoterManager [as 别名]
# 或者: from voter.models.VoterManager import retrieve_voter_from_voter_device_id [as 别名]
def voter_position_comment_save_for_api(
voter_device_id, position_id, position_we_vote_id,
google_civic_election_id,
office_we_vote_id,
candidate_we_vote_id,
measure_we_vote_id,
statement_text,
statement_html
):
results = is_voter_device_id_valid(voter_device_id)
if not results['success']:
json_data_from_results = results['json_data']
json_data = {
'status': json_data_from_results['status'],
'success': False,
'voter_device_id': voter_device_id,
'position_id': position_id,
'position_we_vote_id': position_we_vote_id,
'new_position_created': False,
'ballot_item_display_name': '',
'speaker_display_name': '',
'speaker_image_url_https': '',
'is_support': False,
'is_oppose': False,
'is_information_only': False,
'google_civic_election_id': google_civic_election_id,
'office_we_vote_id': office_we_vote_id,
'candidate_we_vote_id': candidate_we_vote_id,
'measure_we_vote_id': measure_we_vote_id,
'statement_text': statement_text,
'statement_html': statement_html,
'last_updated': '',
}
return json_data
voter_manager = VoterManager()
voter_results = voter_manager.retrieve_voter_from_voter_device_id(voter_device_id)
voter_id = voter_results['voter_id']
if not positive_value_exists(voter_id):
json_data = {
'status': "VOTER_NOT_FOUND_FROM_VOTER_DEVICE_ID",
'success': False,
'voter_device_id': voter_device_id,
'position_id': position_id,
'position_we_vote_id': position_we_vote_id,
'new_position_created': False,
'ballot_item_display_name': '',
'speaker_display_name': '',
'speaker_image_url_https': '',
'is_support': False,
'is_oppose': False,
'is_information_only': False,
'google_civic_election_id': google_civic_election_id,
'office_we_vote_id': office_we_vote_id,
'candidate_we_vote_id': candidate_we_vote_id,
'measure_we_vote_id': measure_we_vote_id,
'statement_text': statement_text,
'statement_html': statement_html,
'last_updated': '',
}
return json_data
voter = voter_results['voter']
position_id = convert_to_int(position_id)
position_we_vote_id = position_we_vote_id.strip()
existing_unique_identifier_found = positive_value_exists(position_id) \
or positive_value_exists(position_we_vote_id)
new_unique_identifier_found = positive_value_exists(voter_id) \
and positive_value_exists(google_civic_election_id) and (
positive_value_exists(office_we_vote_id) or
positive_value_exists(candidate_we_vote_id) or
positive_value_exists(measure_we_vote_id)
)
unique_identifier_found = existing_unique_identifier_found or new_unique_identifier_found
# We must have these variables in order to create a new entry
required_variables_for_new_entry = positive_value_exists(voter_id) \
and positive_value_exists(google_civic_election_id) and (
positive_value_exists(office_we_vote_id) or
positive_value_exists(candidate_we_vote_id) or
positive_value_exists(measure_we_vote_id)
)
if not unique_identifier_found:
json_data = {
'status': "POSITION_REQUIRED_UNIQUE_IDENTIFIER_VARIABLES_MISSING",
'success': False,
'voter_device_id': voter_device_id,
'position_id': position_id,
'position_we_vote_id': position_we_vote_id,
'new_position_created': False,
'ballot_item_display_name': '',
'speaker_display_name': '',
'speaker_image_url_https': '',
'is_support': False,
'is_oppose': False,
'is_information_only': False,
'google_civic_election_id': google_civic_election_id,
'office_we_vote_id': office_we_vote_id,
'candidate_we_vote_id': candidate_we_vote_id,
'measure_we_vote_id': measure_we_vote_id,
#.........这里部分代码省略.........
示例9: twitter_sign_in_start_for_api
# 需要导入模块: from voter.models import VoterManager [as 别名]
# 或者: from voter.models.VoterManager import retrieve_voter_from_voter_device_id [as 别名]
def twitter_sign_in_start_for_api(voter_device_id): # twitterSignInStart
"""
:param voter_device_id:
:return:
"""
# Get voter_id from the voter_device_id so we can figure out which ballot_items to offer
results = is_voter_device_id_valid(voter_device_id)
if not results['success']:
results = {
'success': False,
'status': "VALID_VOTER_DEVICE_ID_MISSING",
'voter_device_id': voter_device_id,
'twitter_redirect_url': '',
}
return results
voter_manager = VoterManager()
results = voter_manager.retrieve_voter_from_voter_device_id(voter_device_id)
if not positive_value_exists(results['voter_found']):
results = {
'status': "VALID_VOTER_MISSING",
'success': False,
'voter_device_id': voter_device_id,
'twitter_redirect_url': '',
}
return results
voter = results['voter']
callback_url = WE_VOTE_SERVER_ROOT_URL + "/twitter/process_sign_in_response/"
redirect_url = ''
try:
# We take the Consumer Key and the Consumer Secret, and request a token & token_secret
auth = tweepy.OAuthHandler(TWITTER_CONSUMER_KEY, TWITTER_CONSUMER_SECRET, callback_url)
redirect_url = auth.get_authorization_url()
request_token_dict = auth.request_token
twitter_request_token = ''
twitter_request_token_secret = ''
if 'oauth_token' in request_token_dict:
twitter_request_token = request_token_dict['oauth_token']
if 'oauth_token_secret' in request_token_dict:
twitter_request_token_secret = request_token_dict['oauth_token_secret']
# We save these values in the Voter table, and then return a redirect_url where the user can sign in
# Once they sign in to the Twitter login, they are redirected back to the We Vote callback_url
# On that callback_url page (a Django/Python page as opposed to ReactJS), we are told if they are signed in
# on Twitter or not, and capture an access key we can use to retrieve information about the Twitter user
if positive_value_exists(twitter_request_token) and positive_value_exists(twitter_request_token_secret):
voter.twitter_request_token = twitter_request_token
voter.twitter_request_secret = twitter_request_token_secret
voter.save()
success = True
status = "TWITTER_REDIRECT_URL_RETRIEVED"
else:
success = False
status = "TWITTER_REDIRECT_URL_NOT_RETRIEVED"
except tweepy.RateLimitError:
success = False
status = 'TWITTER_RATE_LIMIT_ERROR'
except tweepy.error.TweepError as error_instance:
success = False
status = 'TWITTER_SIGN_IN_START: '
error_tuple = error_instance.args
for error_dict in error_tuple:
for one_error in error_dict:
status += '[' + one_error['message'] + '] '
if success:
results = {
'status': status,
'success': True,
'voter_device_id': voter_device_id,
'twitter_redirect_url': redirect_url,
}
else:
results = {
'status': status,
'success': False,
'voter_device_id': voter_device_id,
'twitter_redirect_url': '',
}
return results
示例10: facebook_sign_in_for_api
# 需要导入模块: from voter.models import VoterManager [as 别名]
# 或者: from voter.models.VoterManager import retrieve_voter_from_voter_device_id [as 别名]
def facebook_sign_in_for_api(voter_device_id, facebook_id=None, facebook_email=None): # facebookSignIn
"""
:param voter_device_id:
:return:
"""
status = ""
success = False
# Get voter_id from the voter_device_id
results = is_voter_device_id_valid(voter_device_id)
if not results['success']:
results = {
'success': False,
'status': "VALID_VOTER_DEVICE_ID_MISSING",
'voter_device_id': voter_device_id,
'facebook_id': facebook_id,
'facebook_email': facebook_email,
}
return results
voter_manager = VoterManager()
results = voter_manager.retrieve_voter_from_voter_device_id(voter_device_id)
if not positive_value_exists(results['voter_found']):
results = {
'success': False,
'status': "VALID_VOTER_MISSING",
'voter_device_id': voter_device_id,
'facebook_id': facebook_id,
'facebook_email': facebook_email,
}
return results
voter = results['voter']
results_from_facebook_id = voter_manager.retrieve_voter_by_facebook_id(facebook_id)
if positive_value_exists(results_from_facebook_id['voter_found']):
voter_found_with_facebook_id = results_from_facebook_id['voter']
if voter_found_with_facebook_id.id == voter.id:
# If here, the owner of the facebook_id is already the current primary voter
status += "FACEBOOK_SIGN_IN-ALREADY_LINKED_TO_THIS_FACEBOOK_ACCOUNT "
success = True
# Only save if the email is different than what is saved
if positive_value_exists(facebook_email) or facebook_email == '':
results = voter_manager.save_facebook_user_values(voter, facebook_id, facebook_email)
status += results['status']
success = results['success']
else:
# If here, we need to merge accounts TODO
# ...but for now we are simply going to switch to the earlier account and abandon
# the newer account
if positive_value_exists(facebook_email) or facebook_email == '':
results = voter_manager.save_facebook_user_values(voter_found_with_facebook_id,
facebook_id, facebook_email)
status += results['status'] + ", "
success = results['success']
# Relink this voter_device_id to the original account
voter_device_manager = VoterDeviceLinkManager()
voter_device_link_results = voter_device_manager.retrieve_voter_device_link(voter_device_id)
voter_device_link = voter_device_link_results['voter_device_link']
update_voter_device_link_results = voter_device_manager.update_voter_device_link(
voter_device_link, voter_found_with_facebook_id)
if update_voter_device_link_results['voter_device_link_updated']:
status += "FACEBOOK_SIGN_IN-ALREADY_LINKED_TO_OTHER_ACCOUNT-TRANSFERRED "
success = True
else:
status = "FACEBOOK_SIGN_IN-ALREADY_LINKED_TO_OTHER_ACCOUNT-COULD_NOT_TRANSFER "
success = False
else:
# An existing account linked to this facebook account was not found
results = voter_manager.save_facebook_user_values(voter, facebook_id, facebook_email)
status = results['status']
success = results['success']
if success:
results = {
'success': True,
'status': status,
'voter_device_id': voter_device_id,
'facebook_id': facebook_id,
'facebook_email': facebook_email,
}
else:
results = {
'success': False,
'status': status,
'voter_device_id': voter_device_id,
'facebook_id': facebook_id,
'facebook_email': facebook_email,
}
return results
示例11: voter_create_for_api
# 需要导入模块: from voter.models import VoterManager [as 别名]
# 或者: from voter.models.VoterManager import retrieve_voter_from_voter_device_id [as 别名]
def voter_create_for_api(voter_device_id): # voterCreate
# If a voter_device_id isn't passed in, automatically create a new voter_device_id
if not positive_value_exists(voter_device_id):
voter_device_id = generate_voter_device_id()
else:
# If a voter_device_id is passed in that isn't valid, we want to throw an error
results = is_voter_device_id_valid(voter_device_id)
if not results['success']:
return HttpResponse(json.dumps(results['json_data']), content_type='application/json')
voter_id = 0
voter_we_vote_id = ''
# Make sure a voter record hasn't already been created for this
voter_manager = VoterManager()
results = voter_manager.retrieve_voter_from_voter_device_id(voter_device_id)
if results['voter_found']:
voter = results['voter']
voter_id = voter.id
voter_we_vote_id = voter.we_vote_id
json_data = {
'status': "VOTER_ALREADY_EXISTS",
'success': True,
'voter_device_id': voter_device_id,
'voter_id': voter_id,
'voter_we_vote_id': voter_we_vote_id,
}
return HttpResponse(json.dumps(json_data), content_type='application/json')
# Create a new voter and return the voter_device_id
voter_manager = VoterManager()
results = voter_manager.create_voter()
if results['voter_created']:
voter = results['voter']
# Now save the voter_device_link
voter_device_link_manager = VoterDeviceLinkManager()
results = voter_device_link_manager.save_new_voter_device_link(voter_device_id, voter.id)
if results['voter_device_link_created']:
voter_device_link = results['voter_device_link']
voter_id_found = True if voter_device_link.voter_id > 0 else False
if voter_id_found:
voter_id = voter.id
voter_we_vote_id = voter.we_vote_id
if voter_id:
json_data = {
'status': "VOTER_CREATED",
'success': True,
'voter_device_id': voter_device_id,
'voter_id': voter_id,
'voter_we_vote_id': voter_we_vote_id,
}
return HttpResponse(json.dumps(json_data), content_type='application/json')
else:
json_data = {
'status': "VOTER_NOT_CREATED",
'success': False,
'voter_device_id': voter_device_id,
'voter_id': 0,
'voter_we_vote_id': '',
}
return HttpResponse(json.dumps(json_data), content_type='application/json')
示例12: quick_info_text_save_for_api
# 需要导入模块: from voter.models import VoterManager [as 别名]
# 或者: from voter.models.VoterManager import retrieve_voter_from_voter_device_id [as 别名]
def quick_info_text_save_for_api( # TODO to be converted
voter_device_id,
quick_info_id,
quick_info_we_vote_id,
google_civic_election_id,
office_we_vote_id,
candidate_we_vote_id,
measure_we_vote_id,
statement_text,
statement_html,
):
results = is_voter_device_id_valid(voter_device_id)
if not results["success"]:
json_data_from_results = results["json_data"]
json_data = {
"status": json_data_from_results["status"],
"success": False,
"voter_device_id": voter_device_id,
"quick_info_id": quick_info_id,
"quick_info_we_vote_id": quick_info_we_vote_id,
"new_quick_info_created": False,
"is_support": False,
"is_oppose": False,
"is_information_only": False,
"google_civic_election_id": google_civic_election_id,
"office_we_vote_id": office_we_vote_id,
"candidate_we_vote_id": candidate_we_vote_id,
"measure_we_vote_id": measure_we_vote_id,
"statement_text": statement_text,
"statement_html": statement_html,
"last_updated": "",
}
return HttpResponse(json.dumps(json_data), content_type="application/json")
voter_manager = VoterManager()
voter_results = voter_manager.retrieve_voter_from_voter_device_id(voter_device_id)
voter_id = voter_results["voter_id"]
if not positive_value_exists(voter_id):
json_data = {
"status": "VOTER_NOT_FOUND_FROM_VOTER_DEVICE_ID",
"success": False,
"voter_device_id": voter_device_id,
"quick_info_id": quick_info_id,
"quick_info_we_vote_id": quick_info_we_vote_id,
"new_quick_info_created": False,
"is_support": False,
"is_oppose": False,
"is_information_only": False,
"google_civic_election_id": google_civic_election_id,
"office_we_vote_id": office_we_vote_id,
"candidate_we_vote_id": candidate_we_vote_id,
"measure_we_vote_id": measure_we_vote_id,
"statement_text": statement_text,
"statement_html": statement_html,
"last_updated": "",
}
return HttpResponse(json.dumps(json_data), content_type="application/json")
voter = voter_results["voter"]
quick_info_id = convert_to_int(quick_info_id)
quick_info_we_vote_id = quick_info_we_vote_id.strip()
existing_unique_identifier_found = positive_value_exists(quick_info_id) or positive_value_exists(
quick_info_we_vote_id
)
new_unique_identifier_found = (
positive_value_exists(voter_id)
and positive_value_exists(google_civic_election_id)
and (
positive_value_exists(office_we_vote_id)
or positive_value_exists(candidate_we_vote_id)
or positive_value_exists(measure_we_vote_id)
)
)
unique_identifier_found = existing_unique_identifier_found or new_unique_identifier_found
# We must have these variables in order to create a new entry
required_variables_for_new_entry = (
positive_value_exists(voter_id)
and positive_value_exists(google_civic_election_id)
and (
positive_value_exists(office_we_vote_id)
or positive_value_exists(candidate_we_vote_id)
or positive_value_exists(measure_we_vote_id)
)
)
if not unique_identifier_found:
results = {
"status": "QUICK_INFO_REQUIRED_UNIQUE_IDENTIFIER_VARIABLES_MISSING",
"success": False,
"voter_device_id": voter_device_id,
"quick_info_id": quick_info_id,
"quick_info_we_vote_id": quick_info_we_vote_id,
"new_quick_info_created": False,
"is_support": False,
"is_oppose": False,
"is_information_only": False,
"google_civic_election_id": google_civic_election_id,
"office_we_vote_id": office_we_vote_id,
"candidate_we_vote_id": candidate_we_vote_id,
"measure_we_vote_id": measure_we_vote_id,
#.........这里部分代码省略.........
示例13: facebook_sign_in_for_api
# 需要导入模块: from voter.models import VoterManager [as 别名]
# 或者: from voter.models.VoterManager import retrieve_voter_from_voter_device_id [as 别名]
def facebook_sign_in_for_api(voter_device_id, facebook_id=None, facebook_email=None): # facebookSignIn
"""
:param voter_device_id:
:return:
"""
# Get voter_id from the voter_device_id so we can figure out which ballot_items to offer
results = is_voter_device_id_valid(voter_device_id)
if not results['success']:
results = {
'success': False,
'status': "VALID_VOTER_DEVICE_ID_MISSING",
'voter_device_id': voter_device_id,
'facebook_id': facebook_id,
'facebook_email': facebook_email,
}
return results
voter_manager = VoterManager()
results = voter_manager.retrieve_voter_from_voter_device_id(voter_device_id)
if not positive_value_exists(results['voter_found']):
results = {
'success': False,
'status': "VALID_VOTER_MISSING",
'voter_device_id': voter_device_id,
'facebook_id': facebook_id,
'facebook_email': facebook_email,
}
return results
voter = results['voter']
results_from_facebook_id = voter_manager.retrieve_voter_by_facebook_id(facebook_id)
if positive_value_exists(results_from_facebook_id['voter_found']):
voter_found_with_facebook_id = results_from_facebook_id['voter']
if voter_found_with_facebook_id.id == voter.id:
# If here, the owner of the facebook_id is the current primary voter
status = "FACEBOOK_SIGN_IN-ALREADY_LINKED_TO_THIS_FACEBOOK_ACCOUNT "
success = True
if positive_value_exists(facebook_email) or facebook_email == '':
results = voter_manager.save_facebook_user_values(voter, facebook_id, facebook_email)
status += results['status']
success = results['success']
else:
# If here, we need to merge accounts
status = "FACEBOOK_SIGN_IN-ALREADY_LINKED_TO_OTHER_ACCOUNT"
success = False
else:
results = voter_manager.save_facebook_user_values(voter, facebook_id, facebook_email)
status = results['status']
success = results['success']
if success:
results = {
'success': True,
'status': status,
'voter_device_id': voter_device_id,
'facebook_id': facebook_id,
'facebook_email': facebook_email,
}
else:
results = {
'success': False,
'status': status,
'voter_device_id': voter_device_id,
'facebook_id': facebook_id,
'facebook_email': facebook_email,
}
return results