-
Notifications
You must be signed in to change notification settings - Fork 542
/
Copy pathmodels.py
646 lines (510 loc) · 26.4 KB
/
models.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
# wevote_settings/models.py
# Brought to you by We Vote. Be good.
# -*- coding: UTF-8 -*-
import string
from django.db import models
import wevote_functions.admin
from exception.models import handle_record_found_more_than_one_exception, \
handle_record_not_saved_exception
from wevote_functions.functions import convert_to_int, generate_random_string, positive_value_exists
RETRIEVE_UPDATE_DATA_FROM_TWITTER = 'RETRIEVE_UPDATE_DATA_FROM_TWITTER'
SUGGESTED_VOTER_GUIDE_FROM_PRIOR = 'SUGGESTED_VOTER_GUIDE_FROM_PRIOR'
RETRIEVE_POSSIBLE_BALLOTPEDIA_PHOTOS = 'RETRIEVE_POSSIBLE_BALLOTPEDIA_PHOTOS'
RETRIEVE_POSSIBLE_FACEBOOK_PHOTOS = 'RETRIEVE_POSSIBLE_FACEBOOK_PHOTOS'
RETRIEVE_POSSIBLE_GOOGLE_LINKS = 'RETRIEVE_POSSIBLE_GOOGLE_LINKS'
RETRIEVE_POSSIBLE_TWITTER_HANDLES = 'RETRIEVE_POSSIBLE_TWITTER_HANDLES'
STOP_BULK_SEARCH_TWITTER_LINK_POSSIBILITY = 'STOP_BULK_SEARCH_TWITTER_LINK_POSSIBILITY'
RETRIEVE_POSSIBLE_WIKIPEDIA_PHOTOS = 'RETRIEVE_POSSIBLE_WIKIPEDIA_PHOTOS'
RETRIEVE_POSSIBLE_BALLOTPEDIA_CANDIDATES_LINKS = 'RETRIEVE_POSSIBLE_BALLOTPEDIA_CANDIDATES_LINKS'
KIND_OF_ACTION_CHOICES = (
(RETRIEVE_UPDATE_DATA_FROM_TWITTER, 'Retrieve updated data from Twitter'),
(RETRIEVE_POSSIBLE_BALLOTPEDIA_PHOTOS, 'Retrieve possible Ballotpedia photos'),
(RETRIEVE_POSSIBLE_FACEBOOK_PHOTOS, 'Retrieve possible Facebook photos'),
(RETRIEVE_POSSIBLE_GOOGLE_LINKS, 'Retrieve possible google links'),
(RETRIEVE_POSSIBLE_TWITTER_HANDLES, 'Retrieve possible twitter handles'),
(RETRIEVE_POSSIBLE_WIKIPEDIA_PHOTOS, 'Retrieve possible Wikipedia photos'),
(STOP_BULK_SEARCH_TWITTER_LINK_POSSIBILITY, 'Stop search for Bulk twitter links'),
(RETRIEVE_POSSIBLE_BALLOTPEDIA_CANDIDATES_LINKS, 'Retrieve possible Ballotpedia candidate links'),
)
logger = wevote_functions.admin.get_logger(__name__)
class WeVoteSetting(models.Model):
"""
Settings needed for the operation of this site
"""
DoesNotExist = None
MultipleObjectsReturned = None
objects = None
name = models.CharField(verbose_name='setting name', blank=True, null=True, max_length=255)
# We store in the settings database values of many different kind of data types
STRING = 'S'
INTEGER = 'I'
BOOLEAN = 'B'
VALUE_TYPE_CHOICES = (
(STRING, 'String'),
(INTEGER, 'Integer'),
(BOOLEAN, 'Boolean'),
)
value_type = models.CharField("value_type", max_length=1, choices=VALUE_TYPE_CHOICES, default=STRING)
# Only one of these fields is filled for each entry
string_value = models.CharField(verbose_name='string value', max_length=255, null=True, blank=True)
integer_value = models.BigIntegerField(verbose_name='integer value', null=True, blank=True)
boolean_value = models.BooleanField(verbose_name='boolean value', blank=True, default=None, null=True)
admin_app = models.BooleanField(verbose_name='allow changes via admin app', default=False)
class WeVoteSettingsManager(models.Manager):
"""
Manage all the site settings
"""
@staticmethod
def fetch_setting(setting_name):
setting_name = setting_name.strip()
try:
if setting_name != '':
we_vote_setting = WeVoteSetting.objects.using('readonly').get(name=setting_name)
if we_vote_setting.value_type == WeVoteSetting.BOOLEAN:
return we_vote_setting.boolean_value
elif we_vote_setting.value_type == WeVoteSetting.INTEGER:
return we_vote_setting.integer_value
elif we_vote_setting.value_type == WeVoteSetting.STRING:
return we_vote_setting.string_value
except WeVoteSetting.MultipleObjectsReturned as e:
handle_record_found_more_than_one_exception(e, logger=logger)
return ''
except WeVoteSetting.DoesNotExist:
return ''
except Exception as e:
print("Settings exception: ", e)
return ''
return ''
@staticmethod
def fetch_setting_results(setting_name, read_only=True):
status = ""
success = True
setting_name = setting_name.strip()
try:
if setting_name != '':
if positive_value_exists(read_only):
we_vote_setting = WeVoteSetting.objects.using('readonly').get(name=setting_name)
else:
we_vote_setting = WeVoteSetting.objects.get(name=setting_name)
we_vote_setting_found = True
if we_vote_setting.value_type == WeVoteSetting.BOOLEAN:
return {
'name': we_vote_setting.name,
'setting_value': we_vote_setting.boolean_value,
'success': success,
'status': status,
'we_vote_setting': we_vote_setting,
'we_vote_setting_found': we_vote_setting_found
}
elif we_vote_setting.value_type == WeVoteSetting.INTEGER:
return {
'name': we_vote_setting.name,
'setting_value': we_vote_setting.integer_value,
'success': success,
'status': status,
'we_vote_setting': we_vote_setting,
'we_vote_setting_found': we_vote_setting_found
}
elif we_vote_setting.value_type == WeVoteSetting.STRING:
return {
'name': we_vote_setting.name,
'setting_value': we_vote_setting.string_value,
'success': success,
'status': status,
'we_vote_setting': we_vote_setting,
'we_vote_setting_found': we_vote_setting_found
}
else:
success = False
else:
success = False
except WeVoteSetting.MultipleObjectsReturned as e:
status += "FETCH_SETTINGS_RESULTS-MULTIPLE_OBJECTS_RETURNED " + str(e) + " "
success = False
except WeVoteSetting.DoesNotExist:
status += "FETCH_SETTINGS_RESULTS-DOES_NOT_EXIST "
success = True
except Exception as e:
status += "FETCH_SETTINGS_RESULTS: " + str(e) + " "
success = False
return {
'name': setting_name,
'setting_value': None,
'success': success,
'status': status,
'we_vote_setting': None,
'we_vote_setting_found': False
}
@staticmethod
def save_setting(setting_name, setting_value, value_type=None, admin_app=False):
accepted_value_types = [WeVoteSetting.BOOLEAN, WeVoteSetting.INTEGER, WeVoteSetting.STRING]
if value_type is None:
if type(setting_value).__name__ == 'bool':
value_type = WeVoteSetting.BOOLEAN
elif type(setting_value).__name__ == 'int':
value_type = WeVoteSetting.INTEGER
elif type(setting_value).__name__ == 'str':
value_type = WeVoteSetting.STRING
elif type(setting_value).__name__ == 'list':
logger.info("setting is a list. To be developed")
value_type = WeVoteSetting.STRING
else:
value_type = WeVoteSetting.STRING
elif value_type not in accepted_value_types:
# Not a recognized value_type, save as a str
value_type = WeVoteSetting.STRING
# Does this setting already exist?
we_vote_setting = None
we_vote_setting_id = 0
we_vote_setting_exists = False
we_vote_setting_does_not_exist = False
try:
we_vote_setting = WeVoteSetting.objects.get(name=setting_name)
we_vote_setting_exists = True
except WeVoteSetting.MultipleObjectsReturned as e:
handle_record_found_more_than_one_exception(e, logger=logger)
except WeVoteSetting.DoesNotExist:
we_vote_setting_does_not_exist = True
we_vote_setting_manager = WeVoteSettingsManager()
if we_vote_setting_exists:
# Update this position with new values
try:
we_vote_setting.value_type = value_type
we_vote_setting = we_vote_setting_manager.set_setting_value_by_type(
we_vote_setting, setting_value, value_type, admin_app)
we_vote_setting.save()
we_vote_setting_id = we_vote_setting.id
except Exception as e:
handle_record_not_saved_exception(e, logger=logger)
elif we_vote_setting_does_not_exist:
try:
# Create new
we_vote_setting = WeVoteSetting(
value_type=value_type,
name=setting_name,
)
we_vote_setting = we_vote_setting_manager.set_setting_value_by_type(
we_vote_setting, setting_value, value_type, admin_app)
we_vote_setting.save()
we_vote_setting_id = we_vote_setting.id
except Exception as e:
handle_record_not_saved_exception(e, logger=logger)
results = {
'success': True if we_vote_setting_id else False,
'we_vote_setting': we_vote_setting,
}
return results
@staticmethod
def set_setting_value_by_type(we_vote_setting, setting_value, setting_type, admin_app):
if setting_type == WeVoteSetting.BOOLEAN:
we_vote_setting.boolean_value = setting_value
we_vote_setting.integer_value = None
we_vote_setting.string_value = None
elif setting_type == WeVoteSetting.INTEGER:
we_vote_setting.boolean_value = False
we_vote_setting.integer_value = setting_value
we_vote_setting.string_value = None
else: # All other kinds of settings are strings
we_vote_setting.boolean_value = False
we_vote_setting.integer_value = None
we_vote_setting.string_value = setting_value
we_vote_setting.admin_app = admin_app
return we_vote_setting
# site_unique_id_prefix
# we_vote_id_last_org_integer
# we_vote_id_last_position_integer
def fetch_batch_process_system_on():
we_vote_settings_manager = WeVoteSettingsManager()
results = we_vote_settings_manager.fetch_setting_results('batch_process_system_on', read_only=True)
if results['success']:
if results['we_vote_setting_found']:
return results['setting_value']
else:
# Create the setting the first time
results = we_vote_settings_manager.save_setting(
setting_name='batch_process_system_on',
setting_value=True,
value_type=WeVoteSetting.BOOLEAN)
return results['success']
else:
return False
def fetch_batch_process_system_on_by_process_name(batch_process_name=''):
we_vote_settings_manager = WeVoteSettingsManager()
results = we_vote_settings_manager.fetch_setting_results(batch_process_name, read_only=True)
if results['success']:
if results['we_vote_setting_found']:
return results['setting_value']
else:
# Create the setting the first time
results = we_vote_settings_manager.save_setting(
setting_name=batch_process_name,
setting_value=True,
value_type=WeVoteSetting.BOOLEAN)
return results['success']
else:
return False
def fetch_batch_process_system_activity_notices_on():
return fetch_batch_process_system_on_by_process_name('batch_process_system_activity_notices_on')
def fetch_batch_process_system_calculate_analytics_on():
return fetch_batch_process_system_on_by_process_name('batch_process_system_calculate_analytics_on')
def fetch_batch_process_system_general_maintenance_on():
return fetch_batch_process_system_on_by_process_name('batch_process_system_general_maintenance_on')
def fetch_batch_process_system_generate_voter_guides_on():
return fetch_batch_process_system_on_by_process_name('batch_process_system_generate_voter_guides_on')
def fetch_batch_process_system_api_refresh_on():
return fetch_batch_process_system_on_by_process_name('batch_process_system_api_refresh_on')
def fetch_batch_process_system_ballot_items_on():
return fetch_batch_process_system_on_by_process_name('batch_process_system_ballot_items_on')
def fetch_batch_process_system_match_politicians_to_organizations_on():
return fetch_batch_process_system_on_by_process_name('batch_process_system_match_politicians_to_organizations_on')
def fetch_batch_process_system_representatives_on():
return fetch_batch_process_system_on_by_process_name('batch_process_system_representatives_on')
def fetch_batch_process_system_retrieve_from_ballotpedia_on():
return fetch_batch_process_system_on_by_process_name('batch_process_system_retrieve_from_ballotpedia_on')
def fetch_batch_process_system_search_twitter_on():
return fetch_batch_process_system_on_by_process_name('batch_process_system_search_twitter_on')
def fetch_batch_process_system_update_twitter_on():
return fetch_batch_process_system_on_by_process_name('batch_process_system_update_twitter_on')
def fetch_site_unique_id_prefix():
we_vote_settings_manager = WeVoteSettingsManager()
site_unique_id_prefix = we_vote_settings_manager.fetch_setting('site_unique_id_prefix')
if site_unique_id_prefix == '':
safety_valve = 0
# TODO Create table to keep collection of prefix's used by other sites
site_unique_id_prefix_reserved = ['1r', 'yf']
# Even though it reduced the number of unique prefixes, I don't want to rely on lowercase vs. uppercase
# in case the id ever gets converted to all upper case or lower case
characters_in_random_string = string.ascii_lowercase + string.digits
site_unique_id_prefix = generate_random_string(2, characters_in_random_string)
while (site_unique_id_prefix in site_unique_id_prefix_reserved) and (safety_valve < 100):
safety_valve += 1
site_unique_id_prefix = generate_random_string(2, characters_in_random_string)
# Break out when we have a unique site_unique_id_prefix
we_vote_settings_manager.save_setting('site_unique_id_prefix', site_unique_id_prefix)
# TODO Each We Vote site needs to keep a local copy of site_unique_id_prefix's that are in use, AND
# TODO Each We Vote site also needs to publish site_unique_id_prefix's in use by that organization
return site_unique_id_prefix
def fetch_stripe_processing_enabled_state():
we_vote_settings_manager = WeVoteSettingsManager()
results = we_vote_settings_manager.fetch_setting_results('stripe_processing_enabled', read_only=False)
if results['success']:
if results['we_vote_setting_found']:
return results['setting_value']
else:
# Create the setting the first time
results = we_vote_settings_manager.save_setting(
setting_name='stripe_processing_enabled',
setting_value=True,
value_type=WeVoteSetting.BOOLEAN,
admin_app=True,
)
return results['success']
else:
return False
def fetch_volunteer_task_weekly_metrics_last_updated():
we_vote_settings_manager = WeVoteSettingsManager()
# Date as integer ex/ 20240308
results = we_vote_settings_manager.fetch_setting_results(
'volunteer_task_weekly_metrics_last_updated', read_only=True)
if results['success']:
if results['we_vote_setting_found']:
return results['setting_value']
else:
# Create the setting the first time
results = we_vote_settings_manager.save_setting(
setting_name='volunteer_task_weekly_metrics_last_updated',
setting_value=True,
value_type=WeVoteSetting.INTEGER)
return results['success']
else:
return False
def set_stripe_processing_enabled_state(new_state):
we_vote_settings_manager = WeVoteSettingsManager()
results = we_vote_settings_manager.save_setting(
setting_name='stripe_processing_enabled',
setting_value=new_state,
value_type=WeVoteSetting.BOOLEAN,
admin_app=True,
)
return results['success']
def fetch_next_we_vote_id_integer(we_vote_id_last_setting_name):
we_vote_settings_manager = WeVoteSettingsManager()
we_vote_id_last_integer = we_vote_settings_manager.fetch_setting(we_vote_id_last_setting_name)
we_vote_id_next_integer = convert_to_int(we_vote_id_last_integer)
we_vote_id_next_integer += 1
we_vote_settings_manager.save_setting(we_vote_id_last_setting_name, we_vote_id_next_integer)
return we_vote_id_next_integer
def fetch_next_we_vote_id_activity_comment_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_activity_comment_integer')
def fetch_next_we_vote_id_activity_notice_seed_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_activity_notice_seed_integer')
def fetch_next_we_vote_id_activity_post_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_activity_post_integer')
# def fetch_next_we_vote_id_activity_summary_for_voter_integer():
# return fetch_next_we_vote_id_integer('we_vote_id_last_activity_summary_for_voter_integer')
def fetch_next_we_vote_id_ballot_returned_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_ballot_returned_integer')
def fetch_next_we_vote_id_org_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_org_integer')
def fetch_next_we_vote_id_position_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_position_integer')
def fetch_next_we_vote_id_campaignx_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_campaignx_integer')
def fetch_next_we_vote_id_campaignx_news_item_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_campaignx_news_item_integer')
def fetch_next_we_vote_id_candidate_campaign_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_candidate_campaign_integer')
def fetch_next_we_vote_id_challenge_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_challenge_integer')
def fetch_next_we_vote_id_challenge_news_item_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_challenge_news_item_integer')
def fetch_next_we_vote_id_contest_office_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_contest_office_integer')
def fetch_next_we_vote_id_office_held_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_office_held_integer')
def fetch_next_we_vote_id_representative_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_representative_integer')
def fetch_next_we_vote_id_contest_measure_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_contest_measure_integer')
def fetch_next_we_vote_id_email_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_email_integer')
def fetch_next_we_vote_id_issue_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_issue_integer')
def fetch_next_we_vote_id_measure_campaign_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_measure_campaign_integer')
def fetch_next_we_vote_id_pledge_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_pledge_integer')
def fetch_next_we_vote_id_politician_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_politician_integer')
def fetch_next_we_vote_id_polling_location_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_polling_location_integer')
def fetch_next_we_vote_id_quick_info_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_quick_info_integer')
def fetch_next_we_vote_id_quick_info_master_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_quick_info_master_integer')
def fetch_next_we_vote_id_sms_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_sms_integer')
def fetch_next_we_vote_id_volunteer_team_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_volunteer_team_integer')
def fetch_next_we_vote_id_voter_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_voter_integer')
def fetch_next_we_vote_id_voter_guide_integer():
return fetch_next_we_vote_id_integer('we_vote_id_last_voter_guide_integer')
def fetch_next_we_vote_id_electoral_district_integer():
return fetch_next_we_vote_id_integer('we_vote_id_electoral_district_integer')
def fetch_next_we_vote_id_party_integer():
return fetch_next_we_vote_id_integer('we_vote_id_party_integer')
class RemoteRequestHistory(models.Model):
"""
Keep a log of events when reaching out to Remote servers with requests
"""
# The data and time we reached out to the Remote server
objects = None
datetime_of_action = models.DateTimeField(verbose_name='date and time of action', auto_now=True)
# If a 'ballot' entry, store the election this is for
google_civic_election_id = models.PositiveIntegerField(verbose_name="google civic election id", null=True)
kind_of_action = models.CharField(verbose_name="kind of action to take", max_length=50,
choices=KIND_OF_ACTION_CHOICES, null=True)
candidate_campaign_we_vote_id = models.CharField(max_length=255, unique=False, null=True)
organization_we_vote_id = models.CharField(max_length=255, unique=False, null=True)
representative_we_vote_id = models.CharField(max_length=255, unique=False, null=True)
number_of_results = models.PositiveIntegerField(verbose_name="number of results", null=True, default=0)
status = models.TextField(verbose_name="Request status message", default="", null=True, blank=True)
class RemoteRequestHistoryManager(models.Manager):
def __unicode__(self):
return "RemoteRequestHistoryManager"
@staticmethod
def create_remote_request_history_entry(
kind_of_action='',
google_civic_election_id=0,
candidate_campaign_we_vote_id=None,
organization_we_vote_id=None,
representative_we_vote_id=None,
number_of_results=0,
status=''):
"""
Create a new entry for twitter link search request in the RemoteRequestHistory
:param kind_of_action:
:param google_civic_election_id:
:param candidate_campaign_we_vote_id:
:param organization_we_vote_id:
:param representative_we_vote_id:
:param number_of_results:
:param status:
:return:
"""
success = False
create_status = ""
remote_request_history_entry_created = False
remote_request_history_entry = ''
# save this entry
try:
remote_request_history_entry = RemoteRequestHistory.objects.create(
kind_of_action=kind_of_action,
google_civic_election_id=google_civic_election_id,
candidate_campaign_we_vote_id=candidate_campaign_we_vote_id,
organization_we_vote_id=organization_we_vote_id,
representative_we_vote_id=representative_we_vote_id,
number_of_results=number_of_results,
status=status)
if remote_request_history_entry:
success = True
create_status += "REMOTE_REQUEST_HISTORY_ENTRY_CREATED "
remote_request_history_entry_created = True
else:
success = False
create_status += "CREATE_REMOTE_REQUEST_HISTORY_ENTRY_FAILED "
except Exception as e:
status += "REMOTE_REQUEST_HISTORY_ENTRY_ERROR: " + str(e) + " "
handle_record_not_saved_exception(e, logger=logger)
results = {
'success': success,
'status': create_status,
'remote_request_history_entry_created': remote_request_history_entry_created,
'remote_request_history_entry': remote_request_history_entry,
}
return results
@staticmethod
def remote_request_history_entry_exists(
kind_of_action,
google_civic_election_id,
candidate_campaign_we_vote_id='',
organization_we_vote_id=''):
success = False
status = ""
try:
list_query = RemoteRequestHistory.objects.all()
list_query = list_query.filter(kind_of_action__iexact=kind_of_action)
list_query = list_query.filter(google_civic_election_id=google_civic_election_id)
if positive_value_exists(candidate_campaign_we_vote_id):
list_query = list_query.filter(candidate_campaign_we_vote_id=candidate_campaign_we_vote_id)
if positive_value_exists(organization_we_vote_id):
list_query = list_query.filter(organization_we_vote_id=organization_we_vote_id)
list_query_count = list_query.count()
if positive_value_exists(list_query_count):
return True
except Exception as e:
status += "REMOTE_REQUEST_HISTORY_LIST_NOT_FOUND-EXCEPTION "
return False
@staticmethod
def retrieve_remote_request_history_list(google_civic_election_id=0):
success = False
status = ""
remote_request_history_list = []
try:
list_query = RemoteRequestHistory.objects.all()
if positive_value_exists(google_civic_election_id):
list_query = list_query.filter(google_civic_election_id=google_civic_election_id)
remote_request_history_list = list(list_query)
remote_request_history_list_found = True
status += "REMOTE_REQUEST_HISTORY_LIST_FOUND "
except Exception as e:
remote_request_history_list_found = False
status += "REMOTE_REQUEST_HISTORY_LIST_NOT_FOUND-EXCEPTION "
results = {
'success': success,
'status': status,
'remote_request_history_list': remote_request_history_list,
'remote_request_history_list_found': remote_request_history_list_found,
}
return results