aboutsummaryrefslogtreecommitdiffstats
path: root/src/account/tasks.py
blob: bfb865dd93d63adc1408c749742269ca4c4f3b34 (plain)
1
2
3
4
5

@media only all and (prefers-color-scheme: dark) {
.highlight .hll { background-color: #49483e }
.highlight .c { color: #75715e } /* Comment */
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
.highlight .k { color: #66d9ef } /* Keyword */
.highlight .l { color: #ae81ff } /* Literal */
.highlight .n { color: #f8f8f2 } /* Name */
.highlight .o { color: #f92672 } /* Operator */
.highlight .p { color: #f8f8f2 } /* Punctuation */
.highlight .ch { color: #75715e } /* Comment.Hashbang */
.highlight .cm { color: #75715e } /* Comment.Multiline */
.highlight .cp { color: #75715e } /* Comment.Preproc */
.highlight .cpf { color: #75715e } /* Comment.PreprocFile */
.highlight .c1 { color: #75715e } /* Comment.Single */
.highlight .cs { color: #75715e } /* Comment.Special */
.highlight .gd { color: #f92672 } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph 
##############################################################################
# Copyright (c) 2016 Max Breitenfeldt and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################


from celery import shared_task
from django.contrib.auth.models import User
from jira import JIRAError

from account.jira_util import get_jira


@shared_task
def sync_jira_accounts():
    users = User.objects.all()
    for user in users:
        jira = get_jira(user)
        try:
            user_dict = jira.myself()
        except JIRAError:
            # User can be anonymous (local django admin account)
            continue
        user.email = user_dict['emailAddress']
        user.userprofile.url = user_dict['self']
        user.userprofile.full_name = user_dict['displayName']
        print(user_dict)

        user.userprofile.save()
        user.save()