简体   繁体   English

C#使用REST API对Jira进行凭据验证

[英]C# Credential validation against Jira using the REST API

I'm working on a C# Windows Form application and I would like to have the ability to test a users' credentials against Jira. 我正在使用C#Windows窗体应用程序,我希望能够针对Jira测试用户的凭据。 Basically the user would input their username and password, click OK and the program will tell them if their credentials are accepted or not. 基本上用户会输入他们的用户名和密码,单击确定,程序将告诉他们是否接受他们的凭据。

I already have working code (see below) that uses basic authentication via HttpWebRequest to create new tickets (aka issues), close tickets, add watchers, etc - so I figured this would be easy but I'm struggling with it. 我已经有了工作代码(见下文),它通过HttpWebRequest使用基本身份验证来创建新票证(也就是问题),关闭票证,添加观察者等等 - 所以我认为这很容易,但我正在努力解决它。

As an analog, you can do a credentials check against Active Directory very easily using the System.DirectoryServices.AccountManagement namespace. 作为模拟,您可以使用System.DirectoryServices.AccountManagement命名空间非常轻松地对Active Directory执行凭据检查。 Basically the method authenticateAD() will simply return true or false: 基本上, authenticateAD()方法只返回true或false:

private bool authenticateAD(string username, string password)
{
    PrincipalContext pc = new PrincipalContext(ContextType.Domain, "example.com");
    bool isValid = pc.ValidateCredentials(username,password);
    return isValid;
}

This is exactly the kind of thing I want to do with Jira. 这正是我想用Jira做的事情。

For reference, here's the code I'm using to add/close/update tickets in jira - maybe it can be modified to do what I want? 作为参考,这里是我用来在jira中添加/关闭/更新票证的代码 - 也许可以修改它来做我想要的?

private Dictionary<string, string> sendHTTPtoREST(string json, string restURL)
{
    HttpWebRequest request = WebRequest.Create(restURL) as HttpWebRequest;
    request.Method = "POST";
    request.Accept = "application/json";
    request.ContentType = "application/json";
    string mergedCreds = string.Format("{0}:{1}", username, password);
    byte[] byteCreds = UTF8Encoding.UTF8.GetBytes(mergedCreds);
    request.Headers.Add("Authorization", "Basic " + byteCreds);
    byte[] data = Encoding.UTF8.GetBytes(json);
    try
    {
        using (var requestStream = request.GetRequestStream())
        {
            requestStream.Write(data, 0, data.Length);
            requestStream.Close();
        }
    }
    catch(Exception ex)
    {
        displayMessages(string.Format("Error creating Jira: {0}",ex.Message.ToString()), "red", "white");
        Dictionary<string, string> excepHTTP = new Dictionary<string, string>();
        excepHTTP.Add("error", ex.Message.ToString());
        return excepHTTP;
    }
    response = (HttpWebResponse)request.GetResponse();
    var reader = new StreamReader(response.GetResponseStream());
    string str = reader.ReadToEnd();
    var jss = new System.Web.Script.Serialization.JavaScriptSerializer();
    var sData = jss.Deserialize<Dictionary<string, string>>(str);

    if(response.StatusCode.ToString()=="NoContent")
    {
        sData.Add("code", "NoContent");
        request.Abort();
        return sData;
    }
    else
    {
        sData.Add("code", response.StatusCode.ToString());
        request.Abort();
        return sData;
    }
}

Thanks! 谢谢!

How about attempting to access the root page of JIRA and see if you get an HTTP 403 error? 如何尝试访问JIRA的根页并查看是否收到HTTP 403错误?

        try
        {
            // access JIRA using (parts of) your existing code
        }
        catch (WebException we)
        {
            var response = we.Response as HttpWebResponse;
            if (response != null && response.StatusCode == HttpStatusCode.Forbidden)
            {
                // JIRA doesn't like your credentials
            }
        }

The HttpClient would be simple and best to use check credentials with GetAsync. HttpClient很简单,最好使用GetAsync检查凭据。

The sample code is below 示例代码如下

using (HttpClient client = new HttpClient())
            {
                client.BaseAddress = new Uri(JiraPath);
                // Add an Accept header for JSON format.
                client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
string mergedCreds = string.Format("{0}:{1}", username, password);
byte[] byteCreds = UTF8Encoding.UTF8.GetBytes(mergedCreds);
                var authHeader = new AuthenticationHeaderValue("Basic", byteCreds);
                client.DefaultRequestHeaders.Authorization = authHeader;
                HttpResponseMessage response = client.GetAsync(restURL).Result;  // Blocking call!
                if (response.IsSuccessStatusCode)
                {
                    strJSON = response.Content.ReadAsStringAsync().Result;
                    if (!string.IsNullOrEmpty(strJSON))
                        return strJSON;
                }
                else
                {
                    exceptionOccured = true;
                    // Use "response.ReasonPhrase" to return error message

                }
            }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM