~d6g/do-plugins/Timer

« back to all changes in this revision

Viewing changes to GDocs/src/GDocsUploadDocument.cs

  • Committer: Alex Launi
  • Date: 2008-10-20 22:21:07 UTC
  • mfrom: (248.1.8 GDocs)
  • Revision ID: alex@eriktorvaldsonn-20081020222107-xl42p0fnsg2p0tsb
Added GDocs plugin from Peng Deng

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* GDocsUploadDocument.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.Text;
 
23
using System.Collections.Generic;
 
24
using System.Text.RegularExpressions;
 
25
using Mono.Unix;
 
26
 
 
27
using Do.Addins;
 
28
using Do.Universe;
 
29
 
 
30
using Google.GData.Client;
 
31
using Google.GData.Documents;
 
32
 
 
33
namespace GDocs
 
34
{
 
35
        public sealed class GDocsUploadDocument : IAction
 
36
        {
 
37
                const string ExtPattern = @"\.(txt|doc|html|htm|odt|rtf|xls|ods|csv|tsv|tsb|ppt|pps|sxw|pdf)$";
 
38
                                
 
39
                public string Name {
 
40
                        get { return Catalog.GetString ("Upload Document"); }
 
41
                }
 
42
                
 
43
                public string Description {
 
44
                        get { return Catalog.GetString ("Upload a document to Google Docs"); }
 
45
        }
 
46
                        
 
47
                public string Icon {
 
48
                        //get { return "gDocsUploadIcon.png@" + GetType ().Assembly.FullName; }
 
49
                        get { return "document-send"; }
 
50
                }
 
51
                
 
52
                public Type[] SupportedItemTypes {
 
53
                        get {
 
54
                                return new Type[] {
 
55
                                        typeof (IFileItem),
 
56
                                };
 
57
                        }
 
58
                }
 
59
                
 
60
                public Type[] SupportedModifierItemTypes {
 
61
                    get {
 
62
                        return new Type[] {
 
63
                            typeof (ITextItem),
 
64
                };
 
65
            }
 
66
        }
 
67
        
 
68
        public bool ModifierItemsOptional {
 
69
            get {return true; }
 
70
        }
 
71
        
 
72
        public bool SupportsItem (IItem item) 
 
73
        {
 
74
                        return IsValidFormat (item as IFileItem);
 
75
        }
 
76
        
 
77
        public bool SupportsModifierItemForItems (IItem[] item, IItem modItem) 
 
78
        {                       
 
79
            return true;
 
80
        }
 
81
        
 
82
        public IItem[] DynamicModifierItemsForItem (IItem item) 
 
83
        {
 
84
            return null;
 
85
        }
 
86
        
 
87
        public IItem[] Perform (IItem[] items, IItem[] modifierItems) 
 
88
        {                       
 
89
                        string fileName = (items[0] as IFileItem).Path;
 
90
                        string documentName = (modifierItems.Length > 0) ? (modifierItems[0] as ITextItem).Text : null;
 
91
                        
 
92
                        IItem returnItem;
 
93
                        returnItem = GDocs.UploadDocument (fileName, documentName);
 
94
                        
 
95
                        if (returnItem == null)
 
96
                                return null;
 
97
                        else
 
98
                                return new IItem [] { returnItem, };
 
99
        }
 
100
                
 
101
                private bool IsValidFormat (IFileItem item)
 
102
                {
 
103
                        // Supported uploading format by Google Docs
 
104
                        //
 
105
                        // Detailed info: http://documents.google.com/support/presentations/bin/answer.py?answer=50092
 
106
                        //                http://documents.google.com/support/presentations/bin/answer.py?answer=37603
 
107
                        
 
108
                        return new Regex (ExtPattern, RegexOptions.Compiled).IsMatch (item.Path);                
 
109
                }
 
110
        }
 
111
}