~cszikszoy/do-plugins/pastebin

« back to all changes in this revision

Viewing changes to Twitter/src/TwitterTweet.cs

  • Committer: David Siegel
  • Date: 2008-06-02 19:48:18 UTC
  • Revision ID: dave@x-20080602194818-i7rtmvlbq2461ey3
Added repo.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * TwitterTweet.cs
 
3
 * 
 
4
 * GNOME Do is the legal property of its developers, whose names are too numerous
 
5
 * to list here.  Please refer to the COPYRIGHT file distributed with this
 
6
 * source distribution.
 
7
 * 
 
8
 * This program is free software: you can redistribute it and/or modify
 
9
 * it under the terms of the GNU General Public License as published by
 
10
 * the Free Software Foundation, either version 3 of the License, or
 
11
 * (at your option) any later version.
 
12
 * 
 
13
 * This program is distributed in the hope that it will be useful,
 
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
 * GNU General Public License for more details.
 
17
 * 
 
18
 * You should have received a copy of the GNU General Public License
 
19
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
 */
 
21
 
 
22
using System;
 
23
using System.Threading;
 
24
using System.Collections.Generic;
 
25
 
 
26
using Do.Universe;
 
27
using Twitterizer.Framework;
 
28
 
 
29
namespace DoTwitter
 
30
{               
 
31
        public sealed class TweetAction : IAction 
 
32
        {
 
33
                public string Name {
 
34
                        get { return "Tweet"; }
 
35
                }
 
36
                
 
37
                public string Description {
 
38
                        get { return "Update Twitter status"; }
 
39
                }
 
40
                
 
41
                public string Icon {
 
42
                        get { return "twitter-icon.png@" + GetType ().Assembly.FullName; }
 
43
                }
 
44
                
 
45
                public Type[] SupportedItemTypes {
 
46
            get {
 
47
                return new Type[] {
 
48
                    typeof (ITextItem),
 
49
                };
 
50
            }
 
51
        }
 
52
 
 
53
        public bool SupportsItem (IItem item) 
 
54
        {
 
55
            return true;
 
56
        }
 
57
                
 
58
                public Type[] SupportedModifierItemTypes {
 
59
            get { 
 
60
                return new Type[] {
 
61
                    typeof (ContactItem),
 
62
                };
 
63
            }
 
64
        }
 
65
 
 
66
        public bool ModifierItemsOptional {
 
67
            get { return true; }
 
68
        }
 
69
                        
 
70
        public bool SupportsModifierItemForItems (IItem[] items, IItem modItem)
 
71
        {
 
72
            return (modItem as ContactItem)["twitter.screenname"] != null;
 
73
        }
 
74
        
 
75
        public IItem[] DynamicModifierItemsForItem (IItem item)
 
76
        {
 
77
            return null;
 
78
        }
 
79
 
 
80
        public IItem[] Perform (IItem[] items, IItem[] modItems)
 
81
        {                       
 
82
                        TwitterAction.Status = (items[0] as ITextItem).Text;
 
83
                        if (modItems.Length > 0)
 
84
                                TwitterAction.Status = BuildTweet (items[0], modItems[0]);
 
85
                        
 
86
                        Thread updateRunner = new Thread (new ThreadStart (TwitterAction.Tweet));
 
87
                        updateRunner.Start ();
 
88
                        
 
89
                        return null;
 
90
                }
 
91
                
 
92
                private string BuildTweet(IItem t, IItem c)
 
93
                {
 
94
                        ITextItem text = t as ITextItem;
 
95
                        ContactItem contact = c as ContactItem;
 
96
                        string tweet = "";
 
97
                        
 
98
                        //Handle situations without a contact
 
99
                        if (contact == null) return text.Text;
 
100
                        
 
101
                        // Direct messaging
 
102
                        if (text.Text.Substring (0,2).Equals ("d "))
 
103
                                tweet = "d " + contact["twitter.screenname"] +
 
104
                                        " " +   text.Text.Substring (2);
 
105
                        // Tweet replying
 
106
                        else
 
107
                                tweet = "@" + contact["twitter.screenname"] + " " + text.Text;
 
108
                        
 
109
                        return tweet;
 
110
                }
 
111
        }
 
112
}
 
 
b'\\ No newline at end of file'