From 5a2675d174e661c55843b3795afe2d688e7197f9 Mon Sep 17 00:00:00 2001 From: brain Date: Tue, 26 Apr 2005 17:15:49 +0000 Subject: New documentation! git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1199 e03df62e-2008-0410-955e-edbf42e46eb7 --- docs/module-doc/modules_8cpp-source.html | 1246 +++++++++++++++--------------- 1 file changed, 624 insertions(+), 622 deletions(-) (limited to 'docs/module-doc/modules_8cpp-source.html') diff --git a/docs/module-doc/modules_8cpp-source.html b/docs/module-doc/modules_8cpp-source.html index 48b1ce27a..6d4455628 100644 --- a/docs/module-doc/modules_8cpp-source.html +++ b/docs/module-doc/modules_8cpp-source.html @@ -412,632 +412,634 @@ 00405 int Module::OnMeshToken(char token,string_list params,serverrec* source,serverrec* reply, std::string tcp_host,std::string ipaddr,int port) { return 0; }; 00406 void Module::OnEvent(Event* event) { return; }; 00407 char* Module::OnRequest(Request* request) { return NULL; }; -00408 -00409 -00410 // server is a wrapper class that provides methods to all of the C-style -00411 // exports in the core -00412 // -00413 -00414 Server::Server() -00415 { -00416 } -00417 -00418 Server::~Server() -00419 { -00420 } -00421 -00422 void Server::SendOpers(std::string s) -00423 { -00424 WriteOpers("%s",s.c_str()); -00425 } -00426 -00427 bool Server::MatchText(std::string sliteral, std::string spattern) -00428 { -00429 char literal[MAXBUF],pattern[MAXBUF]; -00430 strlcpy(literal,sliteral.c_str(),MAXBUF); -00431 strlcpy(pattern,spattern.c_str(),MAXBUF); -00432 return match(literal,pattern); -00433 } -00434 -00435 void Server::SendToModeMask(std::string modes, int flags, std::string text) -00436 { -00437 WriteMode(modes.c_str(),flags,"%s",text.c_str()); -00438 } -00439 -00440 chanrec* Server::JoinUserToChannel(userrec* user, std::string cname, std::string key) -00441 { -00442 return add_channel(user,cname.c_str(),key.c_str(),true); -00443 } -00444 -00445 chanrec* Server::PartUserFromChannel(userrec* user, std::string cname, std::string reason) -00446 { -00447 return del_channel(user,cname.c_str(),reason.c_str(),false); -00448 } -00449 -00450 chanuserlist Server::GetUsers(chanrec* chan) -00451 { -00452 chanuserlist userl; -00453 userl.clear(); -00454 for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++) -00455 { -00456 if (i->second) -00457 { -00458 if (has_channel(i->second,chan)) -00459 { -00460 if (isnick(i->second->nick)) -00461 { -00462 userl.push_back(i->second); -00463 } -00464 } -00465 } -00466 } -00467 return userl; -00468 } -00469 void Server::ChangeUserNick(userrec* user, std::string nickname) -00470 { -00471 force_nickchange(user,nickname.c_str()); -00472 } -00473 -00474 void Server::QuitUser(userrec* user, std::string reason) -00475 { -00476 send_network_quit(user->nick,reason.c_str()); -00477 kill_link(user,reason.c_str()); -00478 } -00479 -00480 bool Server::IsUlined(std::string server) -00481 { -00482 return is_uline(server.c_str()); -00483 } -00484 -00485 void Server::CallCommandHandler(std::string commandname, char** parameters, int pcnt, userrec* user) -00486 { -00487 call_handler(commandname.c_str(),parameters,pcnt,user); -00488 } -00489 -00490 void Server::Log(int level, std::string s) -00491 { -00492 log(level,"%s",s.c_str()); -00493 } -00494 -00495 void Server::AddCommand(char* cmd, handlerfunc f, char flags, int minparams, char* source) -00496 { -00497 createcommand(cmd,f,flags,minparams,source); -00498 } -00499 -00500 void Server::SendMode(char **parameters, int pcnt, userrec *user) -00501 { -00502 server_mode(parameters,pcnt,user); -00503 } -00504 -00505 void Server::Send(int Socket, std::string s) -00506 { -00507 Write(Socket,"%s",s.c_str()); -00508 } -00509 -00510 void Server::SendServ(int Socket, std::string s) -00511 { -00512 WriteServ(Socket,"%s",s.c_str()); -00513 } -00514 -00515 void Server::SendFrom(int Socket, userrec* User, std::string s) -00516 { -00517 WriteFrom(Socket,User,"%s",s.c_str()); -00518 } -00519 -00520 void Server::SendTo(userrec* Source, userrec* Dest, std::string s) -00521 { -00522 if (!Source) -00523 { -00524 // if source is NULL, then the message originates from the local server -00525 Write(Dest->fd,":%s %s",this->GetServerName().c_str(),s.c_str()); -00526 } -00527 else -00528 { -00529 // otherwise it comes from the user specified -00530 WriteTo(Source,Dest,"%s",s.c_str()); -00531 } -00532 } -00533 -00534 void Server::SendChannel(userrec* User, chanrec* Channel, std::string s,bool IncludeSender) -00535 { -00536 if (IncludeSender) -00537 { -00538 WriteChannel(Channel,User,"%s",s.c_str()); -00539 } -00540 else -00541 { -00542 ChanExceptSender(Channel,User,"%s",s.c_str()); -00543 } -00544 } -00545 -00546 bool Server::CommonChannels(userrec* u1, userrec* u2) -00547 { -00548 return (common_channels(u1,u2) != 0); -00549 } -00550 -00551 void Server::SendCommon(userrec* User, std::string text,bool IncludeSender) -00552 { -00553 if (IncludeSender) -00554 { -00555 WriteCommon(User,"%s",text.c_str()); -00556 } -00557 else -00558 { -00559 WriteCommonExcept(User,"%s",text.c_str()); -00560 } -00561 } -00562 -00563 void Server::SendWallops(userrec* User, std::string text) -00564 { -00565 WriteWallOps(User,false,"%s",text.c_str()); -00566 } -00567 -00568 void Server::ChangeHost(userrec* user, std::string host) -00569 { -00570 ChangeDisplayedHost(user,host.c_str()); -00571 } -00572 -00573 void Server::ChangeGECOS(userrec* user, std::string gecos) -00574 { -00575 ChangeName(user,gecos.c_str()); -00576 } -00577 -00578 bool Server::IsNick(std::string nick) -00579 { -00580 return (isnick(nick.c_str()) != 0); -00581 } -00582 -00583 userrec* Server::FindNick(std::string nick) -00584 { -00585 return Find(nick); -00586 } -00587 -00588 chanrec* Server::FindChannel(std::string channel) -00589 { -00590 return FindChan(channel.c_str()); -00591 } -00592 -00593 std::string Server::ChanMode(userrec* User, chanrec* Chan) -00594 { -00595 return cmode(User,Chan); -00596 } -00597 -00598 bool Server::IsOnChannel(userrec* User, chanrec* Chan) -00599 { -00600 return has_channel(User,Chan); -00601 } -00602 -00603 std::string Server::GetServerName() -00604 { -00605 return getservername(); -00606 } -00607 -00608 std::string Server::GetNetworkName() -00609 { -00610 return getnetworkname(); -00611 } -00612 -00613 Admin Server::GetAdmin() -00614 { -00615 return Admin(getadminname(),getadminemail(),getadminnick()); -00616 } -00617 -00618 +00408 int Module::OnOperCompare(std::string password, std::string input) { return 0; }; +00409 void Module::OnGlobalOper(userrec* user) { }; +00410 void Module::OnGlobalConnect(userrec* user) { }; +00411 +00412 // server is a wrapper class that provides methods to all of the C-style +00413 // exports in the core +00414 // +00415 +00416 Server::Server() +00417 { +00418 } +00419 +00420 Server::~Server() +00421 { +00422 } +00423 +00424 void Server::SendOpers(std::string s) +00425 { +00426 WriteOpers("%s",s.c_str()); +00427 } +00428 +00429 bool Server::MatchText(std::string sliteral, std::string spattern) +00430 { +00431 char literal[MAXBUF],pattern[MAXBUF]; +00432 strlcpy(literal,sliteral.c_str(),MAXBUF); +00433 strlcpy(pattern,spattern.c_str(),MAXBUF); +00434 return match(literal,pattern); +00435 } +00436 +00437 void Server::SendToModeMask(std::string modes, int flags, std::string text) +00438 { +00439 WriteMode(modes.c_str(),flags,"%s",text.c_str()); +00440 } +00441 +00442 chanrec* Server::JoinUserToChannel(userrec* user, std::string cname, std::string key) +00443 { +00444 return add_channel(user,cname.c_str(),key.c_str(),true); +00445 } +00446 +00447 chanrec* Server::PartUserFromChannel(userrec* user, std::string cname, std::string reason) +00448 { +00449 return del_channel(user,cname.c_str(),reason.c_str(),false); +00450 } +00451 +00452 chanuserlist Server::GetUsers(chanrec* chan) +00453 { +00454 chanuserlist userl; +00455 userl.clear(); +00456 for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++) +00457 { +00458 if (i->second) +00459 { +00460 if (has_channel(i->second,chan)) +00461 { +00462 if (isnick(i->second->nick)) +00463 { +00464 userl.push_back(i->second); +00465 } +00466 } +00467 } +00468 } +00469 return userl; +00470 } +00471 void Server::ChangeUserNick(userrec* user, std::string nickname) +00472 { +00473 force_nickchange(user,nickname.c_str()); +00474 } +00475 +00476 void Server::QuitUser(userrec* user, std::string reason) +00477 { +00478 send_network_quit(user->nick,reason.c_str()); +00479 kill_link(user,reason.c_str()); +00480 } +00481 +00482 bool Server::IsUlined(std::string server) +00483 { +00484 return is_uline(server.c_str()); +00485 } +00486 +00487 void Server::CallCommandHandler(std::string commandname, char** parameters, int pcnt, userrec* user) +00488 { +00489 call_handler(commandname.c_str(),parameters,pcnt,user); +00490 } +00491 +00492 void Server::Log(int level, std::string s) +00493 { +00494 log(level,"%s",s.c_str()); +00495 } +00496 +00497 void Server::AddCommand(char* cmd, handlerfunc f, char flags, int minparams, char* source) +00498 { +00499 createcommand(cmd,f,flags,minparams,source); +00500 } +00501 +00502 void Server::SendMode(char **parameters, int pcnt, userrec *user) +00503 { +00504 server_mode(parameters,pcnt,user); +00505 } +00506 +00507 void Server::Send(int Socket, std::string s) +00508 { +00509 Write(Socket,"%s",s.c_str()); +00510 } +00511 +00512 void Server::SendServ(int Socket, std::string s) +00513 { +00514 WriteServ(Socket,"%s",s.c_str()); +00515 } +00516 +00517 void Server::SendFrom(int Socket, userrec* User, std::string s) +00518 { +00519 WriteFrom(Socket,User,"%s",s.c_str()); +00520 } +00521 +00522 void Server::SendTo(userrec* Source, userrec* Dest, std::string s) +00523 { +00524 if (!Source) +00525 { +00526 // if source is NULL, then the message originates from the local server +00527 Write(Dest->fd,":%s %s",this->GetServerName().c_str(),s.c_str()); +00528 } +00529 else +00530 { +00531 // otherwise it comes from the user specified +00532 WriteTo(Source,Dest,"%s",s.c_str()); +00533 } +00534 } +00535 +00536 void Server::SendChannel(userrec* User, chanrec* Channel, std::string s,bool IncludeSender) +00537 { +00538 if (IncludeSender) +00539 { +00540 WriteChannel(Channel,User,"%s",s.c_str()); +00541 } +00542 else +00543 { +00544 ChanExceptSender(Channel,User,"%s",s.c_str()); +00545 } +00546 } +00547 +00548 bool Server::CommonChannels(userrec* u1, userrec* u2) +00549 { +00550 return (common_channels(u1,u2) != 0); +00551 } +00552 +00553 void Server::SendCommon(userrec* User, std::string text,bool IncludeSender) +00554 { +00555 if (IncludeSender) +00556 { +00557 WriteCommon(User,"%s",text.c_str()); +00558 } +00559 else +00560 { +00561 WriteCommonExcept(User,"%s",text.c_str()); +00562 } +00563 } +00564 +00565 void Server::SendWallops(userrec* User, std::string text) +00566 { +00567 WriteWallOps(User,false,"%s",text.c_str()); +00568 } +00569 +00570 void Server::ChangeHost(userrec* user, std::string host) +00571 { +00572 ChangeDisplayedHost(user,host.c_str()); +00573 } +00574 +00575 void Server::ChangeGECOS(userrec* user, std::string gecos) +00576 { +00577 ChangeName(user,gecos.c_str()); +00578 } +00579 +00580 bool Server::IsNick(std::string nick) +00581 { +00582 return (isnick(nick.c_str()) != 0); +00583 } +00584 +00585 userrec* Server::FindNick(std::string nick) +00586 { +00587 return Find(nick); +00588 } +00589 +00590 chanrec* Server::FindChannel(std::string channel) +00591 { +00592 return FindChan(channel.c_str()); +00593 } +00594 +00595 std::string Server::ChanMode(userrec* User, chanrec* Chan) +00596 { +00597 return cmode(User,Chan); +00598 } +00599 +00600 bool Server::IsOnChannel(userrec* User, chanrec* Chan) +00601 { +00602 return has_channel(User,Chan); +00603 } +00604 +00605 std::string Server::GetServerName() +00606 { +00607 return getservername(); +00608 } +00609 +00610 std::string Server::GetNetworkName() +00611 { +00612 return getnetworkname(); +00613 } +00614 +00615 Admin Server::GetAdmin() +00616 { +00617 return Admin(getadminname(),getadminemail(),getadminnick()); +00618 } 00619 -00620 bool Server::AddExtendedMode(char modechar, int type, bool requires_oper, int params_when_on, int params_when_off) -00621 { -00622 if (type == MT_SERVER) -00623 { -00624 log(DEBUG,"*** API ERROR *** Modes of type MT_SERVER are reserved for future expansion"); -00625 return false; -00626 } -00627 if (((params_when_on>0) || (params_when_off>0)) && (type == MT_CLIENT)) -00628 { -00629 log(DEBUG,"*** API ERROR *** Parameters on MT_CLIENT modes are not supported"); -00630 return false; -00631 } -00632 if ((params_when_on>1) || (params_when_off>1)) -00633 { -00634 log(DEBUG,"*** API ERROR *** More than one parameter for an MT_CHANNEL mode is not yet supported"); -00635 return false; -00636 } -00637 return DoAddExtendedMode(modechar,type,requires_oper,params_when_on,params_when_off); -00638 } -00639 -00640 bool Server::AddExtendedListMode(char modechar) -00641 { -00642 bool res = DoAddExtendedMode(modechar,MT_CHANNEL,false,1,1); -00643 if (res) -00644 ModeMakeList(modechar); -00645 return res; -00646 } -00647 -00648 int Server::CountUsers(chanrec* c) -00649 { -00650 return usercount(c); -00651 } -00652 -00653 -00654 bool Server::UserToPseudo(userrec* user,std::string message) -00655 { -00656 unsigned int old_fd = user->fd; -00657 user->fd = FD_MAGIC_NUMBER; -00658 Write(old_fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,message.c_str()); -00659 close(old_fd); -00660 shutdown (old_fd,2); -00661 } -00662 -00663 bool Server::PseudoToUser(userrec* alive,userrec* zombie,std::string message) -00664 { -00665 zombie->fd = alive->fd; -00666 alive->fd = FD_MAGIC_NUMBER; -00667 Write(zombie->fd,":%s!%s@%s NICK %s",alive->nick,alive->ident,alive->host,zombie->nick); -00668 kill_link(alive,message.c_str()); -00669 for (int i = 0; i != MAXCHANS; i++) -00670 { -00671 if (zombie->chans[i].channel != NULL) -00672 { -00673 if (zombie->chans[i].channel->name) -00674 { -00675 chanrec* Ptr = zombie->chans[i].channel; -00676 WriteFrom(zombie->fd,zombie,"JOIN %s",Ptr->name); -00677 if (Ptr->topicset) -00678 { -00679 WriteServ(zombie->fd,"332 %s %s :%s", zombie->nick, Ptr->name, Ptr->topic); -00680 WriteServ(zombie->fd,"333 %s %s %s %d", zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset); -00681 } -00682 userlist(zombie,Ptr); -00683 WriteServ(zombie->fd,"366 %s %s :End of /NAMES list.", zombie->nick, Ptr->name); -00684 //WriteServ(zombie->fd,"324 %s %s +%s",zombie->nick, Ptr->name,chanmodes(Ptr)); -00685 //WriteServ(zombie->fd,"329 %s %s %d", zombie->nick, Ptr->name, Ptr->created); -00686 -00687 } -00688 } -00689 } -00690 -00691 } +00620 +00621 +00622 bool Server::AddExtendedMode(char modechar, int type, bool requires_oper, int params_when_on, int params_when_off) +00623 { +00624 if (type == MT_SERVER) +00625 { +00626 log(DEBUG,"*** API ERROR *** Modes of type MT_SERVER are reserved for future expansion"); +00627 return false; +00628 } +00629 if (((params_when_on>0) || (params_when_off>0)) && (type == MT_CLIENT)) +00630 { +00631 log(DEBUG,"*** API ERROR *** Parameters on MT_CLIENT modes are not supported"); +00632 return false; +00633 } +00634 if ((params_when_on>1) || (params_when_off>1)) +00635 { +00636 log(DEBUG,"*** API ERROR *** More than one parameter for an MT_CHANNEL mode is not yet supported"); +00637 return false; +00638 } +00639 return DoAddExtendedMode(modechar,type,requires_oper,params_when_on,params_when_off); +00640 } +00641 +00642 bool Server::AddExtendedListMode(char modechar) +00643 { +00644 bool res = DoAddExtendedMode(modechar,MT_CHANNEL,false,1,1); +00645 if (res) +00646 ModeMakeList(modechar); +00647 return res; +00648 } +00649 +00650 int Server::CountUsers(chanrec* c) +00651 { +00652 return usercount(c); +00653 } +00654 +00655 +00656 bool Server::UserToPseudo(userrec* user,std::string message) +00657 { +00658 unsigned int old_fd = user->fd; +00659 user->fd = FD_MAGIC_NUMBER; +00660 Write(old_fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,message.c_str()); +00661 close(old_fd); +00662 shutdown (old_fd,2); +00663 } +00664 +00665 bool Server::PseudoToUser(userrec* alive,userrec* zombie,std::string message) +00666 { +00667 zombie->fd = alive->fd; +00668 alive->fd = FD_MAGIC_NUMBER; +00669 Write(zombie->fd,":%s!%s@%s NICK %s",alive->nick,alive->ident,alive->host,zombie->nick); +00670 kill_link(alive,message.c_str()); +00671 for (int i = 0; i != MAXCHANS; i++) +00672 { +00673 if (zombie->chans[i].channel != NULL) +00674 { +00675 if (zombie->chans[i].channel->name) +00676 { +00677 chanrec* Ptr = zombie->chans[i].channel; +00678 WriteFrom(zombie->fd,zombie,"JOIN %s",Ptr->name); +00679 if (Ptr->topicset) +00680 { +00681 WriteServ(zombie->fd,"332 %s %s :%s", zombie->nick, Ptr->name, Ptr->topic); +00682 WriteServ(zombie->fd,"333 %s %s %s %d", zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset); +00683 } +00684 userlist(zombie,Ptr); +00685 WriteServ(zombie->fd,"366 %s %s :End of /NAMES list.", zombie->nick, Ptr->name); +00686 //WriteServ(zombie->fd,"324 %s %s +%s",zombie->nick, Ptr->name,chanmodes(Ptr)); +00687 //WriteServ(zombie->fd,"329 %s %s %d", zombie->nick, Ptr->name, Ptr->created); +00688 +00689 } +00690 } +00691 } 00692 -00693 void Server::AddGLine(long duration, std::string source, std::string reason, std::string hostmask) -00694 { -00695 add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); -00696 } -00697 -00698 void Server::AddQLine(long duration, std::string source, std::string reason, std::string nickname) -00699 { -00700 add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str()); -00701 } -00702 -00703 void Server::AddZLine(long duration, std::string source, std::string reason, std::string ipaddr) -00704 { -00705 add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str()); -00706 } -00707 -00708 void Server::AddKLine(long duration, std::string source, std::string reason, std::string hostmask) -00709 { -00710 add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); -00711 } -00712 -00713 void Server::AddELine(long duration, std::string source, std::string reason, std::string hostmask) -00714 { -00715 add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); -00716 } -00717 -00718 bool Server::DelGLine(std::string hostmask) -00719 { -00720 del_gline(hostmask.c_str()); -00721 } -00722 -00723 bool Server::DelQLine(std::string nickname) -00724 { -00725 del_qline(nickname.c_str()); -00726 } -00727 -00728 bool Server::DelZLine(std::string ipaddr) -00729 { -00730 del_zline(ipaddr.c_str()); -00731 } -00732 -00733 bool Server::DelKLine(std::string hostmask) -00734 { -00735 del_kline(hostmask.c_str()); -00736 } -00737 -00738 bool Server::DelELine(std::string hostmask) -00739 { -00740 del_eline(hostmask.c_str()); -00741 } -00742 -00743 long Server::CalcDuration(std::string delta) -00744 { -00745 return duration(delta.c_str()); -00746 } -00747 -00748 bool Server::IsValidMask(std::string mask) -00749 { -00750 const char* dest = mask.c_str(); -00751 if (strchr(dest,'!')==0) -00752 return false; -00753 if (strchr(dest,'@')==0) +00693 } +00694 +00695 void Server::AddGLine(long duration, std::string source, std::string reason, std::string hostmask) +00696 { +00697 add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); +00698 } +00699 +00700 void Server::AddQLine(long duration, std::string source, std::string reason, std::string nickname) +00701 { +00702 add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str()); +00703 } +00704 +00705 void Server::AddZLine(long duration, std::string source, std::string reason, std::string ipaddr) +00706 { +00707 add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str()); +00708 } +00709 +00710 void Server::AddKLine(long duration, std::string source, std::string reason, std::string hostmask) +00711 { +00712 add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); +00713 } +00714 +00715 void Server::AddELine(long duration, std::string source, std::string reason, std::string hostmask) +00716 { +00717 add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); +00718 } +00719 +00720 bool Server::DelGLine(std::string hostmask) +00721 { +00722 del_gline(hostmask.c_str()); +00723 } +00724 +00725 bool Server::DelQLine(std::string nickname) +00726 { +00727 del_qline(nickname.c_str()); +00728 } +00729 +00730 bool Server::DelZLine(std::string ipaddr) +00731 { +00732 del_zline(ipaddr.c_str()); +00733 } +00734 +00735 bool Server::DelKLine(std::string hostmask) +00736 { +00737 del_kline(hostmask.c_str()); +00738 } +00739 +00740 bool Server::DelELine(std::string hostmask) +00741 { +00742 del_eline(hostmask.c_str()); +00743 } +00744 +00745 long Server::CalcDuration(std::string delta) +00746 { +00747 return duration(delta.c_str()); +00748 } +00749 +00750 bool Server::IsValidMask(std::string mask) +00751 { +00752 const char* dest = mask.c_str(); +00753 if (strchr(dest,'!')==0) 00754 return false; -00755 for (int i = 0; i < strlen(dest); i++) -00756 if (dest[i] < 32) -00757 return false; -00758 for (int i = 0; i < strlen(dest); i++) -00759 if (dest[i] > 126) -00760 return false; -00761 int c = 0; -00762 for (int i = 0; i < strlen(dest); i++) -00763 if (dest[i] == '!') -00764 c++; -00765 if (c>1) -00766 return false; -00767 c = 0; -00768 for (int i = 0; i < strlen(dest); i++) -00769 if (dest[i] == '@') -00770 c++; -00771 if (c>1) -00772 return false; -00773 -00774 return true; -00775 } -00776 -00777 void Server::MeshSendAll(std::string text) -00778 { -00779 NetSendToAll((char*)text.c_str()); -00780 } -00781 -00782 void Server::MeshSendCommon(userrec* user, std::string text) -00783 { -00784 if (user) -00785 NetSendToCommon(user,(char*)text.c_str()); -00786 } -00787 -00788 void Server::MeshSendAllAlive(std::string text) -00789 { -00790 NetSendToAllAlive((char*)text.c_str()); -00791 } -00792 -00793 void Server::MeshSendUnicast(std::string destination, std::string text) -00794 { -00795 NetSendToOne((char*)destination.c_str(),(char*)text.c_str()); -00796 } -00797 -00798 void Server::MeshSendAllExcept(std::string target, std::string text) -00799 { -00800 NetSendToAllExcept(target.c_str(),(char*)text.c_str()); -00801 } -00802 -00803 bool Server::MeshCheckChan(chanrec *c,std::string servername) -00804 { -00805 if (c) -00806 { -00807 return ChanAnyOnThisServer(c,(char*)servername.c_str()); -00808 } -00809 else return false; -00810 } -00811 -00812 bool Server::MeshCheckCommon(userrec* u,std::string servername) -00813 { -00814 if (u) -00815 { -00816 return CommonOnThisServer(u,(char*)servername.c_str()); -00817 } -00818 else return false; -00819 } -00820 -00821 Module* Server::FindModule(std::string name) -00822 { -00823 for (int i = 0; i <= MODCOUNT; i++) -00824 { -00825 if (module_names[i] == name) -00826 { -00827 return modules[i]; -00828 } -00829 } -00830 return NULL; -00831 } -00832 -00833 ConfigReader::ConfigReader() -00834 { -00835 this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out); -00836 this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out); -00837 this->readerror = LoadConf(CONFIG_FILE,this->cache,this->errorlog); -00838 if (!this->readerror) -00839 this->error = CONF_FILE_NOT_FOUND; -00840 } -00841 -00842 -00843 ConfigReader::~ConfigReader() -00844 { -00845 if (this->cache) -00846 delete this->cache; -00847 if (this->errorlog) -00848 delete this->errorlog; -00849 } -00850 -00851 -00852 ConfigReader::ConfigReader(std::string filename) -00853 { -00854 this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out); -00855 this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out); -00856 this->readerror = LoadConf(filename.c_str(),this->cache,this->errorlog); -00857 if (!this->readerror) -00858 this->error = CONF_FILE_NOT_FOUND; -00859 }; -00860 -00861 std::string ConfigReader::ReadValue(std::string tag, std::string name, int index) -00862 { -00863 char val[MAXBUF]; -00864 char t[MAXBUF]; -00865 char n[MAXBUF]; -00866 strlcpy(t,tag.c_str(),MAXBUF); -00867 strlcpy(n,name.c_str(),MAXBUF); -00868 int res = ReadConf(cache,t,n,index,val); -00869 if (!res) -00870 { -00871 this->error = CONF_VALUE_NOT_FOUND; -00872 return ""; -00873 } -00874 return std::string(val); -00875 } -00876 -00877 bool ConfigReader::ReadFlag(std::string tag, std::string name, int index) -00878 { -00879 char val[MAXBUF]; -00880 char t[MAXBUF]; -00881 char n[MAXBUF]; -00882 strlcpy(t,tag.c_str(),MAXBUF); -00883 strlcpy(n,name.c_str(),MAXBUF); -00884 int res = ReadConf(cache,t,n,index,val); -00885 if (!res) -00886 { -00887 this->error = CONF_VALUE_NOT_FOUND; -00888 return false; -00889 } -00890 std::string s = val; -00891 return ((s == "yes") || (s == "YES") || (s == "true") || (s == "TRUE") || (s == "1")); -00892 } -00893 -00894 long ConfigReader::ReadInteger(std::string tag, std::string name, int index, bool needs_unsigned) -00895 { -00896 char val[MAXBUF]; -00897 char t[MAXBUF]; -00898 char n[MAXBUF]; -00899 strlcpy(t,tag.c_str(),MAXBUF); -00900 strlcpy(n,name.c_str(),MAXBUF); -00901 int res = ReadConf(cache,t,n,index,val); -00902 if (!res) -00903 { -00904 this->error = CONF_VALUE_NOT_FOUND; -00905 return 0; -00906 } -00907 for (int i = 0; i < strlen(val); i++) -00908 { -00909 if (!isdigit(val[i])) -00910 { -00911 this->error = CONF_NOT_A_NUMBER; -00912 return 0; -00913 } -00914 } -00915 if ((needs_unsigned) && (atoi(val)<0)) -00916 { -00917 this->error = CONF_NOT_UNSIGNED; -00918 return 0; -00919 } -00920 return atoi(val); -00921 } -00922 -00923 long ConfigReader::GetError() -00924 { -00925 long olderr = this->error; -00926 this->error = 0; -00927 return olderr; -00928 } -00929 -00930 void ConfigReader::DumpErrors(bool bail, userrec* user) -00931 { -00932 if (bail) -00933 { -00934 printf("There were errors in your configuration:\n%s",errorlog->str().c_str()); -00935 exit(0); -00936 } -00937 else -00938 { -00939 char dataline[1024]; -00940 if (user) -00941 { -00942 WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick); -00943 while (!errorlog->eof()) -00944 { -00945 errorlog->getline(dataline,1024); -00946 WriteServ(user->fd,"NOTICE %s :%s",user->nick,dataline); -00947 } -00948 } -00949 else -00950 { -00951 WriteOpers("There were errors in the configuration file:",user->nick); -00952 while (!errorlog->eof()) -00953 { -00954 errorlog->getline(dataline,1024); -00955 WriteOpers(dataline); -00956 } -00957 } -00958 return; -00959 } -00960 } -00961 -00962 -00963 int ConfigReader::Enumerate(std::string tag) -00964 { -00965 return EnumConf(cache,tag.c_str()); -00966 } -00967 -00968 int ConfigReader::EnumerateValues(std::string tag, int index) -00969 { -00970 return EnumValues(cache, tag.c_str(), index); -00971 } -00972 -00973 bool ConfigReader::Verify() -00974 { -00975 return this->readerror; -00976 } -00977 -00978 -00979 FileReader::FileReader(std::string filename) -00980 { -00981 file_cache c; -00982 readfile(c,filename.c_str()); -00983 this->fc = c; -00984 } -00985 -00986 FileReader::FileReader() -00987 { -00988 } -00989 -00990 void FileReader::LoadFile(std::string filename) -00991 { -00992 file_cache c; -00993 readfile(c,filename.c_str()); -00994 this->fc = c; -00995 } -00996 -00997 -00998 FileReader::~FileReader() -00999 { -01000 } -01001 -01002 bool FileReader::Exists() -01003 { -01004 if (fc.size() == 0) -01005 { -01006 return(false); -01007 } -01008 else -01009 { -01010 return(true); -01011 } -01012 } -01013 -01014 std::string FileReader::GetLine(int x) -01015 { -01016 if ((x<0) || (x>fc.size())) -01017 return ""; -01018 return fc[x]; -01019 } -01020 -01021 int FileReader::FileSize() -01022 { -01023 return fc.size(); -01024 } -01025 -01026 -01027 std::vector<Module*> modules(255); -01028 std::vector<ircd_module*> factory(255); -01029 -01030 int MODCOUNT = -1; +00755 if (strchr(dest,'@')==0) +00756 return false; +00757 for (int i = 0; i < strlen(dest); i++) +00758 if (dest[i] < 32) +00759 return false; +00760 for (int i = 0; i < strlen(dest); i++) +00761 if (dest[i] > 126) +00762 return false; +00763 int c = 0; +00764 for (int i = 0; i < strlen(dest); i++) +00765 if (dest[i] == '!') +00766 c++; +00767 if (c>1) +00768 return false; +00769 c = 0; +00770 for (int i = 0; i < strlen(dest); i++) +00771 if (dest[i] == '@') +00772 c++; +00773 if (c>1) +00774 return false; +00775 +00776 return true; +00777 } +00778 +00779 void Server::MeshSendAll(std::string text) +00780 { +00781 NetSendToAll((char*)text.c_str()); +00782 } +00783 +00784 void Server::MeshSendCommon(userrec* user, std::string text) +00785 { +00786 if (user) +00787 NetSendToCommon(user,(char*)text.c_str()); +00788 } +00789 +00790 void Server::MeshSendAllAlive(std::string text) +00791 { +00792 NetSendToAllAlive((char*)text.c_str()); +00793 } +00794 +00795 void Server::MeshSendUnicast(std::string destination, std::string text) +00796 { +00797 NetSendToOne((char*)destination.c_str(),(char*)text.c_str()); +00798 } +00799 +00800 void Server::MeshSendAllExcept(std::string target, std::string text) +00801 { +00802 NetSendToAllExcept(target.c_str(),(char*)text.c_str()); +00803 } +00804 +00805 bool Server::MeshCheckChan(chanrec *c,std::string servername) +00806 { +00807 if (c) +00808 { +00809 return ChanAnyOnThisServer(c,(char*)servername.c_str()); +00810 } +00811 else return false; +00812 } +00813 +00814 bool Server::MeshCheckCommon(userrec* u,std::string servername) +00815 { +00816 if (u) +00817 { +00818 return CommonOnThisServer(u,(char*)servername.c_str()); +00819 } +00820 else return false; +00821 } +00822 +00823 Module* Server::FindModule(std::string name) +00824 { +00825 for (int i = 0; i <= MODCOUNT; i++) +00826 { +00827 if (module_names[i] == name) +00828 { +00829 return modules[i]; +00830 } +00831 } +00832 return NULL; +00833 } +00834 +00835 ConfigReader::ConfigReader() +00836 { +00837 this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out); +00838 this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out); +00839 this->readerror = LoadConf(CONFIG_FILE,this->cache,this->errorlog); +00840 if (!this->readerror) +00841 this->error = CONF_FILE_NOT_FOUND; +00842 } +00843 +00844 +00845 ConfigReader::~ConfigReader() +00846 { +00847 if (this->cache) +00848 delete this->cache; +00849 if (this->errorlog) +00850 delete this->errorlog; +00851 } +00852 +00853 +00854 ConfigReader::ConfigReader(std::string filename) +00855 { +00856 this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out); +00857 this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out); +00858 this->readerror = LoadConf(filename.c_str(),this->cache,this->errorlog); +00859 if (!this->readerror) +00860 this->error = CONF_FILE_NOT_FOUND; +00861 }; +00862 +00863 std::string ConfigReader::ReadValue(std::string tag, std::string name, int index) +00864 { +00865 char val[MAXBUF]; +00866 char t[MAXBUF]; +00867 char n[MAXBUF]; +00868 strlcpy(t,tag.c_str(),MAXBUF); +00869 strlcpy(n,name.c_str(),MAXBUF); +00870 int res = ReadConf(cache,t,n,index,val); +00871 if (!res) +00872 { +00873 this->error = CONF_VALUE_NOT_FOUND; +00874 return ""; +00875 } +00876 return std::string(val); +00877 } +00878 +00879 bool ConfigReader::ReadFlag(std::string tag, std::string name, int index) +00880 { +00881 char val[MAXBUF]; +00882 char t[MAXBUF]; +00883 char n[MAXBUF]; +00884 strlcpy(t,tag.c_str(),MAXBUF); +00885 strlcpy(n,name.c_str(),MAXBUF); +00886 int res = ReadConf(cache,t,n,index,val); +00887 if (!res) +00888 { +00889 this->error = CONF_VALUE_NOT_FOUND; +00890 return false; +00891 } +00892 std::string s = val; +00893 return ((s == "yes") || (s == "YES") || (s == "true") || (s == "TRUE") || (s == "1")); +00894 } +00895 +00896 long ConfigReader::ReadInteger(std::string tag, std::string name, int index, bool needs_unsigned) +00897 { +00898 char val[MAXBUF]; +00899 char t[MAXBUF]; +00900 char n[MAXBUF]; +00901 strlcpy(t,tag.c_str(),MAXBUF); +00902 strlcpy(n,name.c_str(),MAXBUF); +00903 int res = ReadConf(cache,t,n,index,val); +00904 if (!res) +00905 { +00906 this->error = CONF_VALUE_NOT_FOUND; +00907 return 0; +00908 } +00909 for (int i = 0; i < strlen(val); i++) +00910 { +00911 if (!isdigit(val[i])) +00912 { +00913 this->error = CONF_NOT_A_NUMBER; +00914 return 0; +00915 } +00916 } +00917 if ((needs_unsigned) && (atoi(val)<0)) +00918 { +00919 this->error = CONF_NOT_UNSIGNED; +00920 return 0; +00921 } +00922 return atoi(val); +00923 } +00924 +00925 long ConfigReader::GetError() +00926 { +00927 long olderr = this->error; +00928 this->error = 0; +00929 return olderr; +00930 } +00931 +00932 void ConfigReader::DumpErrors(bool bail, userrec* user) +00933 { +00934 if (bail) +00935 { +00936 printf("There were errors in your configuration:\n%s",errorlog->str().c_str()); +00937 exit(0); +00938 } +00939 else +00940 { +00941 char dataline[1024]; +00942 if (user) +00943 { +00944 WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick); +00945 while (!errorlog->eof()) +00946 { +00947 errorlog->getline(dataline,1024); +00948 WriteServ(user->fd,"NOTICE %s :%s",user->nick,dataline); +00949 } +00950 } +00951 else +00952 { +00953 WriteOpers("There were errors in the configuration file:",user->nick); +00954 while (!errorlog->eof()) +00955 { +00956 errorlog->getline(dataline,1024); +00957 WriteOpers(dataline); +00958 } +00959 } +00960 return; +00961 } +00962 } +00963 +00964 +00965 int ConfigReader::Enumerate(std::string tag) +00966 { +00967 return EnumConf(cache,tag.c_str()); +00968 } +00969 +00970 int ConfigReader::EnumerateValues(std::string tag, int index) +00971 { +00972 return EnumValues(cache, tag.c_str(), index); +00973 } +00974 +00975 bool ConfigReader::Verify() +00976 { +00977 return this->readerror; +00978 } +00979 +00980 +00981 FileReader::FileReader(std::string filename) +00982 { +00983 file_cache c; +00984 readfile(c,filename.c_str()); +00985 this->fc = c; +00986 } +00987 +00988 FileReader::FileReader() +00989 { +00990 } +00991 +00992 void FileReader::LoadFile(std::string filename) +00993 { +00994 file_cache c; +00995 readfile(c,filename.c_str()); +00996 this->fc = c; +00997 } +00998 +00999 +01000 FileReader::~FileReader() +01001 { +01002 } +01003 +01004 bool FileReader::Exists() +01005 { +01006 if (fc.size() == 0) +01007 { +01008 return(false); +01009 } +01010 else +01011 { +01012 return(true); +01013 } +01014 } +01015 +01016 std::string FileReader::GetLine(int x) +01017 { +01018 if ((x<0) || (x>fc.size())) +01019 return ""; +01020 return fc[x]; +01021 } +01022 +01023 int FileReader::FileSize() +01024 { +01025 return fc.size(); +01026 } +01027 +01028 +01029 std::vector<Module*> modules(255); +01030 std::vector<ircd_module*> factory(255); 01031 -01032 -
1.3.3
--
cgit v1.3.1-10-gc9f91