~cszikszoy/do-plugins/fix-confluence

« back to all changes in this revision

Viewing changes to Quote/src/Quote.cs

  • Committer: Alex Launi
  • Date: 2009-01-06 07:11:16 UTC
  • mto: (407.1.4 trunk)
  • mto: This revision was merged to the branch mainline in revision 409.
  • Revision ID: alex.launi@gmail.com-20090106071116-62bb3zeds067vk2i
Finish first draft of quoting plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Quote.cs 
 
2
 *
 
3
 * GNOME Do is the legal property of its developers. Please refer to the
 
4
 * COPYRIGHT file distributed with this
 
5
 * source distribution.
 
6
 *
 
7
 * This program is free software: you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation, either version 3 of the License, or
 
10
 * (at your option) any later version.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 * GNU General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License
 
18
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
 */
 
20
 
 
21
using System;
 
22
using System.IO;
 
23
using System.Net;
 
24
using System.Web;
 
25
using System.Text;
 
26
using System.Collections.Specialized;
 
27
 
 
28
namespace Quote
 
29
{       
 
30
        
 
31
        public static class Quote
 
32
        {
 
33
                public static string PostUsing (IQuoteProvider quote)
 
34
                {
 
35
                        string url = "";
 
36
 
 
37
                        try {
 
38
                                string postQueryString = CreateQueryString (quote.Parameters);
 
39
 
 
40
                                HttpWebRequest request = (HttpWebRequest) WebRequest.Create (quote.BaseUrl);
 
41
                                request.Timeout = 15000;
 
42
                                request.Method = "POST";
 
43
                                request.ContentType = "application/x-www-form-urlencoded";
 
44
                                request.AllowAutoRedirect = quote.ShouldAllowAutoRedirect;
 
45
 
 
46
                                UTF8Encoding encoding = new UTF8Encoding ();
 
47
                                byte[] data = encoding.GetBytes (postQueryString);
 
48
                                request.ContentLength = data.Length;
 
49
                                
 
50
                                using (Stream newStream = request.GetRequestStream ())
 
51
                                {
 
52
                                        newStream.Write (data, 0, data.Length);
 
53
                                }
 
54
                                
 
55
                                using (HttpWebResponse response = (HttpWebResponse) request.GetResponse ())
 
56
                                {                       
 
57
                                        url = quote.GetPasteUrlFromResponse (response);
 
58
                                }
 
59
                        }
 
60
                        catch {
 
61
                                url = "An error occured while posting quote.";
 
62
                        }
 
63
                        
 
64
                        return url;
 
65
                }
 
66
 
 
67
                static string CreateQueryString (NameValueCollection query)
 
68
                {
 
69
                        StringBuilder queryString = new StringBuilder ();
 
70
                        foreach (string key in query.Keys)
 
71
                        {
 
72
                                queryString.Append (HttpUtility.UrlEncode (key));
 
73
                                queryString.Append ("=");
 
74
                                queryString.Append (HttpUtility.UrlEncode (query [key]));
 
75
                                queryString.Append ("&");
 
76
                        }
 
77
                        queryString.Length--;
 
78
                        return queryString.ToString ();
 
79
                }
 
80
        }
 
81
}