kiwitcms/Kiwi

View on GitHub
tcms/rpc/api/utils.py

Summary

Maintainability
A
0 mins
Test Coverage
# Copyright (c) 2019-2020 Alexander Todorov <atodorov@MrSenko.com>

# Licensed under the GPL 2.0: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

from django.utils.module_loading import import_string

from tcms.testcases.models import BugSystem


def tracker_from_url(url, request):
    """
    Return the IssueTrackerType object for the system
    where ``base_url`` is part of ``url``. Usually we pass
    URLs to pre-existing defects to this method.
    """
    for bug_system in BugSystem.objects.all():
        if bug_system.base_url and url.startswith(bug_system.base_url):
            return import_string(bug_system.tracker_type)(bug_system, request)

    return None