111 lines
4.9 KiB
Python
111 lines
4.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (C) 2014-2016 Andrey Antukh <niwi@niwi.nz>
|
|
# Copyright (C) 2014-2016 Jesús Espino <jespinog@gmail.com>
|
|
# Copyright (C) 2014-2016 David Barragán <bameda@dbarragan.com>
|
|
# Copyright (C) 2014-2016 Alejandro Alonso <alejandro.alonso@kaleidos.net>
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License 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 <http://www.gnu.org/licenses/>.
|
|
|
|
from django.core.management.base import BaseCommand
|
|
from django.conf import settings
|
|
from django.db.models import Q
|
|
|
|
from taiga.importers.asana.importer import AsanaImporter
|
|
from taiga.users.models import User, AuthData
|
|
from taiga.projects.services import projects as service
|
|
|
|
import unittest.mock
|
|
import timeit
|
|
import json
|
|
|
|
|
|
class Command(BaseCommand):
|
|
def add_arguments(self, parser):
|
|
parser.add_argument('--token', dest="token", type=str,
|
|
help='Auth token')
|
|
parser.add_argument('--project-id', dest="project_id", type=str,
|
|
help='Project ID or full name (ex: taigaio/taiga-back)')
|
|
parser.add_argument('--template', dest='template', default="kanban",
|
|
help='template to use: scrum or kanban (default kanban)')
|
|
parser.add_argument('--type', dest='type', default="user_stories",
|
|
help='type of object to use: user_stories or issues (default user_stories)')
|
|
parser.add_argument('--ask-for-users', dest='ask_for_users', const=True,
|
|
action="store_const", default=False,
|
|
help='Import closed data')
|
|
parser.add_argument('--keep-external-reference', dest='keep_external_reference', const=True,
|
|
action="store_const", default=False,
|
|
help='Store external reference of imported data')
|
|
|
|
def handle(self, *args, **options):
|
|
admin = User.objects.get(username="admin")
|
|
|
|
if options.get('token', None):
|
|
token = json.loads(options.get('token'))
|
|
else:
|
|
url = AsanaImporter.get_auth_url(
|
|
settings.IMPORTERS.get('asana', {}).get('app_id', None),
|
|
settings.IMPORTERS.get('asana', {}).get('app_secret', None),
|
|
settings.IMPORTERS.get('asana', {}).get('callback_url', None)
|
|
)
|
|
print("Go to here and come with your code (in the redirected url): {}".format(url))
|
|
code = input("Code: ")
|
|
access_data = AsanaImporter.get_access_token(
|
|
code,
|
|
settings.IMPORTERS.get('asana', {}).get('app_id', None),
|
|
settings.IMPORTERS.get('asana', {}).get('app_secret', None),
|
|
settings.IMPORTERS.get('asana', {}).get('callback_url', None)
|
|
)
|
|
token = access_data
|
|
|
|
importer = AsanaImporter(admin, token)
|
|
|
|
if options.get('project_id', None):
|
|
project_id = options.get('project_id')
|
|
else:
|
|
print("Select the project to import:")
|
|
for project in importer.list_projects():
|
|
print("- {}: {}".format(project['id'], project['name']))
|
|
project_id = input("Project id: ")
|
|
|
|
users_bindings = {}
|
|
if options.get('ask_for_users', None):
|
|
print("Add the username or email for next asana users:")
|
|
|
|
for user in importer.list_users(project_id):
|
|
while True:
|
|
if user['detected_user'] is not None:
|
|
print("User automatically detected: {} as {}".format(user['full_name'], user['detected_user']))
|
|
users_bindings[user['id']] = user['detected_user']
|
|
break
|
|
|
|
if not options.get('ask_for_users', False):
|
|
break
|
|
|
|
username_or_email = input("{}: ".format(user['full_name'] or user['username']))
|
|
if username_or_email == "":
|
|
break
|
|
try:
|
|
users_bindings[user['id']] = User.objects.get(Q(username=username_or_email) | Q(email=username_or_email))
|
|
break
|
|
except User.DoesNotExist:
|
|
print("ERROR: Invalid username or email")
|
|
|
|
options = {
|
|
"template": options.get('template'),
|
|
"type": options.get('type'),
|
|
"users_bindings": users_bindings,
|
|
"keep_external_reference": options.get('keep_external_reference')
|
|
}
|
|
|
|
importer.import_project(project_id, options)
|