Files
@ 1db9dcb8c1b7
Branch filter:
Location: libtransport.git/backends/libyahoo2/main.cpp
1db9dcb8c1b7
24.1 KiB
text/x-c++hdr
Merge branch 'master' of github.com:vitalyster/libtransport
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 | // Transport includes
#include "transport/config.h"
#include "transport/networkplugin.h"
#include "transport/logging.h"
// Yahoo2
#include <yahoo2.h>
#include <yahoo2_callbacks.h>
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include "yahoohandler.h"
#include "yahoolocalaccount.h"
#include "httpfetch.h"
// Swiften
#include "Swiften/Swiften.h"
#include "Swiften/Network/TLSConnectionFactory.h"
#include "Swiften/TLS/OpenSSL/OpenSSLContextFactory.h"
#ifndef _WIN32
// for signal handler
#include "unistd.h"
#include "signal.h"
#include "sys/wait.h"
#include "sys/signal.h"
#endif
// Boost
#include <boost/algorithm/string.hpp>
using namespace boost::filesystem;
using namespace boost::program_options;
using namespace Transport;
class YahooHandler;
class YahooLocalAccount;
static std::string *currently_read_data;
static YahooLocalAccount *currently_writting_account;
YahooHandler::YahooHandler(YahooLocalAccount *account, int conn_tag, int handler_tag, void *data, yahoo_input_condition cond) :
handler_tag(handler_tag), conn_tag(conn_tag), data(data), cond(cond), remove_later(false), account(account) {}
YahooHandler::~YahooHandler() {}
void YahooHandler::ready(std::string *buffer) {
if (cond == YAHOO_INPUT_WRITE) {
YahooLocalAccount *old = currently_writting_account;
currently_writting_account = account;
yahoo_write_ready(account->id, (void *) conn_tag, data);
currently_writting_account = old;
}
else {
if (!buffer) {
return;
}
// yahoo_read_ready calls ext_yahoo_read(...) in a loop, so we just have to choose proper buffer from which will
// that method read. We do that by static currently_read_data pointer.
currently_read_data = buffer;
// libyahoo2 reads data per 1024 bytes, so if we still have some data after the first ext_yahoo_read call,
// we have to call yahoo_read_ready again...
do {
yahoo_read_ready(account->id, (void *) conn_tag, data);
} while (currently_read_data->size() != 0);
}
}
typedef struct {
std::string yahoo_id;
std::string name;
int status;
int away;
std::string msg;
std::string group;
} yahoo_account;
typedef struct {
int id;
char *label;
} yahoo_idlabel;
typedef struct {
int id;
char *who;
} yahoo_authorize_data;
DEFINE_LOGGER(logger, "Yahoo2");
// eventloop
Swift::SimpleEventLoop *loop_;
// Plugin
class YahooPlugin;
YahooPlugin * np = NULL;
class YahooPlugin : public NetworkPlugin {
public:
Swift::BoostNetworkFactories *m_factories;
Swift::OpenSSLContextFactory *m_sslFactory;
Swift::TLSConnectionFactory *m_tlsFactory;
Swift::BoostIOServiceThread m_boostIOServiceThread;
boost::shared_ptr<Swift::Connection> m_conn;
YahooPlugin(Config *config, Swift::SimpleEventLoop *loop, const std::string &host, int port) : NetworkPlugin() {
this->config = config;
m_factories = new Swift::BoostNetworkFactories(loop);
m_sslFactory = new Swift::OpenSSLContextFactory();
m_tlsFactory = new Swift::TLSConnectionFactory(m_sslFactory, m_factories->getConnectionFactory());
m_conn = m_factories->getConnectionFactory()->createConnection();
m_conn->onDataRead.connect(boost::bind(&YahooPlugin::_handleDataRead, this, _1));
m_conn->connect(Swift::HostAddressPort(Swift::HostAddress(host), port));
LOG4CXX_INFO(logger, "Starting the plugin.");
}
// NetworkPlugin uses this method to send the data to networkplugin server
void sendData(const std::string &string) {
m_conn->write(Swift::createSafeByteArray(string));
}
// This method has to call handleDataRead with all received data from network plugin server
void _handleDataRead(boost::shared_ptr<Swift::SafeByteArray> data) {
std::string d(data->begin(), data->end());
handleDataRead(d);
}
void handleLoginRequest(const std::string &user, const std::string &legacyName, const std::string &password) {
YahooLocalAccount *account = new YahooLocalAccount(user, legacyName, password);
m_users[user] = account;
m_ids[account->id] = user;
LOG4CXX_INFO(logger, user << ": Logging in the user as " << legacyName << " with id=" << account->id);
account->login();
}
void handleLogoutRequest(const std::string &user, const std::string &legacyName) {
YahooLocalAccount *account = m_users[user];
if (account) {
yahoo_logoff(account->id);
m_ids.erase(account->id);
m_users.erase(user);
delete account;
}
}
void handleMessageSendRequest(const std::string &user, const std::string &legacyName, const std::string &message, const std::string &xhtml = "", const std::string &id = "") {
YahooLocalAccount *account = m_users[user];
if (account) {
LOG4CXX_INFO(logger, "Sending message from " << user << " to " << legacyName << ": " << message << ".");
yahoo_send_im(account->id, NULL, legacyName.c_str(), message.c_str(), 0, 0);
_yahoo_write_ready(account);
}
}
void handleBuddyUpdatedRequest(const std::string &user, const std::string &buddyName, const std::string &alias, const std::vector<std::string> &groups) {
LOG4CXX_INFO(logger, user << ": Added buddy " << buddyName << ".");
handleBuddyChanged(user, buddyName, alias, groups, pbnetwork::STATUS_ONLINE);
}
void _avatar_fetched(HTTPFetch *fetch, int account_id, unsigned int id, const std::string &img) {
handleVCard(m_ids[account_id], id, "", "", "", img);
delete fetch;
}
void handleVCardRequest(const std::string &user, const std::string &legacyName, unsigned int id) {
YahooLocalAccount *account = m_users[user];
if (!account) {
return;
}
if (account->urls.find(legacyName) == account->urls.end()) {
return;
}
HTTPFetch *fetch = new HTTPFetch(&m_boostIOServiceThread, m_factories->getConnectionFactory());
fetch->onURLFetched.connect(boost::bind(&YahooPlugin::_avatar_fetched, this, fetch, account->id, id, _1));
fetch->fetchURL(account->urls[legacyName]);
}
void handleBuddyRemovedRequest(const std::string &user, const std::string &buddyName, const std::vector<std::string> &groups) {
}
YahooLocalAccount *getAccount(int id) {
return m_users[m_ids[id]];
}
void _yahoo_remove_account(YahooLocalAccount *account) {
m_ids.erase(account->id);
m_users.erase(account->user);
delete account;
}
void _yahoo_connect_finished(YahooLocalAccount *account, yahoo_connect_callback callback, void *data, int conn_tag, bool error) {
currently_writting_account = account;
if (error) {
LOG4CXX_ERROR(logger, account->user << ": Connection error!");
callback(NULL, 0, data);
// np->handleDisconnected(user, 0, "Connection error.");
}
else {
LOG4CXX_INFO(logger, account->user << ": Connected");
// We will have dangling pointer here, but we can't pass boost::shared_ptr here...
callback((void *) conn_tag, 0, data);
}
}
void _yahoo_write_ready(YahooLocalAccount *account) {
// Find all WRITE handlers and inform that they really can write.
for (std::map<int, YahooHandler *>::iterator it = account->handlers.begin(); it != account->handlers.end(); it++) {
if (it->second->cond == YAHOO_INPUT_WRITE && !it->second->remove_later) {
it->second->ready();
}
}
}
void _yahoo_data_read(YahooLocalAccount *account, int conn_tag, boost::shared_ptr<Swift::SafeByteArray> data) {
std::string d(data->begin(), data->end());
// Find the handler that handles READing for this conn_tag
for (std::map<int, YahooHandler *>::iterator it = account->handlers_per_conn[conn_tag].begin(); it != account->handlers_per_conn[conn_tag].end(); it++) {
if (it->second->cond == YAHOO_INPUT_READ && !it->second->remove_later) {
std::string cpy(d);
it->second->ready(&cpy);
// Look like libyahoo2 needs to be informed it can write to socket after the read
// even we have informed it before...
_yahoo_write_ready(account);
break;
}
}
account->removeOldHandlers();
}
void _yahoo_data_written(YahooLocalAccount *account, int conn_tag) {
LOG4CXX_INFO(logger, "data written");
for (std::map<int, YahooHandler *>::iterator it = account->handlers_per_conn[conn_tag].begin(); it != account->handlers_per_conn[conn_tag].end(); it++) {
if (it->second->cond == YAHOO_INPUT_WRITE) {
it->second->ready();
}
}
account->removeOldHandlers();
}
void _yahoo_disconnected(YahooLocalAccount *account, int conn_tag, const boost::optional<Swift::Connection::Error> &error) {
for (std::map<int, YahooHandler *>::iterator it = account->handlers_per_conn[conn_tag].begin(); it != account->handlers_per_conn[conn_tag].end(); it++) {
if (it->second->cond == YAHOO_INPUT_READ && !it->second->remove_later) {
std::string cpy;
it->second->ready(&cpy);
_yahoo_write_ready(account);
break;
}
}
account->removeConn(conn_tag);
}
int _yahoo_connect_async(int id, const char *host, int port, yahoo_connect_callback callback, void *data, int use_ssl) {
YahooLocalAccount *account = getAccount(id);
if (!account) {
LOG4CXX_ERROR(logger, "Unknown account id=" << id);
return -1;
}
boost::asio::ip::tcp::resolver resolver(*m_boostIOServiceThread.getIOService());
boost::asio::ip::tcp::resolver::query query(host, "");
boost::asio::ip::address address;
for(boost::asio::ip::tcp::resolver::iterator i = resolver.resolve(query); i != boost::asio::ip::tcp::resolver::iterator(); ++i) {
boost::asio::ip::tcp::endpoint end = *i;
address = end.address();
break;
}
LOG4CXX_INFO(logger, m_ids[id] << ": Connecting " << host << ":" << port);
int tag = account->conn_tag++;
if (use_ssl) {
account->conns[tag] = m_tlsFactory->createConnection();
}
else {
account->conns[tag] = m_factories->getConnectionFactory()->createConnection();
}
account->conns[tag]->onConnectFinished.connect(boost::bind(&YahooPlugin::_yahoo_connect_finished, this, account, callback, data, tag, _1));
account->conns[tag]->onDisconnected.connect(boost::bind(&YahooPlugin::_yahoo_disconnected, this, account, tag, _1));
account->conns[tag]->onDataRead.connect(boost::bind(&YahooPlugin::_yahoo_data_read, this, account, tag, _1));
account->conns[tag]->onDataWritten.connect(boost::bind(&YahooPlugin::_yahoo_data_written, this, account, tag));
account->conns[tag]->connect(Swift::HostAddressPort(Swift::HostAddress(address), port));
return tag;
}
private:
Config *config;
std::map<std::string, YahooLocalAccount *> m_users;
std::map<int, std::string> m_ids;
};
static void spectrum_sigchld_handler(int sig)
{
int status;
pid_t pid;
do {
pid = waitpid(-1, &status, WNOHANG);
} while (pid != 0 && pid != (pid_t)-1);
if ((pid == (pid_t) - 1) && (errno != ECHILD)) {
char errmsg[BUFSIZ];
snprintf(errmsg, BUFSIZ, "Warning: waitpid() returned %d", pid);
perror(errmsg);
}
}
static void ext_yahoo_got_conf_invite(int id, const char *me, const char *who, const char *room, const char *msg, YList *members) {
}
static void ext_yahoo_conf_userdecline(int id, const char *me, const char *who, const char *room, const char *msg) {
}
static void ext_yahoo_conf_userjoin(int id, const char *me, const char *who, const char *room) {
}
static void ext_yahoo_conf_userleave(int id, const char *me, const char *who, const char *room) {
}
static void ext_yahoo_conf_message(int id, const char *me, const char *who, const char *room, const char *msg, int utf8) {
}
static void ext_yahoo_chat_cat_xml(int id, const char *xml) {
}
static void ext_yahoo_chat_join(int id, const char *me, const char *room, const char * topic, YList *members, void *fd) {
}
static void ext_yahoo_chat_userjoin(int id, const char *me, const char *room, struct yahoo_chat_member *who) {
}
static void ext_yahoo_chat_userleave(int id, const char *me, const char *room, const char *who) {
}
static void ext_yahoo_chat_message(int id, const char *me, const char *who, const char *room, const char *msg, int msgtype, int utf8) {
}
static void ext_yahoo_status_changed(int id, const char *who, int stat, const char *msg, int away, int idle, int mobile) {
YahooLocalAccount *account = np->getAccount(id);
if (!account) {
return;
}
LOG4CXX_INFO(logger, account->user << ": " << who << " status changed");
pbnetwork::StatusType status = pbnetwork::STATUS_NONE;
switch (stat) {
case YAHOO_STATUS_AVAILABLE:
status = pbnetwork::STATUS_ONLINE;
break;
case YAHOO_STATUS_NOTATHOME:
case YAHOO_STATUS_NOTATDESK:
case YAHOO_STATUS_NOTINOFFICE:
case YAHOO_STATUS_ONPHONE:
case YAHOO_STATUS_ONVACATION:
case YAHOO_STATUS_OUTTOLUNCH:
case YAHOO_STATUS_STEPPEDOUT:
status = pbnetwork::STATUS_AWAY;
break;
case YAHOO_STATUS_BRB:
status = pbnetwork::STATUS_XA;
break;
case YAHOO_STATUS_BUSY:
status = pbnetwork::STATUS_DND;
break;
case YAHOO_STATUS_OFFLINE:
status = pbnetwork::STATUS_NONE;
break;
default:
status = pbnetwork::STATUS_ONLINE;
break;
}
yahoo_buddyicon_request(id, who);
np->_yahoo_write_ready(account);
np->handleBuddyChanged(account->user, who, "", std::vector<std::string>(), status, msg ? msg : "");
}
static void ext_yahoo_got_buddies(int id, YList * buds) {
YahooLocalAccount *account = np->getAccount(id);
if (!account) {
return;
}
LOG4CXX_INFO(logger, account->user << ": Got buddy list");
for(; buds; buds = buds->next) {
struct yahoo_buddy *bud = (struct yahoo_buddy *) buds->data;
std::vector<std::string> groups;
groups.push_back(bud->group);
np->handleBuddyChanged(account->user, bud->id, bud->real_name ? bud->real_name : "", groups, pbnetwork::STATUS_NONE);
}
// yahoo_set_away(id, YAHOO_STATUS_AVAILABLE, "", 1);
np->_yahoo_write_ready(account);
np->handleConnected(account->user);
}
static void ext_yahoo_got_ignore(int id, YList * igns)
{
}
static void ext_yahoo_got_buzz(int id, const char *me, const char *who, long tm) {
}
static void ext_yahoo_got_im(int id, const char *me, const char *who, const char *msg, long tm, int stat, int utf8) {
YahooLocalAccount *account = np->getAccount(id);
if (!account) {
return;
}
np->handleMessage(account->user, who, msg);
}
static void ext_yahoo_rejected(int id, const char *who, const char *msg) {
}
static void ext_yahoo_contact_added(int id, const char *myid, const char *who, const char *msg) {
}
static void ext_yahoo_typing_notify(int id, const char* me, const char *who, int stat) {
}
static void ext_yahoo_game_notify(int id, const char *me, const char *who, int stat, const char *msg)
{
}
static void ext_yahoo_mail_notify(int id, const char *from, const char *subj, int cnt) {
}
static void ext_yahoo_got_webcam_image(int id, const char *who, const unsigned char *image, unsigned int image_size, unsigned int real_size, unsigned int timestamp) {
}
static void ext_yahoo_webcam_viewer(int id, const char *who, int connect) {
}
static void ext_yahoo_webcam_closed(int id, const char *who, int reason) {
}
static void ext_yahoo_webcam_data_request(int id, int send) {
}
static void ext_yahoo_webcam_invite(int id, const char *me, const char *from) {
}
static void ext_yahoo_webcam_invite_reply(int id, const char *me, const char *from, int accept) {
}
static void ext_yahoo_system_message(int id, const char *me, const char *who, const char *msg) {
}
static void ext_yahoo_got_cookies(int id) {
}
static void ext_yahoo_login_response(int id, int succ, const char *url) {
YahooLocalAccount *account = np->getAccount(id);
if (!account) {
return;
}
if (succ == YAHOO_LOGIN_OK) {
account->status = yahoo_current_status(id);
// We will fire handleConnected in Got Buddy List.
return;
}
else if (succ == YAHOO_LOGIN_UNAME) {
np->handleDisconnected(account->user, 0, "Could not log into Yahoo service - username not recognised. Please verify that your username is correctly typed.");
}
else if (succ == YAHOO_LOGIN_PASSWD) {
np->handleDisconnected(account->user, 0, "Could not log into Yahoo service - password incorrect. Please verify that your password is correctly typed.");
}
else if (succ == YAHOO_LOGIN_LOCK) {
np->handleDisconnected(account->user, 0, std::string("Could not log into Yahoo service. Your account has been locked. Visit ") + url + " to reactivate it.");
}
else if (succ == YAHOO_LOGIN_DUPL) {
np->handleDisconnected(account->user, 0, "You have been logged out of the yahoo service, possibly due to a duplicate login.");
}
else if (succ == YAHOO_LOGIN_SOCK) {
np->handleDisconnected(account->user, 0, "The server closed the socket.");
}
else {
np->handleDisconnected(account->user, 0, "Could not log in, unknown reason.");
}
np->handleLogoutRequest(account->user, "");
}
static void ext_yahoo_error(int id, const char *_err, int fatal, int num) {
std::string err(_err);
std::string msg("Yahoo Error: ");
msg += err + " - ";
switch(num) {
case E_UNKNOWN:
msg += "unknown error " + err;
break;
case E_CUSTOM:
msg += "custom error " + err;
break;
case E_CONFNOTAVAIL:
msg += err + " is not available for the conference";
break;
case E_IGNOREDUP:
msg += err + " is already ignored";
break;
case E_IGNORENONE:
msg += err +" is not in the ignore list";
break;
case E_IGNORECONF:
msg += err + " is in buddy list - cannot ignore ";
break;
case E_SYSTEM:
msg += "system error " + err;
break;
case E_CONNECTION:
msg += err + "server connection error %s";
break;
}
LOG4CXX_ERROR(logger, msg);
YahooLocalAccount *account = np->getAccount(id);
if (!account) {
return;
}
if(fatal) {
np->handleDisconnected(account->user, 0, msg);
np->handleLogoutRequest(account->user, "");
}
}
static int ext_yahoo_connect(const char *host, int port) {
return -1;
}
static int ext_yahoo_add_handler(int id, void *fd, yahoo_input_condition cond, void *data) {
YahooLocalAccount *account = np->getAccount(id);
if (!account) {
return -1;
}
int conn_tag = (unsigned long) fd;
YahooHandler *handler = new YahooHandler(account, conn_tag, account->handler_tag++, data, cond);
account->addHandler(handler);
// We are ready to write right now, so why not...
handler->ready();
return handler->handler_tag;
}
static void ext_yahoo_remove_handler(int id, int tag) {
YahooLocalAccount *account = np->getAccount(id);
if (!account) {
return;
}
if (account->handlers.find(tag) == account->handlers.end()) {
return;
}
YahooHandler *handler = account->handlers[tag];
handler->remove_later = true;
}
static int ext_yahoo_write(void *fd, char *buf, int len) {
int conn_tag = (unsigned long) fd;
YahooLocalAccount *account = currently_writting_account;
std::string string(buf, len);
account->conns[conn_tag]->write(Swift::createSafeByteArray(string));
return len;
}
static int ext_yahoo_read(void *fd, char *buf, int len) {
if (currently_read_data->size() < len) {
len = currently_read_data->size();
}
memcpy(buf, currently_read_data->c_str(), len);
currently_read_data->erase(0, len);
return len;
}
static void ext_yahoo_close(void *fd) {
// No need to do anything here. We close it properly in _yahoo_disconnected(...);
}
static int ext_yahoo_connect_async(int id, const char *host, int port, yahoo_connect_callback callback, void *data, int use_ssl) {
return np->_yahoo_connect_async(id, host, port, callback, data, use_ssl);
}
static void ext_yahoo_got_file(int id, const char *me, const char *who, const char *msg, const char *fname, unsigned long fesize, char *trid) {
}
static void ext_yahoo_file_transfer_done(int id, int response, void *data) {
}
static char *ext_yahoo_get_ip_addr(const char *domain) {
return NULL;
}
static void ext_yahoo_got_ft_data(int id, const unsigned char *in, int count, void *data) {
}
static void ext_yahoo_got_identities(int id, YList * ids) {
}
static void ext_yahoo_chat_yahoologout(int id, const char *me) {
}
static void ext_yahoo_chat_yahooerror(int id, const char *me) {
}
static void ext_yahoo_got_ping(int id, const char *errormsg){
}
static void ext_yahoo_got_search_result(int id, int found, int start, int total, YList *contacts) {
}
static void ext_yahoo_got_buddyicon_checksum(int id, const char *a, const char *b, int checksum) {
LOG4CXX_INFO(logger, "got buddyicon_checksum");
}
static void ext_yahoo_got_buddy_change_group(int id, const char *me, const char *who, const char *old_group, const char *new_group) {
}
static void ext_yahoo_got_buddyicon(int id, const char *me, const char *who, const char *url, int checksum) {
YahooLocalAccount *account = np->getAccount(id);
if (!account) {
return;
}
LOG4CXX_INFO(logger, account->user << ": got buddyicon of " << who);
account->urls[who] = url;
}
static void ext_yahoo_buddyicon_uploaded(int id, const char *url) {
}
static void ext_yahoo_got_buddyicon_request(int id, const char *me, const char *who) {
LOG4CXX_INFO(logger, "got buddyicon_request");
}
static int ext_yahoo_log(const char *fmt,...)
{
static char log[8192];
static std::string buffered;
va_list ap;
va_start(ap, fmt);
vsnprintf(log, 8191, fmt, ap);
buffered += log;
if (buffered.find('\n') != std::string::npos) {
buffered.erase(buffered.find('\n'), 1);
LOG4CXX_INFO(logger, buffered);
buffered.clear();
}
fflush(stderr);
va_end(ap);
return 0;
}
static void register_callbacks()
{
static struct yahoo_callbacks yc;
yc.ext_yahoo_login_response = ext_yahoo_login_response;
yc.ext_yahoo_got_buddies = ext_yahoo_got_buddies;
yc.ext_yahoo_got_ignore = ext_yahoo_got_ignore;
yc.ext_yahoo_got_identities = ext_yahoo_got_identities;
yc.ext_yahoo_got_cookies = ext_yahoo_got_cookies;
yc.ext_yahoo_status_changed = ext_yahoo_status_changed;
yc.ext_yahoo_got_im = ext_yahoo_got_im;
yc.ext_yahoo_got_buzz = ext_yahoo_got_buzz;
yc.ext_yahoo_got_conf_invite = ext_yahoo_got_conf_invite;
yc.ext_yahoo_conf_userdecline = ext_yahoo_conf_userdecline;
yc.ext_yahoo_conf_userjoin = ext_yahoo_conf_userjoin;
yc.ext_yahoo_conf_userleave = ext_yahoo_conf_userleave;
yc.ext_yahoo_conf_message = ext_yahoo_conf_message;
yc.ext_yahoo_chat_cat_xml = ext_yahoo_chat_cat_xml;
yc.ext_yahoo_chat_join = ext_yahoo_chat_join;
yc.ext_yahoo_chat_userjoin = ext_yahoo_chat_userjoin;
yc.ext_yahoo_chat_userleave = ext_yahoo_chat_userleave;
yc.ext_yahoo_chat_message = ext_yahoo_chat_message;
yc.ext_yahoo_chat_yahoologout = ext_yahoo_chat_yahoologout;
yc.ext_yahoo_chat_yahooerror = ext_yahoo_chat_yahooerror;
yc.ext_yahoo_got_webcam_image = ext_yahoo_got_webcam_image;
yc.ext_yahoo_webcam_invite = ext_yahoo_webcam_invite;
yc.ext_yahoo_webcam_invite_reply = ext_yahoo_webcam_invite_reply;
yc.ext_yahoo_webcam_closed = ext_yahoo_webcam_closed;
yc.ext_yahoo_webcam_viewer = ext_yahoo_webcam_viewer;
yc.ext_yahoo_webcam_data_request = ext_yahoo_webcam_data_request;
yc.ext_yahoo_got_file = ext_yahoo_got_file;
yc.ext_yahoo_got_ft_data = ext_yahoo_got_ft_data;
yc.ext_yahoo_get_ip_addr = ext_yahoo_get_ip_addr;
yc.ext_yahoo_file_transfer_done = ext_yahoo_file_transfer_done;
yc.ext_yahoo_contact_added = ext_yahoo_contact_added;
yc.ext_yahoo_rejected = ext_yahoo_rejected;
yc.ext_yahoo_typing_notify = ext_yahoo_typing_notify;
yc.ext_yahoo_game_notify = ext_yahoo_game_notify;
yc.ext_yahoo_mail_notify = ext_yahoo_mail_notify;
yc.ext_yahoo_got_search_result = ext_yahoo_got_search_result;
yc.ext_yahoo_system_message = ext_yahoo_system_message;
yc.ext_yahoo_error = ext_yahoo_error;
yc.ext_yahoo_log = ext_yahoo_log;
yc.ext_yahoo_add_handler = ext_yahoo_add_handler;
yc.ext_yahoo_remove_handler = ext_yahoo_remove_handler;
yc.ext_yahoo_connect = ext_yahoo_connect;
yc.ext_yahoo_connect_async = ext_yahoo_connect_async;
yc.ext_yahoo_read = ext_yahoo_read;
yc.ext_yahoo_write = ext_yahoo_write;
yc.ext_yahoo_close = ext_yahoo_close;
yc.ext_yahoo_got_buddyicon = ext_yahoo_got_buddyicon;
yc.ext_yahoo_got_buddyicon_checksum = ext_yahoo_got_buddyicon_checksum;
yc.ext_yahoo_buddyicon_uploaded = ext_yahoo_buddyicon_uploaded;
yc.ext_yahoo_got_buddyicon_request = ext_yahoo_got_buddyicon_request;
yc.ext_yahoo_got_ping = ext_yahoo_got_ping;
yc.ext_yahoo_got_buddy_change_group = ext_yahoo_got_buddy_change_group;
yahoo_register_callbacks(&yc);
}
int main (int argc, char* argv[]) {
std::string host;
int port;
#ifndef _WIN32
if (signal(SIGCHLD, spectrum_sigchld_handler) == SIG_ERR) {
std::cout << "SIGCHLD handler can't be set\n";
return -1;
}
#endif
std::string error;
Config *cfg = Config::createFromArgs(argc, argv, error, host, port);
if (cfg == NULL) {
std::cerr << error;
return 1;
}
Logging::initBackendLogging(cfg);
register_callbacks();
yahoo_set_log_level(YAHOO_LOG_DEBUG);
Swift::SimpleEventLoop eventLoop;
loop_ = &eventLoop;
np = new YahooPlugin(cfg, &eventLoop, host, port);
loop_->run();
return 0;
}
|