This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
sentry-redmine/sentry_redmine/forms.py

93 lines
3.3 KiB
Python

from __future__ import absolute_import
from django import forms
from django.utils.translation import ugettext_lazy as _
from .client import RedmineClient
class RedmineOptionsForm(forms.Form):
host = forms.URLField(help_text=_("e.g. http://bugs.redmine.org"))
key = forms.CharField(
widget=forms.TextInput(attrs={'class': 'span9'}),
help_text='Your API key is available on your account page after enabling the Rest API (Administration -> Settings -> Authentication)')
project_id = forms.TypedChoiceField(
label='Project', coerce=int)
tracker_id = forms.TypedChoiceField(
label='Tracker', coerce=int)
default_priority = forms.TypedChoiceField(
label='Default Priority', coerce=int)
def __init__(self, data=None, *args, **kwargs):
super(RedmineOptionsForm, self).__init__(data=data, *args, **kwargs)
initial = kwargs.get('initial') or {}
for key, value in self.data.items():
initial[key.lstrip(self.prefix or '')] = value
has_credentials = all(initial.get(k) for k in ('host', 'key'))
if has_credentials:
client = RedmineClient(initial['host'], initial['key'])
try:
projects = client.get_projects()
except Exception:
has_credentials = False
else:
project_choices = [
(p['id'], '%s (%s)' % (p['name'], p['identifier']))
for p in projects['projects']
]
self.fields['project_id'].choices = project_choices
if has_credentials:
try:
trackers = client.get_trackers()
except Exception:
del self.fields['tracker_id']
else:
tracker_choices = [
(p['id'], p['name'])
for p in trackers['trackers']
]
self.fields['tracker_id'].choices = tracker_choices
try:
priorities = client.get_priorities()
except Exception:
del self.fields['default_priority']
else:
tracker_choices = [
(p['id'], p['name'])
for p in priorities['issue_priorities']
]
self.fields['default_priority'].choices = tracker_choices
if not has_credentials:
del self.fields['project_id']
del self.fields['tracker_id']
del self.fields['default_priority']
def clean(self):
cd = self.cleaned_data
if cd.get('host') and cd.get('key'):
client = RedmineClient(cd['host'], cd['key'])
try:
client.get_projects()
except Exception:
raise forms.ValidationError('There was an issue authenticating with Redmine')
return cd
def clean_host(self):
"""
Strip forward slashes off any url passed through the form.
"""
url = self.cleaned_data.get('host')
if url:
return url.rstrip('/')
return url
class RedmineNewIssueForm(forms.Form):
title = forms.CharField(max_length=200, widget=forms.TextInput(attrs={'class': 'span9'}))
description = forms.CharField(widget=forms.Textarea(attrs={'class': 'span9'}))