ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/zoe/trunk/Collector.cpp
(Generate patch)

Comparing trunk/Collector.cpp (file contents):
Revision 15 by douglas, 2004-07-13T20:14:49-07:00 vs.
Revision 38 by douglas, 2004-07-22T22:42:40-07:00

# Line 4 | Line 4
4   //
5   // $Id$
6  
7 + #include "AwayMessage.hpp"
8   #include "Collector.hpp"
9 + #include "Stamp.hpp"
10  
11 + #include <cstring>
12 +
13 + extern "C"
14 + {
15   #include <pwd.h>
16   #include <unistd.h>
17 + }
18  
19 < #ifndef PASS_MAX
20 < #if defined (_PASSWORD_LEN)
21 < const unsigned PASS_MAX(_PASSWORD_LEN);
15 < #elif defined (_SC_PASS_MAX)
16 < const unsigned PASS_MAX(_SC_PASS_MAX);
17 < #else
18 < #error PASS_MAX unknown
19 < #endif
20 < #endif // PASS_MAX
21 <
22 < Collector::Collector(const ext::String& login, ext::String& password, const
23 <        std::set<Buddy>& buddies, bool start) : login(login), password(password),
24 <        start(start)
19 > Collector::Collector(const ext::String& login, ext::String& password, const     std::set<Buddy>& buddies,
20 >        const Database& database, bool start) : login(login), password(password), buddies(buddies), database(database),
21 >        start(start), prompted(false)
22   {
23          if (start)
24          {
25                  if (password.IsEmpty()) prompt();
26  
27 <                collector.Spawn(etl::BindAll(&Collector::collect, this, buddies));
27 >                collector.Spawn(etl::Bind<0>(&Collector::collect, this));
28          }
29   }
30  
31 < int Collector::collect(const std::set<Buddy>& buddies)
31 > int Collector::collect()
32   {
33 <        cerr << "Collector::collect()\n";
33 >        cerr << bright << green << "Started collector daemon at " << Stamp()
34 >                << ".\n" << reset;
35  
36          net::Oscar::Session session;
37          net::Oscar::AuthTool auth(session);
# Line 43 | Line 41 | int Collector::collect(const std::set<Bu
41          net::Oscar::InfoTool info(session);
42  
43          auth.Login(login, password);
46        password.Clear();
44  
45 <        net::Oscar::StringSet buddies_;
45 >        if (prompted) password.Clear();
46 >
47 >        this->buddy = &buddy;
48 >        this->icbm = &icbm;
49 >        this->info = &info;
50  
51 <        for (std::set<Buddy>::const_iterator buddy(buddies.begin()); buddy !=
52 <                buddies.end(); ++buddy) buddies_.Insert(*buddy);
51 >        buddy.OnOnline += etl::Bind<0>(&Collector::status, this);
52 >        icbm.OnReceive += etl::Bind<0>(&Collector::receive, this);
53  
54 <        buddy.Insert(buddies_);
55 <        icbm.RequestParams();
54 >        net::Oscar::StringSet buddies;
55 >
56 >        for (std::set<Buddy>::const_iterator buddy(this->buddies.begin());
57 >                buddy != this->buddies.end(); ++buddy) buddies.Insert(*buddy);
58 >
59 >        buddy.Insert(buddies);
60  
61          net::Oscar::Capabilities capabilities;
62  
63          capabilities.Insert(net::Oscar::ChatCapability);
64 <        info.SetProfile("<font size=3>I am <a href=\"http://computers.douglasthrift.net/zoe.xml\">Zoe</a>.</font> :-*", "", capabilities);
64 >        info.SetProfile("<font face=\"Tahoma\" size=2>I am <a href=\""
65 >                + Zoe::generator(Zoe::url) + "\">Zoe</a>.</font> :-*", "<font face=\""
66 >                "Tahoma\" size=2>Mommy told me not to talk to strangers.</font> O:-)",
67 >                capabilities);
68  
69          // figure out whether or not we logged in
70  
71 <        while (true)
71 >        while (true) sleep(Hour(1));
72 > }
73 >
74 > void Collector::prompt()
75 > {
76 >        if (!prompted) prompted = true;
77 >
78 >        ext::String prompt(login + "'s AIM Password: ");
79 >        char* password(getpass(prompt.NullTerminate()));
80 >
81 >        this->password = password;
82 >
83 >        for (size_t index(std::strlen(password)); index > 0; --index)
84 >                password[index - 1] = '\0';
85 > }
86 >
87 > void Collector::status(const net::Oscar::UserInfo& user)
88 > {
89 >        Buddy buddy(*buddies.find(user));
90 >        AwayMessage message(buddy, *info);
91 >
92 >        if (!ext::String(message).IsEmpty()) // XXX
93          {
94 <                sleep(60);
94 >                if (Zoe::debug) cerr << "buddy = " << buddy << "\nmessage = " << message
95 >                        << '\n';
96 >
97 >                ext::Handle<dbi::Connection> db(dbi::Connect(database.driver,
98 >                        database.host, database.user, database.password, database.db));
99 >                ext::Handle<dbi::ResultSet> previous(db->Execute("SELECT message "
100 >                        "FROM messages WHERE stamp=(SELECT MAX(stamp) FROM messages "
101 >                        "WHERE id='" + lexical_cast<ext::String>(buddy.getId())
102 >                        + "') AND id='" + lexical_cast<ext::String>(buddy.getId()) + "'"));
103 >
104 >                if (previous->MoveNext())
105 >                {
106 >                        if (ext::String(message) == previous->GetString("message")) return;
107 >                }
108 >
109 >                db->Execute("INSERT INTO messages (stamp, message, id) VALUES ('"
110 >                        + ext::String(message.getStamp()) + "', '" + db->Escape(message)
111 >                        + "', '" + lexical_cast<ext::String>(buddy.getId()) + "')");
112  
113 <                // collect
113 >                cerr << bright << red << "Collected away message from " << blue << buddy
114 >                        << red << " at " << Stamp() << ".\n" << reset;
115          }
116   }
117  
118 < void Collector::prompt()
118 > void Collector::receive(const ext::String& buddy, const ext::String& message)
119   {
120 <        char* password(getpass("Password: "));
120 >        if (Zoe::debug) cerr << "buddy = " << Buddy(buddy) << "\nmessage = "
121 >                << message << '\n';
122  
123 <        this->password = password;
123 >        if (buddies.find(buddy) != buddies.end())
124 >        {
125 >                Buddy buddy_(*buddies.find(buddy));
126 >                
127 >                sleep(1);
128 >
129 >                icbm->Simple(buddy, ext::String(buddy_) + " = {\n   rss = "
130 >                        + buddy_.getRss() + "\n   atom = " + buddy_.getAtom() + "\n}");
131 >        }
132 >        else
133 >        {
134 >                sleep(1);
135  
136 <        for (size_t index(0); index < PASS_MAX; ++index) password[index] = '\0';
136 >                icbm->Simple(buddy, "<font face=\"Tahoma\" size=2>Mommy told me not to "
137 >                        "talk to strangers.</font> O:-)");
138 >        }
139   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines