├── .github └── FUNDING.yml ├── .gitignore ├── COPYING ├── Makefile ├── README.md ├── commands.txt └── src ├── commands.c ├── commands.h ├── groupchats.c ├── groupchats.h ├── log.c ├── log.h ├── misc.c ├── misc.h ├── toxbot.c └── toxbot.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [JFreegman] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | *.o 4 | *.d 5 | *.lo 6 | *.a 7 | *.out 8 | *.app 9 | *.swp 10 | *.orig 11 | *.*vim* 12 | toxbot 13 | masterkeys 14 | blockedkeys 15 | COPYING 16 | *.tox 17 | toxbot_save 18 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | 676 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | #Install directories 2 | PREFIX ?= /usr/local 3 | BINDIR = $(PREFIX)/bin 4 | 5 | LIBS = toxcore 6 | CFLAGS += -std=c11 -Wall -g -D_XOPEN_SOURCE_EXTENDED -D_XOPEN_SOURCE -D_FILE_OFFSET_BITS=64 7 | OBJ = toxbot.o misc.o commands.o groupchats.o log.o 8 | CFLAGS += $(shell pkg-config --cflags $(LIBS)) 9 | LDFLAGS += $(shell pkg-config --libs $(LIBS)) 10 | SRC_DIR = ./src 11 | 12 | all: $(OBJ) 13 | @echo " LD $@" 14 | @$(CC) $(CFLAGS) -o toxbot $(OBJ) $(LDFLAGS) 15 | 16 | %.o: $(SRC_DIR)/%.c 17 | @echo " CC $@" 18 | @$(CC) $(CFLAGS) -o $*.o -c $(SRC_DIR)/$*.c 19 | @$(CC) -MM $(CFLAGS) $(SRC_DIR)/$*.c > $*.d 20 | 21 | install: toxbot 22 | @echo "Installing toxbot" 23 | @mkdir -p $(abspath $(DESTDIR)/$(BINDIR)) 24 | @install -m 0755 toxbot $(abspath $(DESTDIR)/$(BINDIR)) 25 | 26 | clean: 27 | rm -f *.d *.o toxbot 28 | 29 | uninstall: 30 | @echo "Uninstalling toxbot" 31 | @rm -f $(abspath $(DESTDIR)/$(BINDIR)/toxbot) 32 | 33 | .PHONY: clean all 34 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ToxBot 2 | ToxBot is a remotely controlled [Tox](https://tox.chat) bot whose purpose is to auto-invite friends to Tox groupchats. It accepts friend requests automatically and will auto-invite friends to the specified group chat (default is group 0 unless set otherwise). It also has the ability to create and leave groups, password protect invites, and send messages to groups. 3 | 4 | Although current functionality is barebones, it will be easy to expand the bot to act in more comprehensive ways once Tox group chats are fully implemented (e.g. admin duties); this was the main motivation behind creating a proper Tox bot. 5 | 6 | ## Controlling 7 | In order to control the bot you must add your Tox ID to the `masterkeys` file in your base directory. Once you add the bot as a friend, you can send it [privileged commands](https://github.com/JFreegman/ToxBot/blob/master/commands.txt) as normal messages; there is no front-end. 8 | 9 | ToxBot will automatically accept groupchat invites from a master. 10 | 11 | ### Non-privileged commands 12 | * `help` - Print this message 13 | * `info` - Print current status and list active group chats 14 | * `id` - Print Tox ID 15 | * `invite` - Request invite to default group chat 16 | * `invite ` - Request invite to group chat n (with password if necessary) 17 | * `group ` - Creates a new groupchat with type: text | audio (optional password) 18 | 19 | ## Dependencies 20 | * pkg-config 21 | * [libtoxcore](https://github.com/toktok/c-toxcore) 22 | * libtoxav 23 | 24 | ## Compiling 25 | `make && make install` 26 | 27 | Note: If you get an error that says `cannot open shared object file: No such file or directory`, try running `sudo ldconfig`. 28 | -------------------------------------------------------------------------------- /commands.txt: -------------------------------------------------------------------------------- 1 | ToxBot Master Commands 2 | 3 | default : Sets default groupchat room to n 4 | gmessage : Sends msg to groupchat n 5 | leave : Leaves groupchat n 6 | master : Adds Tox ID to the masterkeys file 7 | name : Sets name 8 | passwd : Sets password for groupchat n (leave pass blank for no password) 9 | purge : Sets the number of days before an inactive friend is deleted 10 | status : Sets status (online, busy or away) 11 | statusmessage : Sets status message 12 | title : Sets title for groupchat n 13 | 14 | NOTES: 15 | - ToxBot will automatically accept a groupchat invite from a master 16 | - Messages must be enclosed in double quotes 17 | - For a list of non-master commands see README.md or use the help command 18 | -------------------------------------------------------------------------------- /src/commands.c: -------------------------------------------------------------------------------- 1 | /* commands.c 2 | * 3 | * 4 | * Copyright (C) 2021 toxbot All Rights Reserved. 5 | * 6 | * This file is part of toxbot. 7 | * 8 | * toxbot 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 | * toxbot 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 toxbot. If not, see . 20 | * 21 | */ 22 | 23 | #include 24 | #include 25 | #include 26 | #include 27 | 28 | #include 29 | #include 30 | 31 | #include "toxbot.h" 32 | #include "misc.h" 33 | #include "groupchats.h" 34 | #include "log.h" 35 | 36 | #define MAX_COMMAND_LENGTH TOX_MAX_MESSAGE_LENGTH 37 | #define MAX_NUM_ARGS 4 38 | 39 | extern struct Tox_Bot Tox_Bot; 40 | 41 | static void authent_failed(Tox *m, uint32_t friendnum) 42 | { 43 | const char *outmsg = "You do not have permission to use this command."; 44 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 45 | } 46 | 47 | static void send_error(Tox *m, uint32_t friendnum, const char *message, int err) 48 | { 49 | char outmsg[TOX_MAX_MESSAGE_LENGTH]; 50 | snprintf(outmsg, sizeof(outmsg), "%s (error %d)", message, err); 51 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 52 | } 53 | 54 | static void cmd_default(Tox *m, uint32_t friendnum, int argc, char (*argv)[MAX_COMMAND_LENGTH]) 55 | { 56 | const char *outmsg = NULL; 57 | 58 | if (!friend_is_master(m, friendnum)) { 59 | authent_failed(m, friendnum); 60 | return; 61 | } 62 | 63 | if (argc < 1) { 64 | outmsg = "Error: Room number required"; 65 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 66 | return; 67 | } 68 | 69 | int groupnum = atoi(argv[1]); 70 | 71 | if ((groupnum == 0 && strcmp(argv[1], "0")) || groupnum < 0) { 72 | outmsg = "Error: Invalid room number"; 73 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 74 | return; 75 | } 76 | 77 | Tox_Bot.default_groupnum = groupnum; 78 | 79 | char msg[MAX_COMMAND_LENGTH]; 80 | snprintf(msg, sizeof(msg), "Default room number set to %d", groupnum); 81 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) msg, strlen(msg), NULL); 82 | 83 | char name[TOX_MAX_NAME_LENGTH]; 84 | tox_friend_get_name(m, friendnum, (uint8_t *) name, NULL); 85 | size_t len = tox_friend_get_name_size(m, friendnum, NULL); 86 | name[len] = '\0'; 87 | 88 | log_timestamp("Default room number set to %d by %s", groupnum, name); 89 | } 90 | 91 | static void cmd_gmessage(Tox *m, uint32_t friendnum, int argc, char (*argv)[MAX_COMMAND_LENGTH]) 92 | { 93 | const char *outmsg = NULL; 94 | 95 | if (!friend_is_master(m, friendnum)) { 96 | authent_failed(m, friendnum); 97 | return; 98 | } 99 | 100 | if (argc < 1) { 101 | outmsg = "Error: Group number required"; 102 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 103 | return; 104 | } 105 | 106 | if (argc < 2) { 107 | outmsg = "Error: Message required"; 108 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 109 | return; 110 | } 111 | 112 | int groupnum = atoi(argv[1]); 113 | 114 | if (groupnum == 0 && strcmp(argv[1], "0")) { 115 | outmsg = "Error: Invalid group number"; 116 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 117 | return; 118 | } 119 | 120 | if (group_index(groupnum) == -1) { 121 | outmsg = "Error: Invalid group number"; 122 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 123 | return; 124 | } 125 | 126 | if (argv[2][0] != '\"') { 127 | outmsg = "Error: Message must be enclosed in quotes"; 128 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 129 | return; 130 | } 131 | 132 | /* remove opening and closing quotes */ 133 | char msg[MAX_COMMAND_LENGTH]; 134 | snprintf(msg, sizeof(msg), "%s", &argv[2][1]); 135 | int len = strlen(msg) - 1; 136 | msg[len] = '\0'; 137 | 138 | TOX_ERR_CONFERENCE_SEND_MESSAGE err; 139 | 140 | if (!tox_conference_send_message(m, groupnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) msg, strlen(msg), &err)) { 141 | outmsg = "Error: Failed to send message."; 142 | send_error(m, friendnum, outmsg, err); 143 | return; 144 | } 145 | 146 | char name[TOX_MAX_NAME_LENGTH]; 147 | tox_friend_get_name(m, friendnum, (uint8_t *) name, NULL); 148 | size_t nlen = tox_friend_get_name_size(m, friendnum, NULL); 149 | name[nlen] = '\0'; 150 | 151 | outmsg = "Message sent."; 152 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 153 | log_timestamp("<%s> message to group %d: %s", name, groupnum, msg); 154 | } 155 | 156 | static void cmd_group(Tox *m, uint32_t friendnum, int argc, char (*argv)[MAX_COMMAND_LENGTH]) 157 | { 158 | const char *outmsg = NULL; 159 | 160 | if (argc < 1) { 161 | outmsg = "Please specify the group type: audio or text"; 162 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 163 | return; 164 | } 165 | 166 | uint8_t type = TOX_CONFERENCE_TYPE_AV ? !strcasecmp(argv[1], "audio") : TOX_CONFERENCE_TYPE_TEXT; 167 | 168 | char name[TOX_MAX_NAME_LENGTH]; 169 | tox_friend_get_name(m, friendnum, (uint8_t *) name, NULL); 170 | size_t len = tox_friend_get_name_size(m, friendnum, NULL); 171 | name[len] = '\0'; 172 | 173 | int groupnum = -1; 174 | 175 | if (type == TOX_CONFERENCE_TYPE_TEXT) { 176 | TOX_ERR_CONFERENCE_NEW err; 177 | groupnum = tox_conference_new(m, &err); 178 | 179 | if (err != TOX_ERR_CONFERENCE_NEW_OK) { 180 | log_error_timestamp(err, "Group chat creation by %s failed to initialize", name); 181 | outmsg = "Group chat instance failed to initialize."; 182 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 183 | return; 184 | } 185 | } else if (type == TOX_CONFERENCE_TYPE_AV) { 186 | groupnum = toxav_add_av_groupchat(m, NULL, NULL); 187 | 188 | if (groupnum == -1) { 189 | log_error_timestamp(-1, "Group chat creation by %s failed to initialize", name); 190 | outmsg = "Group chat instance failed to initialize."; 191 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 192 | return; 193 | } 194 | } 195 | 196 | const char *password = argc >= 2 ? argv[2] : NULL; 197 | 198 | if (password && strlen(argv[2]) >= MAX_PASSWORD_SIZE) { 199 | log_error_timestamp(-1, "Group chat creation by %s failed: Password too long", name); 200 | outmsg = "Group chat instance failed to initialize: Password too long"; 201 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 202 | return; 203 | } 204 | 205 | if (group_add(groupnum, type, password) == -1) { 206 | log_error_timestamp(-1, "Group chat creation by %s failed", name); 207 | outmsg = "Group chat creation failed"; 208 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 209 | tox_conference_delete(m, groupnum, NULL); 210 | return; 211 | } 212 | 213 | const char *pw = password ? " (Password protected)" : ""; 214 | log_timestamp("Group chat %d created by %s%s", groupnum, name, pw); 215 | 216 | char msg[MAX_COMMAND_LENGTH]; 217 | snprintf(msg, sizeof(msg), "Group chat %d created%s", groupnum, pw); 218 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) msg, strlen(msg), NULL); 219 | } 220 | 221 | static void cmd_help(Tox *m, uint32_t friendnum, int argc, char (*argv)[MAX_COMMAND_LENGTH]) 222 | { 223 | const char *outmsg = NULL; 224 | 225 | outmsg = "info : Print my current status and list active group chats"; 226 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 227 | 228 | outmsg = "id : Print my Tox ID"; 229 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 230 | 231 | outmsg = "invite : Request invite to default group chat"; 232 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 233 | 234 | outmsg = "invite

: Request invite to group chat n (with password p if protected)"; 235 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 236 | 237 | outmsg = "group : Creates a new groupchat with type: text | audio (optional password)"; 238 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 239 | 240 | if (friend_is_master(m, friendnum)) { 241 | outmsg = "For a list of master commands see the commands.txt file"; 242 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 243 | } 244 | } 245 | 246 | static void cmd_id(Tox *m, uint32_t friendnum, int argc, char (*argv)[MAX_COMMAND_LENGTH]) 247 | { 248 | char outmsg[TOX_ADDRESS_SIZE * 2 + 1]; 249 | char address[TOX_ADDRESS_SIZE]; 250 | tox_self_get_address(m, (uint8_t *) address); 251 | 252 | for (size_t i = 0; i < TOX_ADDRESS_SIZE; ++i) { 253 | char d[3]; 254 | sprintf(d, "%02X", address[i] & 0xff); 255 | memcpy(outmsg + i * 2, d, 2); 256 | } 257 | 258 | outmsg[TOX_ADDRESS_SIZE * 2] = '\0'; 259 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 260 | } 261 | 262 | static void cmd_info(Tox *m, uint32_t friendnum, int argc, char (*argv)[MAX_COMMAND_LENGTH]) 263 | { 264 | char outmsg[MAX_COMMAND_LENGTH]; 265 | char timestr[64]; 266 | 267 | time_t curtime = get_time(); 268 | get_elapsed_time_str(timestr, sizeof(timestr), curtime - Tox_Bot.start_time); 269 | snprintf(outmsg, sizeof(outmsg), "Uptime: %s", timestr); 270 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 271 | 272 | uint32_t numfriends = tox_self_get_friend_list_size(m); 273 | snprintf(outmsg, sizeof(outmsg), "Friends: %d (%d online)", numfriends, Tox_Bot.num_online_friends); 274 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 275 | 276 | snprintf(outmsg, sizeof(outmsg), "Inactive friends are purged after %"PRIu64" days", 277 | Tox_Bot.inactive_limit / SECONDS_IN_DAY); 278 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 279 | 280 | /* List active group chats and number of peers in each */ 281 | size_t num_chats = tox_conference_get_chatlist_size(m); 282 | 283 | if (num_chats == 0) { 284 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) "No active groupchats", 285 | strlen("No active groupchats"), NULL); 286 | return; 287 | } 288 | 289 | uint32_t groupchat_list[num_chats]; 290 | 291 | tox_conference_get_chatlist(m, groupchat_list); 292 | 293 | for (size_t i = 0; i < num_chats; ++i) { 294 | TOX_ERR_CONFERENCE_PEER_QUERY err; 295 | uint32_t groupnum = groupchat_list[i]; 296 | uint32_t num_peers = tox_conference_peer_count(m, groupnum, &err); 297 | 298 | if (err == TOX_ERR_CONFERENCE_PEER_QUERY_OK) { 299 | int idx = group_index(groupnum); 300 | const char *title = Tox_Bot.g_chats[idx].title_len 301 | ? Tox_Bot.g_chats[idx].title : "None"; 302 | const char *type = tox_conference_get_type(m, groupnum, NULL) == TOX_CONFERENCE_TYPE_AV ? "Audio" : "Text"; 303 | snprintf(outmsg, sizeof(outmsg), "Group %d | %s | peers: %d | Title: %s", groupnum, type, 304 | num_peers, title); 305 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 306 | } 307 | } 308 | } 309 | 310 | static void cmd_invite(Tox *m, uint32_t friendnum, int argc, char (*argv)[MAX_COMMAND_LENGTH]) 311 | { 312 | const char *outmsg = NULL; 313 | int groupnum = Tox_Bot.default_groupnum; 314 | 315 | if (argc >= 1) { 316 | groupnum = atoi(argv[1]); 317 | 318 | if (groupnum == 0 && strcmp(argv[1], "0")) { 319 | outmsg = "Error: Invalid group number"; 320 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 321 | return; 322 | } 323 | } 324 | 325 | int idx = group_index(groupnum); 326 | 327 | if (idx == -1) { 328 | outmsg = "Group doesn't exist."; 329 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 330 | return; 331 | } 332 | 333 | int has_pass = Tox_Bot.g_chats[idx].has_pass; 334 | 335 | char name[TOX_MAX_NAME_LENGTH]; 336 | tox_friend_get_name(m, friendnum, (uint8_t *) name, NULL); 337 | size_t len = tox_friend_get_name_size(m, friendnum, NULL); 338 | name[len] = '\0'; 339 | 340 | const char *passwd = NULL; 341 | 342 | if (argc >= 2) { 343 | passwd = argv[2]; 344 | } 345 | 346 | if (has_pass && (!passwd || strcmp(argv[2], Tox_Bot.g_chats[idx].password) != 0)) { 347 | log_error_timestamp(-1, "Failed to invite %s to group %d (invalid password)", name, groupnum); 348 | outmsg = "Invalid password."; 349 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 350 | return; 351 | } 352 | 353 | TOX_ERR_CONFERENCE_INVITE err; 354 | 355 | if (!tox_conference_invite(m, friendnum, groupnum, &err)) { 356 | log_error_timestamp(err, "Failed to invite %s to group %d", name, groupnum); 357 | outmsg = "Invite failed"; 358 | send_error(m, friendnum, outmsg, err); 359 | return; 360 | } 361 | 362 | log_timestamp("Invited %s to group %d", name, groupnum); 363 | } 364 | 365 | static void cmd_leave(Tox *m, uint32_t friendnum, int argc, char (*argv)[MAX_COMMAND_LENGTH]) 366 | { 367 | const char *outmsg = NULL; 368 | 369 | if (!friend_is_master(m, friendnum)) { 370 | authent_failed(m, friendnum); 371 | return; 372 | } 373 | 374 | if (argc < 1) { 375 | outmsg = "Error: Group number required"; 376 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 377 | return; 378 | } 379 | 380 | int groupnum = atoi(argv[1]); 381 | 382 | if (groupnum == 0 && strcmp(argv[1], "0")) { 383 | outmsg = "Error: Invalid group number"; 384 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 385 | return; 386 | } 387 | 388 | if (!tox_conference_delete(m, groupnum, NULL)) { 389 | outmsg = "Error: Invalid group number"; 390 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 391 | return; 392 | } 393 | 394 | char msg[MAX_COMMAND_LENGTH]; 395 | 396 | char name[TOX_MAX_NAME_LENGTH]; 397 | tox_friend_get_name(m, friendnum, (uint8_t *) name, NULL); 398 | size_t len = tox_friend_get_name_size(m, friendnum, NULL); 399 | name[len] = '\0'; 400 | 401 | group_leave(groupnum); 402 | 403 | log_timestamp("Left group %d (%s)", groupnum, name); 404 | snprintf(msg, sizeof(msg), "Left group %d", groupnum); 405 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) msg, strlen(msg), NULL); 406 | } 407 | 408 | static void cmd_master(Tox *m, uint32_t friendnum, int argc, char (*argv)[MAX_COMMAND_LENGTH]) 409 | { 410 | const char *outmsg = NULL; 411 | 412 | if (!friend_is_master(m, friendnum)) { 413 | authent_failed(m, friendnum); 414 | return; 415 | } 416 | 417 | if (argc < 1) { 418 | outmsg = "Error: Tox ID required"; 419 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 420 | return; 421 | } 422 | 423 | const char *id = argv[1]; 424 | 425 | if (strlen(id) != TOX_ADDRESS_SIZE * 2) { 426 | outmsg = "Error: Invalid Tox ID"; 427 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 428 | return; 429 | } 430 | 431 | FILE *fp = fopen(MASTERLIST_FILE, "a"); 432 | 433 | if (fp == NULL) { 434 | outmsg = "Error: could not find masterkeys file"; 435 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 436 | return; 437 | } 438 | 439 | fprintf(fp, "%s\n", id); 440 | fclose(fp); 441 | 442 | char name[TOX_MAX_NAME_LENGTH]; 443 | tox_friend_get_name(m, friendnum, (uint8_t *) name, NULL); 444 | size_t len = tox_friend_get_name_size(m, friendnum, NULL); 445 | name[len] = '\0'; 446 | 447 | log_timestamp("%s added master: %s", name, id); 448 | outmsg = "ID added to masterkeys list"; 449 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 450 | } 451 | 452 | static void cmd_name(Tox *m, uint32_t friendnum, int argc, char (*argv)[MAX_COMMAND_LENGTH]) 453 | { 454 | const char *outmsg = NULL; 455 | 456 | if (!friend_is_master(m, friendnum)) { 457 | authent_failed(m, friendnum); 458 | return; 459 | } 460 | 461 | if (argc < 1) { 462 | outmsg = "Error: Name required"; 463 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 464 | return; 465 | } 466 | 467 | char name[TOX_MAX_NAME_LENGTH]; 468 | int len = 0; 469 | 470 | if (argv[1][0] == '\"') { /* remove opening and closing quotes */ 471 | snprintf(name, sizeof(name), "%s", &argv[1][1]); 472 | len = strlen(name) - 1; 473 | } else { 474 | snprintf(name, sizeof(name), "%s", argv[1]); 475 | len = strlen(name); 476 | } 477 | 478 | name[len] = '\0'; 479 | tox_self_set_name(m, (uint8_t *) name, (uint16_t) len, NULL); 480 | 481 | char m_name[TOX_MAX_NAME_LENGTH]; 482 | tox_friend_get_name(m, friendnum, (uint8_t *) m_name, NULL); 483 | size_t nlen = tox_friend_get_name_size(m, friendnum, NULL); 484 | m_name[nlen] = '\0'; 485 | 486 | log_timestamp("%s set name to %s", m_name, name); 487 | save_data(m, DATA_FILE); 488 | } 489 | 490 | static void cmd_passwd(Tox *m, uint32_t friendnum, int argc, char (*argv)[MAX_COMMAND_LENGTH]) 491 | { 492 | const char *outmsg = NULL; 493 | 494 | if (!friend_is_master(m, friendnum)) { 495 | authent_failed(m, friendnum); 496 | return; 497 | } 498 | 499 | if (argc < 1) { 500 | outmsg = "Error: group number required"; 501 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 502 | return; 503 | } 504 | 505 | int groupnum = atoi(argv[1]); 506 | 507 | if (groupnum == 0 && strcmp(argv[1], "0")) { 508 | outmsg = "Error: Invalid group number"; 509 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 510 | return; 511 | } 512 | 513 | int idx = group_index(groupnum); 514 | 515 | if (idx == -1) { 516 | outmsg = "Error: Invalid group number"; 517 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 518 | return; 519 | } 520 | 521 | char name[TOX_MAX_NAME_LENGTH]; 522 | tox_friend_get_name(m, friendnum, (uint8_t *) name, NULL); 523 | size_t nlen = tox_friend_get_name_size(m, friendnum, NULL); 524 | name[nlen] = '\0'; 525 | 526 | 527 | /* no password */ 528 | if (argc < 2) { 529 | Tox_Bot.g_chats[idx].has_pass = false; 530 | memset(Tox_Bot.g_chats[idx].password, 0, MAX_PASSWORD_SIZE); 531 | 532 | outmsg = "No password set"; 533 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 534 | log_timestamp("No password set for group %d by %s", groupnum, name); 535 | return; 536 | } 537 | 538 | if (strlen(argv[2]) >= MAX_PASSWORD_SIZE) { 539 | outmsg = "Password too long"; 540 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 541 | return; 542 | } 543 | 544 | Tox_Bot.g_chats[idx].has_pass = true; 545 | snprintf(Tox_Bot.g_chats[idx].password, sizeof(Tox_Bot.g_chats[idx].password), "%s", argv[2]); 546 | 547 | outmsg = "Password set"; 548 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 549 | log_timestamp("Password for group %d set by %s", groupnum, name); 550 | 551 | } 552 | 553 | static void cmd_purge(Tox *m, uint32_t friendnum, int argc, char (*argv)[MAX_COMMAND_LENGTH]) 554 | { 555 | const char *outmsg = NULL; 556 | 557 | if (!friend_is_master(m, friendnum)) { 558 | authent_failed(m, friendnum); 559 | return; 560 | } 561 | 562 | if (argc < 1) { 563 | outmsg = "Error: number > 0 required"; 564 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 565 | return; 566 | } 567 | 568 | uint64_t days = (uint64_t) atoi(argv[1]); 569 | 570 | if (days <= 0) { 571 | outmsg = "Error: number > 0 required"; 572 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 573 | return; 574 | } 575 | 576 | uint64_t seconds = days * SECONDS_IN_DAY; 577 | Tox_Bot.inactive_limit = seconds; 578 | 579 | char name[TOX_MAX_NAME_LENGTH]; 580 | tox_friend_get_name(m, friendnum, (uint8_t *) name, NULL); 581 | size_t nlen = tox_friend_get_name_size(m, friendnum, NULL); 582 | name[nlen] = '\0'; 583 | 584 | char msg[MAX_COMMAND_LENGTH]; 585 | snprintf(msg, sizeof(msg), "Purge time set to %"PRIu64" days", days); 586 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) msg, strlen(msg), NULL); 587 | 588 | log_timestamp("Purge time set to %"PRIu64" days by %s", days, name); 589 | } 590 | 591 | static void cmd_status(Tox *m, uint32_t friendnum, int argc, char (*argv)[MAX_COMMAND_LENGTH]) 592 | { 593 | const char *outmsg = NULL; 594 | 595 | if (!friend_is_master(m, friendnum)) { 596 | authent_failed(m, friendnum); 597 | return; 598 | } 599 | 600 | if (argc < 1) { 601 | outmsg = "Error: status required"; 602 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 603 | return; 604 | } 605 | 606 | TOX_USER_STATUS type; 607 | const char *status = argv[1]; 608 | 609 | if (strcasecmp(status, "online") == 0) { 610 | type = TOX_USER_STATUS_NONE; 611 | } else if (strcasecmp(status, "away") == 0) { 612 | type = TOX_USER_STATUS_AWAY; 613 | } else if (strcasecmp(status, "busy") == 0) { 614 | type = TOX_USER_STATUS_BUSY; 615 | } else { 616 | outmsg = "Invalid status. Valid statuses are: online, busy and away."; 617 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 618 | return; 619 | } 620 | 621 | tox_self_set_status(m, type); 622 | 623 | char name[TOX_MAX_NAME_LENGTH]; 624 | tox_friend_get_name(m, friendnum, (uint8_t *) name, NULL); 625 | size_t nlen = tox_friend_get_name_size(m, friendnum, NULL); 626 | name[nlen] = '\0'; 627 | 628 | log_timestamp("%s set status to %s", name, status); 629 | save_data(m, DATA_FILE); 630 | } 631 | 632 | static void cmd_statusmessage(Tox *m, uint32_t friendnum, int argc, char (*argv)[MAX_COMMAND_LENGTH]) 633 | { 634 | const char *outmsg = NULL; 635 | 636 | if (!friend_is_master(m, friendnum)) { 637 | authent_failed(m, friendnum); 638 | return; 639 | } 640 | 641 | if (argc < 1) { 642 | outmsg = "Error: message required"; 643 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 644 | return; 645 | } 646 | 647 | if (argv[1][0] != '\"') { 648 | outmsg = "Error: message must be enclosed in quotes"; 649 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 650 | return; 651 | } 652 | 653 | /* remove opening and closing quotes */ 654 | char msg[MAX_COMMAND_LENGTH]; 655 | snprintf(msg, sizeof(msg), "%s", &argv[1][1]); 656 | int len = strlen(msg) - 1; 657 | msg[len] = '\0'; 658 | 659 | tox_self_set_status_message(m, (uint8_t *) msg, len, NULL); 660 | 661 | char name[TOX_MAX_NAME_LENGTH]; 662 | tox_friend_get_name(m, friendnum, (uint8_t *) name, NULL); 663 | size_t nlen = tox_friend_get_name_size(m, friendnum, NULL); 664 | name[nlen] = '\0'; 665 | 666 | log_timestamp("%s set status message to \"%s\"", name, msg); 667 | save_data(m, DATA_FILE); 668 | } 669 | 670 | static void cmd_title_set(Tox *m, uint32_t friendnum, int argc, char (*argv)[MAX_COMMAND_LENGTH]) 671 | { 672 | const char *outmsg = NULL; 673 | 674 | if (!friend_is_master(m, friendnum)) { 675 | authent_failed(m, friendnum); 676 | return; 677 | } 678 | 679 | if (argc < 2) { 680 | outmsg = "Error: Two arguments are required"; 681 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 682 | return; 683 | } 684 | 685 | if (argv[2][0] != '\"') { 686 | outmsg = "Error: title must be enclosed in quotes"; 687 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 688 | return; 689 | } 690 | 691 | int groupnum = atoi(argv[1]); 692 | 693 | if (groupnum == 0 && strcmp(argv[1], "0")) { 694 | outmsg = "Error: Invalid group number"; 695 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 696 | return; 697 | } 698 | 699 | /* remove opening and closing quotes */ 700 | char title[MAX_COMMAND_LENGTH]; 701 | snprintf(title, sizeof(title), "%s", &argv[2][1]); 702 | int len = strlen(title) - 1; 703 | title[len] = '\0'; 704 | 705 | char name[TOX_MAX_NAME_LENGTH]; 706 | tox_friend_get_name(m, friendnum, (uint8_t *) name, NULL); 707 | size_t nlen = tox_friend_get_name_size(m, friendnum, NULL); 708 | name[nlen] = '\0'; 709 | 710 | TOX_ERR_CONFERENCE_TITLE err; 711 | 712 | if (!tox_conference_set_title(m, groupnum, (uint8_t *) title, len, &err)) { 713 | log_error_timestamp(err, "%s failed to set the title '%s' for group %d", name, title, groupnum); 714 | outmsg = "Failed to set title. This may be caused by an invalid group number or an empty room"; 715 | send_error(m, friendnum, outmsg, err); 716 | return; 717 | } 718 | 719 | int idx = group_index(groupnum); 720 | memcpy(Tox_Bot.g_chats[idx].title, title, len + 1); 721 | Tox_Bot.g_chats[idx].title_len = len; 722 | 723 | outmsg = "Group title set"; 724 | tox_friend_send_message(m, friendnum, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 725 | log_timestamp("%s set group %d title to %s", name, groupnum, title); 726 | } 727 | 728 | /* Parses input command and puts args into arg array. 729 | Returns number of arguments on success, -1 on failure. */ 730 | static int parse_command(const char *input, char (*args)[MAX_COMMAND_LENGTH]) 731 | { 732 | char *cmd = strdup(input); 733 | 734 | if (cmd == NULL) { 735 | exit(EXIT_FAILURE); 736 | } 737 | 738 | int num_args = 0; 739 | int i = 0; /* index of last char in an argument */ 740 | 741 | /* characters wrapped in double quotes count as one arg */ 742 | while (num_args < MAX_NUM_ARGS) { 743 | int qt_ofst = 0; /* set to 1 to offset index for quote char at end of arg */ 744 | 745 | if (*cmd == '\"') { 746 | qt_ofst = 1; 747 | i = char_find(1, cmd, '\"'); 748 | 749 | if (cmd[i] == '\0') { 750 | free(cmd); 751 | return -1; 752 | } 753 | } else { 754 | i = char_find(0, cmd, ' '); 755 | } 756 | 757 | memcpy(args[num_args], cmd, i + qt_ofst); 758 | args[num_args++][i + qt_ofst] = '\0'; 759 | 760 | if (cmd[i] == '\0') { /* no more args */ 761 | break; 762 | } 763 | 764 | char tmp[MAX_COMMAND_LENGTH]; 765 | snprintf(tmp, sizeof(tmp), "%s", &cmd[i + 1]); 766 | strcpy(cmd, tmp); /* tmp will always fit inside cmd */ 767 | } 768 | 769 | free(cmd); 770 | return num_args; 771 | } 772 | 773 | static struct { 774 | const char *name; 775 | void (*func)(Tox *m, uint32_t friendnum, int argc, char (*argv)[MAX_COMMAND_LENGTH]); 776 | } commands[] = { 777 | { "default", cmd_default }, 778 | { "group", cmd_group }, 779 | { "gmessage", cmd_gmessage }, 780 | { "help", cmd_help }, 781 | { "id", cmd_id }, 782 | { "info", cmd_info }, 783 | { "invite", cmd_invite }, 784 | { "leave", cmd_leave }, 785 | { "master", cmd_master }, 786 | { "name", cmd_name }, 787 | { "passwd", cmd_passwd }, 788 | { "purge", cmd_purge }, 789 | { "status", cmd_status }, 790 | { "statusmessage", cmd_statusmessage }, 791 | { "title", cmd_title_set }, 792 | { NULL, NULL }, 793 | }; 794 | 795 | static int do_command(Tox *m, uint32_t friendnum, int num_args, char (*args)[MAX_COMMAND_LENGTH]) 796 | { 797 | for (size_t i = 0; commands[i].name; ++i) { 798 | if (strcmp(args[0], commands[i].name) == 0) { 799 | (commands[i].func)(m, friendnum, num_args - 1, args); 800 | return 0; 801 | } 802 | } 803 | 804 | return -1; 805 | } 806 | 807 | int execute(Tox *m, uint32_t friendnum, const char *input, int length) 808 | { 809 | if (length >= MAX_COMMAND_LENGTH) { 810 | return -1; 811 | } 812 | 813 | char args[MAX_NUM_ARGS][MAX_COMMAND_LENGTH]; 814 | int num_args = parse_command(input, args); 815 | 816 | if (num_args == -1) { 817 | return -1; 818 | } 819 | 820 | return do_command(m, friendnum, num_args, args); 821 | } 822 | 823 | -------------------------------------------------------------------------------- /src/commands.h: -------------------------------------------------------------------------------- 1 | /* commands.h 2 | * 3 | * 4 | * Copyright (C) 2021 toxbot All Rights Reserved. 5 | * 6 | * This file is part of toxbot. 7 | * 8 | * toxbot 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 | * toxbot 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 toxbot. If not, see . 20 | * 21 | */ 22 | 23 | #ifndef COMMANDS_H 24 | #define COMMANDS_H 25 | 26 | int execute(Tox *m, int friendnumber, const char *input, int length); 27 | 28 | #endif /* COMMANDS_H */ 29 | 30 | -------------------------------------------------------------------------------- /src/groupchats.c: -------------------------------------------------------------------------------- 1 | /* groupchats.c 2 | * 3 | * 4 | * Copyright (C) 2021 toxbot All Rights Reserved. 5 | * 6 | * This file is part of toxbot. 7 | * 8 | * toxbot 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 | * toxbot 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 toxbot. If not, see . 20 | * 21 | */ 22 | 23 | #include 24 | #include 25 | #include 26 | 27 | #include "toxbot.h" 28 | #include "groupchats.h" 29 | 30 | extern struct Tox_Bot Tox_Bot; 31 | 32 | void realloc_groupchats(int n) 33 | { 34 | if (n <= 0) { 35 | free(Tox_Bot.g_chats); 36 | Tox_Bot.g_chats = NULL; 37 | return; 38 | } 39 | 40 | struct Group_Chat *g = realloc(Tox_Bot.g_chats, n * sizeof(struct Group_Chat)); 41 | 42 | if (g == NULL) { 43 | exit(EXIT_FAILURE); 44 | } 45 | 46 | Tox_Bot.g_chats = g; 47 | } 48 | 49 | int group_add(uint32_t groupnum, uint8_t type, const char *password) 50 | { 51 | realloc_groupchats(Tox_Bot.chats_idx + 1); 52 | memset(&Tox_Bot.g_chats[Tox_Bot.chats_idx], 0, sizeof(struct Group_Chat)); 53 | 54 | for (int i = 0; i <= Tox_Bot.chats_idx && i < MAX_NUM_GROUPS; ++i) { 55 | if (Tox_Bot.g_chats[i].active) { 56 | continue; 57 | } 58 | 59 | memset(&Tox_Bot.g_chats[i], 0, sizeof(struct Group_Chat)); 60 | Tox_Bot.g_chats[i].groupnum = groupnum; 61 | Tox_Bot.g_chats[i].active = true; 62 | Tox_Bot.g_chats[i].type = type; 63 | 64 | if (password) { 65 | Tox_Bot.g_chats[i].has_pass = true; 66 | snprintf(Tox_Bot.g_chats[i].password, sizeof(Tox_Bot.g_chats[i].password), "%s", password); 67 | } 68 | 69 | if (Tox_Bot.chats_idx == i) { 70 | ++Tox_Bot.chats_idx; 71 | } 72 | 73 | return 0; 74 | } 75 | 76 | return -1; 77 | } 78 | 79 | void group_leave(uint32_t groupnum) 80 | { 81 | int i; 82 | 83 | for (i = 0; i < Tox_Bot.chats_idx; ++i) { 84 | if (Tox_Bot.g_chats[i].active && Tox_Bot.g_chats[i].groupnum == groupnum) { 85 | memset(&Tox_Bot.g_chats[i], 0, sizeof(struct Group_Chat)); 86 | break; 87 | } 88 | } 89 | 90 | for (i = Tox_Bot.chats_idx; i > 0; --i) { 91 | if (Tox_Bot.g_chats[i - 1].active) { 92 | break; 93 | } 94 | } 95 | 96 | Tox_Bot.chats_idx = i; 97 | realloc_groupchats(i); 98 | } 99 | 100 | int group_index(uint32_t groupnum) 101 | { 102 | for (int i = 0; i < Tox_Bot.chats_idx; ++i) { 103 | if (Tox_Bot.g_chats[i].active && Tox_Bot.g_chats[i].groupnum == groupnum) { 104 | return i; 105 | } 106 | } 107 | 108 | return -1; 109 | } 110 | 111 | -------------------------------------------------------------------------------- /src/groupchats.h: -------------------------------------------------------------------------------- 1 | /* groupchats.h 2 | * 3 | * 4 | * Copyright (C) 2021 toxbot All Rights Reserved. 5 | * 6 | * This file is part of toxbot. 7 | * 8 | * toxbot 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 | * toxbot 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 toxbot. If not, see . 20 | * 21 | */ 22 | 23 | #ifndef GROUPCHATS_H 24 | #define GROUPCHATS_H 25 | 26 | #define SECONDS_IN_DAY 86400UL 27 | #define MAX_PASSWORD_SIZE 64 28 | 29 | struct Group_Chat { 30 | uint32_t groupnum; 31 | bool active; 32 | bool has_pass; 33 | uint8_t type; 34 | char title[TOX_MAX_NAME_LENGTH]; 35 | int title_len; 36 | char password[MAX_PASSWORD_SIZE]; 37 | }; 38 | 39 | int group_add(uint32_t groupnum, uint8_t type, const char *password); 40 | void group_leave(uint32_t groupnum); 41 | int group_index(uint32_t groupnum); 42 | void realloc_groupchats(int n); 43 | 44 | #endif /* GROUPCHATS_H */ 45 | 46 | -------------------------------------------------------------------------------- /src/log.c: -------------------------------------------------------------------------------- 1 | /* log.c 2 | * 3 | * 4 | * Copyright (C) 2021 toxbot All Rights Reserved. 5 | * 6 | * This file is part of toxbot. 7 | * 8 | * toxbot 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 | * toxbot 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 toxbot. If not, see . 20 | * 21 | */ 22 | 23 | #include 24 | #include 25 | 26 | #include "misc.h" 27 | 28 | #define TIMESTAMP_SIZE 64 29 | #define MAX_MESSAGE_SIZE 512 30 | 31 | static struct tm *get_wall_time(void) 32 | { 33 | struct tm *timeinfo; 34 | time_t t = get_time(); 35 | timeinfo = localtime((const time_t *) &t); 36 | return timeinfo; 37 | } 38 | 39 | void log_timestamp(const char *message, ...) 40 | { 41 | char format[MAX_MESSAGE_SIZE]; 42 | 43 | va_list args; 44 | va_start(args, message); 45 | vsnprintf(format, sizeof(format), message, args); 46 | va_end(args); 47 | 48 | char ts[TIMESTAMP_SIZE]; 49 | strftime(ts, TIMESTAMP_SIZE,"[%H:%M:%S]", get_wall_time()); 50 | 51 | printf("%s %s\n", ts, format); 52 | } 53 | 54 | void log_error_timestamp(int err, const char *message, ...) 55 | { 56 | char format[MAX_MESSAGE_SIZE]; 57 | 58 | va_list args; 59 | va_start(args, message); 60 | vsnprintf(format, sizeof(format), message, args); 61 | va_end(args); 62 | 63 | char ts[TIMESTAMP_SIZE]; 64 | strftime(ts, TIMESTAMP_SIZE,"[%H:%M:%S]", get_wall_time()); 65 | 66 | fprintf(stderr, "%s %s (error %d)\n", ts, format, err); 67 | } 68 | 69 | -------------------------------------------------------------------------------- /src/log.h: -------------------------------------------------------------------------------- 1 | /* log.h 2 | * 3 | * 4 | * Copyright (C) 2021 toxbot All Rights Reserved. 5 | * 6 | * This file is part of toxbot. 7 | * 8 | * toxbot 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 | * toxbot 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 toxbot. If not, see . 20 | * 21 | */ 22 | 23 | #ifndef LOG_H 24 | #define LOG_H 25 | 26 | /* Print `message` to stdout prefixed with a timestamp */ 27 | void log_timestamp(const char *message, ...); 28 | 29 | /* Print `message` with `err` to stderr prefixed with a timestamp */ 30 | void log_error_timestamp(int err, const char *message, ...); 31 | 32 | #endif // LOG_H 33 | 34 | -------------------------------------------------------------------------------- /src/misc.c: -------------------------------------------------------------------------------- 1 | /* misc.c 2 | * 3 | * 4 | * Copyright (C) 2021 toxbot All Rights Reserved. 5 | * 6 | * This file is part of toxbot. 7 | * 8 | * toxbot 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 | * toxbot 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 toxbot. If not, see . 20 | * 21 | */ 22 | 23 | #include 24 | #include 25 | #include 26 | #include 27 | #include 28 | #include 29 | 30 | #include 31 | 32 | #include "misc.h" 33 | 34 | bool timed_out(time_t timestamp, time_t curtime, uint64_t timeout) 35 | { 36 | return timestamp + timeout <= curtime; 37 | } 38 | 39 | time_t get_time(void) 40 | { 41 | return time(NULL); 42 | } 43 | 44 | char *hex_string_to_bin(const char *hex_string) 45 | { 46 | size_t len = strlen(hex_string); 47 | char *val = malloc(len); 48 | 49 | if (val == NULL) { 50 | exit(EXIT_FAILURE); 51 | } 52 | 53 | for (size_t i = 0; i < len; ++i, hex_string += 2) { 54 | sscanf(hex_string, "%2hhx", &val[i]); 55 | } 56 | 57 | return val; 58 | } 59 | 60 | off_t file_size(const char *path) 61 | { 62 | struct stat st; 63 | 64 | if (stat(path, &st) == -1) { 65 | return 0; 66 | } 67 | 68 | return st.st_size; 69 | } 70 | 71 | bool file_exists(const char *path) 72 | { 73 | struct stat s; 74 | return stat(path, &s) == 0; 75 | } 76 | 77 | uint16_t copy_tox_str(char *msg, size_t size, const char *data, uint16_t length) 78 | { 79 | int len = MIN(length, size - 1); 80 | memcpy(msg, data, len); 81 | msg[len] = '\0'; 82 | return len; 83 | } 84 | 85 | int char_find(int idx, const char *s, char ch) 86 | { 87 | int i = idx; 88 | 89 | for (i = idx; s[i]; ++i) { 90 | if (s[i] == ch) { 91 | break; 92 | } 93 | } 94 | 95 | return i; 96 | } 97 | 98 | void get_elapsed_time_str(char *buf, int bufsize, uint64_t secs) 99 | { 100 | long unsigned int minutes = (secs % 3600) / 60; 101 | long unsigned int hours = (secs / 3600) % 24; 102 | long unsigned int days = (secs / 3600) / 24; 103 | 104 | snprintf(buf, bufsize, "%lud %luh %lum", days, hours, minutes); 105 | } 106 | 107 | /* 108 | * Searches plain text file pointed to by path for lines that match public_key. 109 | * 110 | * Returns 1 if a match is found. 111 | * Returns 0 if a match is not found. 112 | * Returns -1 on file operation failure. 113 | * 114 | * public_key must be a binary representation of a Tox public key. 115 | */ 116 | int file_contains_key(const char *public_key, const char *path) 117 | { 118 | FILE *fp = NULL; 119 | 120 | struct stat s; 121 | 122 | if (stat(path, &s) != 0) { 123 | FILE *fp = fopen(path, "w"); 124 | 125 | if (fp == NULL) { 126 | fprintf(stderr, "Warning: failed to create '%s' file\n", path); 127 | return -1; 128 | } 129 | 130 | fprintf(stderr, "Warning: creating new '%s' file. Did you lose the old one?\n", path); 131 | fclose(fp); 132 | return 0; 133 | } 134 | 135 | fp = fopen(path, "r"); 136 | 137 | if (fp == NULL) { 138 | fprintf(stderr, "Warning: failed to read '%s' file\n", path); 139 | return -1; 140 | } 141 | 142 | char id[256]; 143 | 144 | while (fgets(id, sizeof(id), fp)) { 145 | int len = strlen(id); 146 | 147 | if (--len < TOX_PUBLIC_KEY_SIZE) { 148 | continue; 149 | } 150 | 151 | char *key_bin = hex_string_to_bin(id); 152 | 153 | if (memcmp(key_bin, public_key, TOX_PUBLIC_KEY_SIZE) == 0) { 154 | free(key_bin); 155 | fclose(fp); 156 | return 1; 157 | } 158 | 159 | free(key_bin); 160 | } 161 | 162 | fclose(fp); 163 | return 0; 164 | } 165 | 166 | -------------------------------------------------------------------------------- /src/misc.h: -------------------------------------------------------------------------------- 1 | /* misc.h 2 | * 3 | * 4 | * Copyright (C) 2021 toxbot All Rights Reserved. 5 | * 6 | * This file is part of toxbot. 7 | * 8 | * toxbot 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 | * toxbot 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 toxbot. If not, see . 20 | * 21 | */ 22 | 23 | #ifndef MISC_H 24 | #define MISC_H 25 | 26 | #ifndef MIN 27 | #define MIN(x, y) (((x) < (y)) ? (x) : (y)) 28 | #endif 29 | 30 | #ifndef MAX 31 | #define MAX(x, y) (((x) > (y)) ? (x) : (y)) 32 | #endif 33 | 34 | #include 35 | #include 36 | #include 37 | #include 38 | 39 | bool timed_out(time_t timestamp, time_t curtime, uint64_t timeout); 40 | 41 | /* Returns current unix timestamp */ 42 | time_t get_time(void); 43 | 44 | /* converts hexidecimal string to binary */ 45 | char *hex_string_to_bin(const char *hex_string); 46 | 47 | /* returns file size or 0 on error */ 48 | off_t file_size(const char *path); 49 | 50 | /* Return true if a file exists at `path`. */ 51 | bool file_exists(const char *path); 52 | 53 | /* copies data to msg buffer. 54 | returns length of msg, which will be no larger than size-1 */ 55 | uint16_t copy_tox_str(char *msg, size_t size, const char *data, uint16_t length); 56 | 57 | /* returns index of the first instance of ch in s starting at idx. 58 | returns length of s if char not found */ 59 | int char_find(int idx, const char *s, char ch); 60 | 61 | /* Converts seconds to string in format days hours minutes */ 62 | void get_elapsed_time_str(char *buf, int bufsize, uint64_t secs); 63 | 64 | /* 65 | * Searches plain text file pointed to by path for lines that match public_key. 66 | * 67 | * Returns 1 if a match is found. 68 | * Returns 0 if a match is not found. 69 | * Returns -1 on file operation failure. 70 | * 71 | * public_key must be a binary representation of a Tox public key. 72 | */ 73 | int file_contains_key(const char *public_key, const char *path); 74 | 75 | #endif /* MISC_H */ 76 | 77 | -------------------------------------------------------------------------------- /src/toxbot.c: -------------------------------------------------------------------------------- 1 | /* toxbot.c 2 | * 3 | * 4 | * Copyright (C) 2021 toxbot All Rights Reserved. 5 | * 6 | * This file is part of toxbot. 7 | * 8 | * toxbot 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 | * toxbot 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 toxbot. If not, see . 20 | * 21 | */ 22 | 23 | #include 24 | #include 25 | #include 26 | #include 27 | #include 28 | #include 29 | #include 30 | #include 31 | #include 32 | #include 33 | 34 | #include 35 | #include 36 | 37 | #include "misc.h" 38 | #include "commands.h" 39 | #include "toxbot.h" 40 | #include "groupchats.h" 41 | #include "log.h" 42 | 43 | #define VERSION "0.1.2" 44 | 45 | /* How often we attempt to purge inactive friends */ 46 | #define FRIEND_PURGE_INTERVAL (60 * 60) 47 | 48 | /* How often we attempt to purge inactive groups */ 49 | #define GROUP_PURGE_INTERVAL (60 * 10) 50 | 51 | /* How long we need to have had a stable connection before purging inactive groups */ 52 | #define GROUP_PURGE_CONNECT_TIMEOUT (60 * 60) 53 | 54 | /* How often we attempt to bootstrap when not presently connected to the network */ 55 | #define BOOTSTRAP_INTERVAL 20 56 | 57 | #define MAX_PORT_RANGE 65535 58 | 59 | /* Name of data file prior to version 0.1.1 */ 60 | #define DATA_FILE_PRE_0_1_1 "toxbot_save" 61 | 62 | volatile sig_atomic_t FLAG_EXIT = false; /* set on SIGINT */ 63 | 64 | struct Tox_Bot Tox_Bot; 65 | 66 | static struct Options { 67 | TOX_PROXY_TYPE proxy_type; 68 | char proxy_host[256]; 69 | uint16_t proxy_port; 70 | bool disable_udp; 71 | bool disable_lan; 72 | bool force_ipv4; 73 | } Options; 74 | 75 | static void init_toxbot_state(void) 76 | { 77 | Tox_Bot.start_time = get_time(); 78 | Tox_Bot.last_connected = get_time(); 79 | Tox_Bot.default_groupnum = 0; 80 | Tox_Bot.chats_idx = 0; 81 | Tox_Bot.num_online_friends = 0; 82 | 83 | /* 1 year default; anything lower should be explicitly set until we have a config file */ 84 | Tox_Bot.inactive_limit = 31536000; 85 | } 86 | 87 | static void catch_SIGINT(int sig) 88 | { 89 | FLAG_EXIT = true; 90 | } 91 | 92 | static void exit_toxbot(Tox *m) 93 | { 94 | save_data(m, DATA_FILE); 95 | tox_kill(m); 96 | exit(EXIT_SUCCESS); 97 | } 98 | 99 | /* Returns true if friendnumber's Tox ID is in the masterkeys list. */ 100 | bool friend_is_master(Tox *m, uint32_t friendnumber) 101 | { 102 | char public_key[TOX_PUBLIC_KEY_SIZE]; 103 | 104 | if (tox_friend_get_public_key(m, friendnumber, (uint8_t *) public_key, NULL) == 0) { 105 | return false; 106 | } 107 | 108 | return file_contains_key(public_key, MASTERLIST_FILE) == 1; 109 | } 110 | 111 | /* Returns true if public_key is in the blockedkeys list. */ 112 | static bool public_key_is_blocked(const char *public_key) 113 | { 114 | return file_contains_key(public_key, BLOCKLIST_FILE) == 1; 115 | } 116 | 117 | /* START CALLBACKS */ 118 | static void cb_self_connection_change(Tox *m, TOX_CONNECTION connection_status, void *userdata) 119 | { 120 | switch (connection_status) { 121 | case TOX_CONNECTION_NONE: 122 | log_timestamp("Connection lost"); 123 | Tox_Bot.last_bootstrap = get_time(); // usually we don't need to manually bootstrap if connection lost 124 | break; 125 | 126 | case TOX_CONNECTION_TCP: 127 | Tox_Bot.last_connected = get_time(); 128 | log_timestamp("Connection established (TCP)"); 129 | break; 130 | 131 | case TOX_CONNECTION_UDP: 132 | Tox_Bot.last_connected = get_time(); 133 | log_timestamp("Connection established (UDP)"); 134 | break; 135 | } 136 | } 137 | 138 | static void cb_friend_connection_change(Tox *m, uint32_t friendnumber, TOX_CONNECTION connection_status, void *userdata) 139 | { 140 | Tox_Bot.num_online_friends = 0; 141 | 142 | size_t i, size = tox_self_get_friend_list_size(m); 143 | 144 | if (size == 0) { 145 | return; 146 | } 147 | 148 | uint32_t list[size]; 149 | tox_self_get_friend_list(m, list); 150 | 151 | for (i = 0; i < size; ++i) { 152 | if (tox_friend_get_connection_status(m, list[i], NULL) != TOX_CONNECTION_NONE) { 153 | ++Tox_Bot.num_online_friends; 154 | } 155 | } 156 | } 157 | 158 | static void cb_friend_request(Tox *m, const uint8_t *public_key, const uint8_t *data, size_t length, 159 | void *userdata) 160 | { 161 | if (public_key_is_blocked((char *) public_key)) { 162 | return; 163 | } 164 | 165 | TOX_ERR_FRIEND_ADD err; 166 | tox_friend_add_norequest(m, public_key, &err); 167 | 168 | if (err != TOX_ERR_FRIEND_ADD_OK) { 169 | log_error_timestamp(err, "tox_friend_add_norequest failed"); 170 | } else { 171 | log_timestamp("Accepted friend request"); 172 | } 173 | 174 | save_data(m, DATA_FILE); 175 | } 176 | 177 | static void cb_friend_message(Tox *m, uint32_t friendnumber, TOX_MESSAGE_TYPE type, const uint8_t *string, 178 | size_t length, void *userdata) 179 | { 180 | if (type != TOX_MESSAGE_TYPE_NORMAL) { 181 | return; 182 | } 183 | 184 | char public_key[TOX_PUBLIC_KEY_SIZE]; 185 | 186 | if (tox_friend_get_public_key(m, friendnumber, (uint8_t *) public_key, NULL) == 0) { 187 | return; 188 | } 189 | 190 | if (public_key_is_blocked(public_key)) { 191 | tox_friend_delete(m, friendnumber, NULL); 192 | return; 193 | } 194 | 195 | const char *outmsg; 196 | char message[TOX_MAX_MESSAGE_LENGTH]; 197 | length = copy_tox_str(message, sizeof(message), (const char *) string, length); 198 | message[length] = '\0'; 199 | 200 | if (length && execute(m, friendnumber, message, length) == -1) { 201 | outmsg = "Invalid command. Type help for a list of commands"; 202 | tox_friend_send_message(m, friendnumber, TOX_MESSAGE_TYPE_NORMAL, (uint8_t *) outmsg, strlen(outmsg), NULL); 203 | } 204 | } 205 | 206 | static void cb_group_invite(Tox *m, uint32_t friendnumber, TOX_CONFERENCE_TYPE type, 207 | const uint8_t *cookie, size_t length, void *userdata) 208 | { 209 | if (!friend_is_master(m, friendnumber)) { 210 | return; 211 | } 212 | 213 | char name[TOX_MAX_NAME_LENGTH]; 214 | tox_friend_get_name(m, friendnumber, (uint8_t *) name, NULL); 215 | size_t len = tox_friend_get_name_size(m, friendnumber, NULL); 216 | name[len] = '\0'; 217 | 218 | int groupnum = -1; 219 | 220 | if (type == TOX_CONFERENCE_TYPE_TEXT) { 221 | TOX_ERR_CONFERENCE_JOIN err; 222 | groupnum = tox_conference_join(m, friendnumber, cookie, length, &err); 223 | 224 | if (err != TOX_ERR_CONFERENCE_JOIN_OK) { 225 | goto on_error; 226 | } 227 | } else if (type == TOX_CONFERENCE_TYPE_AV) { 228 | groupnum = toxav_join_av_groupchat(m, friendnumber, cookie, length, NULL, NULL); 229 | 230 | if (groupnum == -1) { 231 | goto on_error; 232 | } 233 | } 234 | 235 | if (group_add(groupnum, type, NULL) == -1) { 236 | log_error_timestamp(-1, "Invite from %s failed (group_add failed)", name); 237 | tox_conference_delete(m, groupnum, NULL); 238 | return; 239 | } 240 | 241 | log_timestamp("Accepted groupchat invite from %s [%d]", name, groupnum); 242 | return; 243 | 244 | on_error: 245 | log_error_timestamp(-1, "Invite from %s failed (core failure)", name); 246 | } 247 | 248 | static void cb_group_titlechange(Tox *m, uint32_t groupnumber, uint32_t peernumber, const uint8_t *title, 249 | size_t length, void *userdata) 250 | { 251 | char message[TOX_MAX_MESSAGE_LENGTH]; 252 | length = copy_tox_str(message, sizeof(message), (const char *) title, length); 253 | 254 | int idx = group_index(groupnumber); 255 | 256 | if (idx == -1) { 257 | return; 258 | } 259 | 260 | memcpy(Tox_Bot.g_chats[idx].title, message, length + 1); 261 | Tox_Bot.g_chats[idx].title_len = length; 262 | } 263 | /* END CALLBACKS */ 264 | 265 | int save_data(Tox *m, const char *path) 266 | { 267 | if (path == NULL) { 268 | goto on_error; 269 | } 270 | 271 | FILE *fp = fopen(path, "wb"); 272 | 273 | if (fp == NULL) { 274 | return -1; 275 | } 276 | 277 | size_t data_len = tox_get_savedata_size(m); 278 | char *data = malloc(data_len); 279 | 280 | if (data == NULL) { 281 | goto on_error; 282 | } 283 | 284 | tox_get_savedata(m, (uint8_t *) data); 285 | 286 | if (fwrite(data, data_len, 1, fp) != 1) { 287 | free(data); 288 | fclose(fp); 289 | goto on_error; 290 | } 291 | 292 | free(data); 293 | fclose(fp); 294 | return 0; 295 | 296 | on_error: 297 | log_error_timestamp(-1, "Warning: save_data failed"); 298 | return -1; 299 | } 300 | 301 | static Tox *load_tox(struct Tox_Options *options, char *path) 302 | { 303 | FILE *fp = fopen(path, "rb"); 304 | Tox *m = NULL; 305 | 306 | if (fp == NULL) { 307 | TOX_ERR_NEW err; 308 | m = tox_new(options, &err); 309 | 310 | if (err != TOX_ERR_NEW_OK) { 311 | fprintf(stderr, "tox_new failed with error %d\n", err); 312 | return NULL; 313 | } 314 | 315 | save_data(m, path); 316 | return m; 317 | } 318 | 319 | off_t data_len = file_size(path); 320 | 321 | if (data_len == 0) { 322 | fprintf(stderr, "tox_new failed: toxbot save file is empty\n"); 323 | fclose(fp); 324 | return NULL; 325 | } 326 | 327 | char data[data_len]; 328 | 329 | if (fread(data, sizeof(data), 1, fp) != 1) { 330 | fclose(fp); 331 | return NULL; 332 | } 333 | 334 | TOX_ERR_NEW err; 335 | options->savedata_type = TOX_SAVEDATA_TYPE_TOX_SAVE; 336 | options->savedata_data = (uint8_t *) data; 337 | options->savedata_length = data_len; 338 | 339 | m = tox_new(options, &err); 340 | 341 | if (err != TOX_ERR_NEW_OK) { 342 | fprintf(stderr, "tox_new failed with error %d\n", err); 343 | return NULL; 344 | } 345 | 346 | fclose(fp); 347 | return m; 348 | } 349 | 350 | static void load_conferences(Tox *m) 351 | { 352 | size_t num_chats = tox_conference_get_chatlist_size(m); 353 | 354 | if (num_chats == 0) { 355 | return; 356 | } 357 | 358 | uint32_t *chatlist = malloc(num_chats * sizeof(uint32_t)); 359 | 360 | if (chatlist == NULL) { 361 | fprintf(stderr, "malloc() failed in load_conferences()\n"); 362 | return; 363 | } 364 | 365 | tox_conference_get_chatlist(m, chatlist); 366 | 367 | for (size_t i = 0; i < num_chats; ++i) { 368 | uint32_t groupnumber = chatlist[i]; 369 | 370 | Tox_Err_Conference_Get_Type type_err; 371 | Tox_Conference_Type type = tox_conference_get_type(m, groupnumber, &type_err); 372 | 373 | if (type_err != TOX_ERR_CONFERENCE_GET_TYPE_OK) { 374 | tox_conference_delete(m, groupnumber, NULL); 375 | continue; 376 | } 377 | 378 | if (group_add(groupnumber, type, NULL) != 0) { 379 | fprintf(stderr, "Failed to autoload group %d\n", groupnumber); 380 | tox_conference_delete(m, groupnumber, NULL); 381 | continue; 382 | } 383 | } 384 | 385 | free(chatlist); 386 | } 387 | 388 | static void print_usage(void) 389 | { 390 | printf("usage: toxbot [OPTION] ...\n"); 391 | printf(" -4, --ipv4 Force IPv4\n"); 392 | printf(" -h, --help Show this message and exit\n"); 393 | printf(" -L, --no-lan Disable LAN\n"); 394 | printf(" -P, --HTTP-proxy Use HTTP proxy. Requires: [IP] [port]\n"); 395 | printf(" -p, --SOCKS5-proxy Use SOCKS proxy. Requires: [IP] [port]\n"); 396 | printf(" -t, --force-tcp Force connections through TCP relays (DHT disabled)\n"); 397 | } 398 | 399 | static void set_default_options(void) 400 | { 401 | Options = (struct Options) { 402 | 0 403 | }; 404 | 405 | /* set any non-zero defaults here*/ 406 | Options.proxy_type = TOX_PROXY_TYPE_NONE; 407 | } 408 | 409 | static void parse_args(int argc, char *argv[]) 410 | { 411 | set_default_options(); 412 | 413 | static struct option long_opts[] = { 414 | {"ipv4", no_argument, 0, '4'}, 415 | {"help", no_argument, 0, 'h'}, 416 | {"no-lan", no_argument, 0, 'L'}, 417 | {"SOCKS5-proxy", required_argument, 0, 'p'}, 418 | {"HTTP-proxy", required_argument, 0, 'P'}, 419 | {"force-tcp", no_argument, 0, 't'}, 420 | {NULL, no_argument, NULL, 0}, 421 | }; 422 | 423 | const char *options_string = "4hLtp:P:"; 424 | int opt = 0; 425 | int indexptr = 0; 426 | 427 | while ((opt = getopt_long(argc, argv, options_string, long_opts, &indexptr)) != -1) { 428 | switch (opt) { 429 | case '4': { 430 | Options.force_ipv4 = true; 431 | printf("Option set: Forcing IPV4\n"); 432 | break; 433 | } 434 | 435 | case 'L': { 436 | Options.disable_lan = true; 437 | printf("Option set: LAN disabled\n"); 438 | break; 439 | } 440 | 441 | case 'p': { 442 | Options.proxy_type = TOX_PROXY_TYPE_SOCKS5; 443 | } 444 | 445 | // Intentional fallthrough 446 | 447 | case 'P': { 448 | if (optarg == NULL) { 449 | fprintf(stderr, "Invalid argument for option: %d", opt); 450 | Options.proxy_type = TOX_PROXY_TYPE_NONE; 451 | break; 452 | } 453 | 454 | if (Options.proxy_type != TOX_PROXY_TYPE_SOCKS5) { 455 | Options.proxy_type = TOX_PROXY_TYPE_HTTP; 456 | } 457 | 458 | snprintf(Options.proxy_host, sizeof(Options.proxy_host), "%s", optarg); 459 | 460 | if (++optind > argc || argv[optind - 1][0] == '-') { 461 | fprintf(stderr, "Error setting proxy\n"); 462 | exit(EXIT_FAILURE); 463 | } 464 | 465 | long int port = strtol(argv[optind - 1], NULL, 10); 466 | 467 | if (port <= 0 || port > MAX_PORT_RANGE) { 468 | fprintf(stderr, "Invalid port given for proxy\n"); 469 | exit(EXIT_FAILURE); 470 | } 471 | 472 | Options.proxy_port = port; 473 | 474 | const char *proxy_str = Options.proxy_type == TOX_PROXY_TYPE_SOCKS5 ? "SOCKS5" : "HTTP"; 475 | 476 | printf("Option set: %s proxy %s:%ld\n", proxy_str, optarg, port); 477 | } 478 | 479 | // Intentional fallthrough 480 | // we always want UDP disabled if proxy is set 481 | // don't change order, as -t must come after -P or -p 482 | 483 | case 't': { 484 | Options.disable_udp = true; 485 | printf("Option set: UDP/DHT disabled\n"); 486 | break; 487 | } 488 | 489 | case 'h': 490 | 491 | // Intentional fallthrough 492 | 493 | default: { 494 | print_usage(); 495 | exit(EXIT_SUCCESS); 496 | } 497 | } 498 | } 499 | } 500 | 501 | static void init_tox_options(struct Tox_Options *tox_opts) 502 | { 503 | tox_options_default(tox_opts); 504 | 505 | tox_options_set_ipv6_enabled(tox_opts, !Options.force_ipv4); 506 | tox_options_set_udp_enabled(tox_opts, !Options.disable_udp); 507 | tox_options_set_proxy_type(tox_opts, Options.proxy_type); 508 | tox_options_set_local_discovery_enabled(tox_opts, !Options.disable_lan); 509 | 510 | if (Options.proxy_type != TOX_PROXY_TYPE_NONE) { 511 | tox_options_set_proxy_port(tox_opts, Options.proxy_port); 512 | tox_options_set_proxy_host(tox_opts, Options.proxy_host); 513 | } 514 | } 515 | 516 | static Tox *init_tox(void) 517 | { 518 | Tox_Err_Options_New err; 519 | struct Tox_Options *tox_opts = tox_options_new(&err); 520 | 521 | if (!tox_opts || err != TOX_ERR_OPTIONS_NEW_OK) { 522 | fprintf(stderr, "Failed to initialize tox options: error %d\n", err); 523 | exit(EXIT_FAILURE); 524 | } 525 | 526 | init_tox_options(tox_opts); 527 | 528 | Tox *m = load_tox(tox_opts, DATA_FILE); 529 | 530 | tox_options_free(tox_opts); 531 | 532 | if (!m) { 533 | return NULL; 534 | } 535 | 536 | tox_callback_self_connection_status(m, cb_self_connection_change); 537 | tox_callback_friend_connection_status(m, cb_friend_connection_change); 538 | tox_callback_friend_request(m, cb_friend_request); 539 | tox_callback_friend_message(m, cb_friend_message); 540 | tox_callback_conference_invite(m, cb_group_invite); 541 | tox_callback_conference_title(m, cb_group_titlechange); 542 | 543 | size_t s_len = tox_self_get_status_message_size(m); 544 | 545 | if (s_len == 0) { 546 | const char *statusmsg = "Send me the the command 'help' for more info"; 547 | tox_self_set_status_message(m, (uint8_t *) statusmsg, strlen(statusmsg), NULL); 548 | } 549 | 550 | size_t n_len = tox_self_get_name_size(m); 551 | 552 | if (n_len == 0) { 553 | tox_self_set_name(m, (uint8_t *) "Tox_Bot", strlen("Tox_Bot"), NULL); 554 | } 555 | 556 | return m; 557 | } 558 | 559 | /* TODO: hardcoding is bad stop being lazy */ 560 | static struct toxNodes { 561 | const char *ip; 562 | uint16_t port; 563 | const char *key; 564 | } nodes[] = { 565 | { "95.79.50.56", 33445, "8E7D0B859922EF569298B4D261A8CCB5FEA14FB91ED412A7603A585A25698832" }, 566 | { "85.143.221.42", 33445, "DA4E4ED4B697F2E9B000EEFE3A34B554ACD3F45F5C96EAEA2516DD7FF9AF7B43" }, 567 | { "46.229.52.198", 33445, "813C8F4187833EF0655B10F7752141A352248462A567529A38B6BBF73E979307" }, 568 | { "144.217.167.73", 33445, "7E5668E0EE09E19F320AD47902419331FFEE147BB3606769CFBE921A2A2FD34C" }, 569 | { "198.199.98.108", 33445, "BEF0CFB37AF874BD17B9A8F9FE64C75521DB95A37D33C5BDB00E9CF58659C04F" }, 570 | { "81.169.136.229", 33445, "E0DB78116AC6500398DDBA2AEEF3220BB116384CAB714C5D1FCD61EA2B69D75E" }, 571 | { "205.185.115.131", 53, "3091C6BEB2A993F1C6300C16549FABA67098FF3D62C6D253828B531470B53D68" }, 572 | { "46.101.197.175", 33445, "CD133B521159541FB1D326DE9850F5E56A6C724B5B8E5EB5CD8D950408E95707" }, 573 | { "195.201.7.101", 33445, "B84E865125B4EC4C368CD047C72BCE447644A2DC31EF75BD2CDA345BFD310107" }, 574 | { "168.138.203.178", 33445, "6D04D8248E553F6F0BFDDB66FBFB03977E3EE54C432D416BC2444986EF02CC17" }, 575 | { "5.19.249.240", 38296, "DA98A4C0CD7473A133E115FEA2EBDAEEA2EF4F79FD69325FC070DA4DE4BA3238" }, 576 | { "209.59.144.175", 33445, "214B7FEA63227CAEC5BCBA87F7ABEEDB1A2FF6D18377DD86BF551B8E094D5F1E" }, 577 | { "188.225.9.167", 33445, "1911341A83E02503AB1FD6561BD64AF3A9D6C3F12B5FBB656976B2E678644A67" }, 578 | { "122.116.39.151", 33445, "5716530A10D362867C8E87EE1CD5362A233BAFBBA4CF47FA73B7CAD368BD5E6E" }, 579 | { "195.123.208.139", 33445, "534A589BA7427C631773D13083570F529238211893640C99D1507300F055FE73" }, 580 | { "104.225.141.59", 43334, "933BA20B2E258B4C0D475B6DECE90C7E827FE83EFA9655414E7841251B19A72C" }, 581 | { "137.74.42.224", 33445, "A95177FA018066CF044E811178D26B844CBF7E1E76F140095B3A1807E081A204" }, 582 | { "172.105.109.31", 33445, "D46E97CF995DC1820B92B7D899E152A217D36ABE22730FEA4B6BF1BFC06C617C" }, 583 | { "91.146.66.26", 33445, "B5E7DAC610DBDE55F359C7F8690B294C8E4FCEC4385DE9525DBFA5523EAD9D53" }, 584 | { NULL, 0, NULL }, 585 | }; 586 | 587 | static void bootstrap_DHT(Tox *m) 588 | { 589 | for (int i = 0; nodes[i].ip; ++i) { 590 | char *key = hex_string_to_bin(nodes[i].key); 591 | 592 | TOX_ERR_BOOTSTRAP err; 593 | tox_bootstrap(m, nodes[i].ip, nodes[i].port, (uint8_t *) key, &err); 594 | 595 | if (err != TOX_ERR_BOOTSTRAP_OK) { 596 | fprintf(stderr, "Failed to bootstrap DHT: %s %d (error %d)\n", nodes[i].ip, nodes[i].port, err); 597 | } 598 | 599 | tox_add_tcp_relay(m, nodes[i].ip, nodes[i].port, (uint8_t *) key, &err); 600 | 601 | if (err != TOX_ERR_BOOTSTRAP_OK) { 602 | fprintf(stderr, "Failed to add TCP relay: %s %d (error %d)\n", nodes[i].ip, nodes[i].port, err); 603 | } 604 | 605 | free(key); 606 | } 607 | } 608 | 609 | static void print_profile_info(Tox *m) 610 | { 611 | printf("Tox_Bot version %s\n", VERSION); 612 | printf("Toxcore version %d.%d.%d\n", tox_version_major(), tox_version_minor(), tox_version_patch()); 613 | printf("Tox ID: "); 614 | 615 | char address[TOX_ADDRESS_SIZE]; 616 | tox_self_get_address(m, (uint8_t *) address); 617 | 618 | for (int i = 0; i < TOX_ADDRESS_SIZE; ++i) { 619 | char d[3]; 620 | snprintf(d, sizeof(d), "%02X", address[i] & 0xff); 621 | printf("%s", d); 622 | } 623 | 624 | printf("\n"); 625 | 626 | char name[TOX_MAX_NAME_LENGTH]; 627 | size_t len = tox_self_get_name_size(m); 628 | tox_self_get_name(m, (uint8_t *) name); 629 | name[len] = '\0'; 630 | 631 | size_t numfriends = tox_self_get_friend_list_size(m); 632 | size_t num_chats = tox_conference_get_chatlist_size(m); 633 | 634 | printf("Name: %s\n", name); 635 | printf("Contacts: %lu\n", numfriends); 636 | printf("Active groups: %lu\n", num_chats); 637 | } 638 | 639 | static void purge_inactive_friends(Tox *m) 640 | { 641 | size_t numfriends = tox_self_get_friend_list_size(m); 642 | 643 | if (numfriends == 0) { 644 | return; 645 | } 646 | 647 | uint32_t friend_list[numfriends]; 648 | tox_self_get_friend_list(m, friend_list); 649 | 650 | for (size_t i = 0; i < numfriends; ++i) { 651 | uint32_t friendnum = friend_list[i]; 652 | 653 | if (!tox_friend_exists(m, friendnum)) { 654 | continue; 655 | } 656 | 657 | TOX_ERR_FRIEND_GET_LAST_ONLINE err; 658 | uint64_t last_online = tox_friend_get_last_online(m, friendnum, &err); 659 | 660 | if (err != TOX_ERR_FRIEND_GET_LAST_ONLINE_OK) { 661 | continue; 662 | } 663 | 664 | if (get_time() - last_online > Tox_Bot.inactive_limit) { 665 | tox_friend_delete(m, friendnum, NULL); 666 | } 667 | } 668 | } 669 | 670 | static void purge_empty_groups(Tox *m) 671 | { 672 | for (uint32_t i = 0; i < Tox_Bot.chats_idx; ++i) { 673 | if (!Tox_Bot.g_chats[i].active) { 674 | continue; 675 | } 676 | 677 | TOX_ERR_CONFERENCE_PEER_QUERY err; 678 | uint32_t num_peers = tox_conference_peer_count(m, Tox_Bot.g_chats[i].groupnum, &err); 679 | 680 | if (err != TOX_ERR_CONFERENCE_PEER_QUERY_OK || num_peers <= 1) { 681 | log_timestamp("Deleting empty group %d", Tox_Bot.g_chats[i].groupnum); 682 | tox_conference_delete(m, Tox_Bot.g_chats[i].groupnum, NULL); 683 | group_leave(i); 684 | 685 | if (i >= Tox_Bot.chats_idx) { // group_leave modifies chats_idx 686 | return; 687 | } 688 | } 689 | } 690 | } 691 | 692 | /* Return true if we should attempt to purge empty groups. 693 | * 694 | * Empty groups are purged on an interval, but only if we have a stable connection 695 | * to the Tox network. 696 | */ 697 | static bool check_group_purge(time_t last_group_purge, time_t cur_time, TOX_CONNECTION connection_status) 698 | { 699 | if (!timed_out(last_group_purge, cur_time, GROUP_PURGE_INTERVAL)) { 700 | return false; 701 | } 702 | 703 | if (connection_status == TOX_CONNECTION_NONE) { 704 | return false; 705 | } 706 | 707 | if (!timed_out(Tox_Bot.last_connected, cur_time, GROUP_PURGE_CONNECT_TIMEOUT)) { 708 | return false; 709 | } 710 | 711 | return true; 712 | } 713 | 714 | /* Attempts to rename legacy toxbot save file to new name 715 | * 716 | * Return 0 on successful rename, or if legacy file does not exist. 717 | * Return -1 if both legacy file and new file exist. If this occurrs the user needs to manually sort 718 | * the situation out. 719 | * Return -2 if file rename operation is unsuccessful. 720 | */ 721 | static int legacy_data_file_rename(void) 722 | { 723 | if (!file_exists(DATA_FILE_PRE_0_1_1)) { 724 | return 0; 725 | } 726 | 727 | if (file_exists(DATA_FILE)) { 728 | return -1; 729 | } 730 | 731 | if (rename(DATA_FILE_PRE_0_1_1, DATA_FILE) != 0) { 732 | return -2; 733 | } 734 | 735 | printf("Renaming legacy toxbot save file to '%s'\n", DATA_FILE); 736 | 737 | return 0; 738 | } 739 | 740 | int main(int argc, char **argv) 741 | { 742 | signal(SIGINT, catch_SIGINT); 743 | umask(S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH); 744 | 745 | int ret = legacy_data_file_rename() ; 746 | 747 | if (ret != 0) { 748 | fprintf(stderr, "Failed to rename legacy data file. Error: %d\n", ret); 749 | exit(EXIT_FAILURE); 750 | } 751 | 752 | parse_args(argc, argv); 753 | 754 | Tox *m = init_tox(); 755 | 756 | if (m == NULL) { 757 | exit(EXIT_FAILURE); 758 | } 759 | 760 | init_toxbot_state(); 761 | load_conferences(m); 762 | print_profile_info(m); 763 | 764 | time_t cur_time = get_time(); 765 | 766 | uint64_t last_friend_purge = cur_time; 767 | uint64_t last_group_purge = cur_time; 768 | 769 | while (!FLAG_EXIT) { 770 | TOX_CONNECTION connection_status = tox_self_get_connection_status(m); 771 | 772 | if (connection_status == TOX_CONNECTION_NONE 773 | && timed_out(Tox_Bot.last_bootstrap, cur_time, BOOTSTRAP_INTERVAL)) { 774 | log_timestamp("Bootstrapping to network..."); 775 | bootstrap_DHT(m); 776 | Tox_Bot.last_bootstrap = cur_time; 777 | } 778 | 779 | if (connection_status != TOX_CONNECTION_NONE && timed_out(last_friend_purge, cur_time, FRIEND_PURGE_INTERVAL)) { 780 | purge_inactive_friends(m); 781 | save_data(m, DATA_FILE); 782 | last_friend_purge = cur_time; 783 | } 784 | 785 | if (check_group_purge(last_group_purge, cur_time, connection_status)) { 786 | purge_empty_groups(m); 787 | last_group_purge = cur_time; 788 | } 789 | 790 | tox_iterate(m, NULL); 791 | 792 | usleep(tox_iteration_interval(m) * 1000); 793 | 794 | cur_time = get_time(); 795 | } 796 | 797 | exit_toxbot(m); 798 | 799 | return 0; 800 | } 801 | 802 | -------------------------------------------------------------------------------- /src/toxbot.h: -------------------------------------------------------------------------------- 1 | /* toxbot.h 2 | * 3 | * 4 | * Copyright (C) 2021 toxbot All Rights Reserved. 5 | * 6 | * This file is part of toxbot. 7 | * 8 | * toxbot 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 | * toxbot 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 toxbot. If not, see . 20 | * 21 | */ 22 | 23 | #ifndef TOXBOT_H 24 | #define TOXBOT_H 25 | 26 | #include 27 | #include 28 | #include "groupchats.h" 29 | 30 | #define MAX_NUM_GROUPS 256 31 | 32 | #define DATA_FILE "toxbot.tox" 33 | #define MASTERLIST_FILE "masterkeys" 34 | #define BLOCKLIST_FILE "blockedkeys" 35 | 36 | struct Tox_Bot { 37 | time_t start_time; // time toxbot was started 38 | time_t last_connected; // time we last connected to the network 39 | time_t last_bootstrap; // last time we tried to bootstrap 40 | uint64_t inactive_limit; // how often we purge inactive contacts 41 | int default_groupnum; // the group that invite commands with no ID default to 42 | int num_online_friends; 43 | int chats_idx; 44 | 45 | struct Group_Chat *g_chats; 46 | }; 47 | 48 | int load_Masters(const char *path); 49 | int save_data(Tox *m, const char *path); 50 | bool friend_is_master(Tox *m, uint32_t friendnumber); 51 | 52 | #endif /* TOXBOT_H */ 53 | 54 | --------------------------------------------------------------------------------