1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117
|
/*
* Copyright 2014-2016 James Geboski <jgeboski@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _FACEBOOK_API_H_
#define _FACEBOOK_API_H_
/**
* SECTION:api
* @section_id: facebook-api
* @short_description: <filename>facebook-api.h</filename>
* @title: Facebook API
*
* The API for interacting with the Facebook Messenger protocol.
*/
#include "facebook-glib.h"
#include "facebook-http.h"
#include "facebook-id.h"
#include "facebook-mqtt.h"
#define FB_TYPE_API (fb_api_get_type())
#define FB_API(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), FB_TYPE_API, FbApi))
#define FB_API_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), FB_TYPE_API, FbApiClass))
#define FB_IS_API(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), FB_TYPE_API))
#define FB_IS_API_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), FB_TYPE_API))
#define FB_API_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), FB_TYPE_API, FbApiClass))
/**
* FB_API_AHOST:
*
* The HTTP host for the Facebook API.
*/
#define FB_API_AHOST "https://api.facebook.com"
/**
* FB_API_BHOST:
*
* The HTTP host for the Facebook BAPI.
*/
#define FB_API_BHOST "https://b-api.facebook.com"
/**
* FB_API_GHOST:
*
* The HTTP host for the Facebook Graph API.
*/
#define FB_API_GHOST "https://graph.facebook.com"
/**
* FB_API_WHOST:
*
* The HTTP host for the Facebook website.
*/
#define FB_API_WHOST "https://www.facebook.com"
/**
* FB_API_FBRPC_PREFIX
*
* The fbrpc URL prefix used in links shared from the mobile app.
*/
#define FB_API_FBRPC_PREFIX "fbrpc://facebook/nativethirdparty"
/**
* FB_API_KEY:
*
* The Facebook API key.
*/
#define FB_API_KEY "256002347743983"
/**
* FB_API_SECRET:
*
* The Facebook API secret.
*/
#define FB_API_SECRET "374e60f8b9bb6b8cbb30f78030438895"
/**
* FB_WORK_API_KEY:
*
* The Facebook workchat app API key.
*/
#define FB_WORK_API_KEY "312713275593566"
/**
* FB_WORK_API_SECRET:
*
* The Facebook workchat app API secret.
*/
#define FB_WORK_API_SECRET "d2901dc6cb685df3b074b30b56b78d28"
/**
* FB_ORCA_AGENT
*
* The part of the user agent that looks like the official client, since the
* server started checking this.
*
* We announce ourselves as compatible with Orca-Android 38.0 since that's the
* closest version to the last major protocol update. Some parts use older
* features, some parts use newer ones.
*
* Fun fact: this version sends old-style MQIsdp CONNECT messages for the first
* connection, with JSON payloads instead of compressed thrift.
*
*/
#define FB_ORCA_AGENT "[FBAN/Orca-Android;FBAV/537.0.0.31.101;FBBV/14477681]"
/**
* FB_API_AGENT:
*
* The HTTP User-Agent header.
*/
#define FB_API_AGENT_BASE "Facebook plugin / BitlBee / " PACKAGE_VERSION
#define FB_API_AGENT FB_API_AGENT_BASE " " FB_ORCA_AGENT
/**
* FB_API_MQTT_AGENT
*
* The client information string sent in the MQTT CONNECT message
*/
#define FB_API_MQTT_AGENT FB_API_AGENT
/**
* FB_API_URL_ATTACH:
*
* The URL for attachment URL requests.
*/
#define FB_API_URL_ATTACH FB_API_AHOST "/method/messaging.getAttachment"
//#define FB_API_URL_ATTACH FB_API_AHOST "/method/messaging.attachmentRedirect"
/**
* FB_API_URL_AUTH:
*
* The URL for authentication requests.
*/
#define FB_API_URL_AUTH FB_API_BHOST "/method/auth.login"
/**
* FB_API_URL_WORK_PRELOGIN
*
* The URL for workchat pre-login information, indicating what auth method
* should be used
*/
#define FB_API_URL_WORK_PRELOGIN FB_API_GHOST "/at_work/pre_login_info"
/**
* FB_API_URL_GQL:
*
* The URL for GraphQL requests.
*/
#define FB_API_URL_GQL FB_API_GHOST "/graphql"
/**
* FB_API_URL_MESSAGES:
*
* The URL for linking message threads.
*/
#define FB_API_URL_MESSAGES FB_API_WHOST "/messages"
/**
* FB_API_URL_PARTS:
*
* The URL for participant management requests.
*/
#define FB_API_URL_PARTS FB_API_GHOST "/participants"
/**
* FB_API_URL_THREADS:
*
* The URL for thread management requests.
*/
#define FB_API_URL_THREADS FB_API_GHOST "/me/group_threads"
/**
* FB_API_URL_TOPIC:
*
* The URL for thread topic requests.
*/
#define FB_API_URL_TOPIC FB_API_AHOST "/method/messaging.setthreadname"
/**
* FB_API_SSO_URL:
*
* Template for the URL shown to workchat users when trying to authenticate
* with SSO.
*/
#define FB_API_SSO_URL "https://m.facebook.com/work/sso/mobile?app_id=312713275593566&response_url=fb-workchat-sso%%3A%%2F%%2Fsso&request_id=%s&code_challenge=%s&email=%s"
/**
* FB_API_QUERY_CONTACT:
*
* The query hash for the `UsersQuery`.
*
* Key mapping:
* 0: user_fbids
* 1: include_full_user_info
* 2: profile_pic_large_size
* 3: profile_pic_medium_size
* 4: profile_pic_small_size
*/
#define FB_API_QUERY_CONTACT 10153915107411729
/**
* FB_API_QUERY_CONTACTS:
*
* The query hash for the `FetchContactsFullQuery`.
*
* Key mapping:
* 0: profile_types
* 1: limit
* 2: big_img_size
* 3: huge_img_size
* 4: small_img_size
*/
#define FB_API_QUERY_CONTACTS 10154444360806729
/**
* FB_API_QUERY_CONTACTS_AFTER:
*
* The query hash for the `FetchContactsFullWithAfterQuery`.
*
* Key mapping:
* 0: profile_types
* 1: after
* 2: limit
* 3: big_img_size
* 4: huge_img_size
* 5: small_img_size
*/
#define FB_API_QUERY_CONTACTS_AFTER 10154444360816729
/**
* FB_API_QUERY_CONTACTS_DELTA:
*
* The query hash for the `FetchContactsDeltaQuery`.
*
* Key mapping:
* 0: after
* 1: profile_types
* 2: limit
* 3: big_img_size
* 4: huge_img_size
* 5: small_img_size
*/
#define FB_API_QUERY_CONTACTS_DELTA 10154444360801729
/**
* FB_API_QUERY_STICKER:
*
* The query hash for the `FetchStickersWithPreviewsQuery`.
*
* Key mapping:
* 0: sticker_ids
* 1: media_type
* 2: preview_size
* 3: scaling_factor
* 4: animated_media_type
*/
#define FB_API_QUERY_STICKER 10152877994321729
/**
* FB_API_QUERY_THREAD:
*
* The query hash for the `ThreadQuery`.
*
* Key mapping:
* 0: thread_ids
* 1: verification_type
* 2: hash_key
* 3: small_preview_size
* 4: large_preview_size
* 5: item_count
* 6: event_count
* 7: full_screen_height
* 8: full_screen_width
* 9: medium_preview_size
* 10: fetch_users_separately
* 11: include_message_info
* 12: msg_count
* 13: include_full_user_info
* 14: profile_pic_large_size
* 15: profile_pic_medium_size
* 16: profile_pic_small_size
*/
#define FB_API_QUERY_THREAD 10153919752036729
/**
* FB_API_QUERY_THREADS:
*
* The query hash for the `ThreadListQuery`.
*
* Key mapping:
* 0: folder_tag
* 1: thread_count
* 2: include_thread_info
* 3: verification_type
* 4: hash_key
* 5: small_preview_size
* 6: large_preview_size
* 7: item_count
* 8: event_count
* 9: full_screen_height
* 10: full_screen_width
* 11: medium_preview_size
* 12: fetch_users_separately
* 13: include_message_info
* 14: msg_count
* 15: UNKNOWN
* 16: profile_pic_large_size
* 17: profile_pic_medium_size
* 18: profile_pic_small_size
*/
#define FB_API_QUERY_THREADS 10153919752026729
/**
* FB_API_QUERY_SEQ_ID:
*
* A variant of ThreadListQuery with sequence ID
*
* TODO: parameters.
*/
#define FB_API_QUERY_SEQ_ID 10155268192741729
/**
* FB_API_QUERY_XMA:
*
* The query hash for the `XMAQuery`.
*
* Key mapping:
* 0: xma_id
*/
#define FB_API_QUERY_XMA 10153919431161729
/**
* FB_API_WORK_COMMUNITY_PEEK:
*
* The docid with information about the work community of the currently
* authenticated user.
*
* Used when prelogin returns can_login_via_linked_account
*/
#define FB_API_WORK_COMMUNITY_PEEK 1295334753880530
/**
* FB_API_CONTACTS_COUNT:
*
* The maximum amount of contacts to fetch in a single request. If this
* value is set too high, HTTP request will fail. This is due to the
* request data being too large.
*/
#define FB_API_CONTACTS_COUNT 500
/**
* FB_API_TCHK:
* @e: The expression.
*
* Checks the Thrift related expression to ensure that it evaluates to
* #TRUE. If the expression evaluates to #FALSE, a #GError is assigned
* to the local `error` variable, then returns with no value.
*
* This macro is meant to only be used for Thrift related expressions,
* where the calling function has a `void` return type. This macro also
* requires the existence of a predefined `error` variable, which is a
* pointer of a pointer to a #GError.
*/
#define FB_API_TCHK(e) \
G_STMT_START { \
if (G_UNLIKELY(!(e))) { \
g_set_error(error, FB_API_ERROR, FB_API_ERROR_GENERAL, \
"Failed to read thrift: %s:%d " \
"%s: assertion '%s' failed", \
__FILE__, __LINE__, G_STRFUNC, #e); \
return; \
} \
} G_STMT_END
/**
* FB_API_MSGID:
* @m: The time in milliseconds.
* @i: The random integer.
*
* Creates a 64-bit message identifier in the Facebook format.
*
* Returns: The message identifier.
*/
#define FB_API_MSGID(m, i) ((guint64) ( \
(((guint32) i) & 0x3FFFFF) | \
(((guint64) m) << 22) \
))
/**
* FB_API_ERROR_EMIT:
* @a: The #FbApi.
* @e: The #FbApiError.
* @c: The code to execute.
*
* Emits a #GError on behalf of the #FbApi.
*/
#define FB_API_ERROR_EMIT(a, e, c) \
G_STMT_START { \
if (G_UNLIKELY((e) != NULL)) { \
fb_api_error_emit(a, e); \
{c;} \
} \
} G_STMT_END
/**
* FB_API_ERROR:
*
* The #GQuark of the domain of API errors.
*/
#define FB_API_ERROR fb_api_error_quark()
typedef struct _FbApi FbApi;
typedef struct _FbApiClass FbApiClass;
typedef struct _FbApiPrivate FbApiPrivate;
typedef struct _FbApiEvent FbApiEvent;
typedef struct _FbApiMessage FbApiMessage;
typedef struct _FbApiPresence FbApiPresence;
typedef struct _FbApiThread FbApiThread;
typedef struct _FbApiTyping FbApiTyping;
typedef struct _FbApiUser FbApiUser;
/**
* FbApiError:
* @FB_API_ERROR_GENERAL: General failure.
* @FB_API_ERROR_AUTH: Authentication failure.
* @FB_API_ERROR_QUEUE: Queue failure.
* @FB_API_ERROR_NONFATAL: Other non-fatal errors.
*
* The error codes for the #FB_API_ERROR domain.
*/
typedef enum
{
FB_API_ERROR_GENERAL,
FB_API_ERROR_AUTH,
FB_API_ERROR_QUEUE,
FB_API_ERROR_NONFATAL
} FbApiError;
/**
* FbApiEventType:
* @FB_API_EVENT_TYPE_THREAD_TOPIC: The thread topic was changed.
* @FB_API_EVENT_TYPE_THREAD_USER_ADDED: A thread user was added.
* @FB_API_EVENT_TYPE_THREAD_USER_REMOVED: A thread user was removed.
*
* The #FbApiEvent types.
*/
typedef enum
{
FB_API_EVENT_TYPE_THREAD_TOPIC,
FB_API_EVENT_TYPE_THREAD_USER_ADDED,
FB_API_EVENT_TYPE_THREAD_USER_REMOVED
} FbApiEventType;
/**
* FbApiMessageFlags:
* @FB_API_MESSAGE_FLAG_DONE: The text has been processed.
* @FB_API_MESSAGE_FLAG_IMAGE: The text is a URL to an image.
* @FB_API_MESSAGE_FLAG_SELF: The text is from the #FbApi user.
*
* The #FbApiMessage flags.
*/
typedef enum
{
FB_API_MESSAGE_FLAG_DONE = 1 << 0,
FB_API_MESSAGE_FLAG_IMAGE = 1 << 1,
FB_API_MESSAGE_FLAG_SELF = 1 << 2
} FbApiMessageFlags;
/**
* FbApiClientCapabilities:
* @FB_CP_ACKNOWLEDGED_DELIVERY:
* @FB_CP_PROCESSING_LASTACTIVE_PRESENCEINFO:
* @FB_CP_EXACT_KEEPALIVE:
* @FB_CP_REQUIRES_JSON_UNICODE_ESCAPES:
* @FB_CP_DELTA_SENT_MESSAGE_ENABLED:
* @FB_CP_USE_ENUM_TOPIC: All topics are numeric.
* @FB_CP_SUPPRESS_GETDIFF_IN_CONNECT:
* @FB_CP_USE_THRIFT_FOR_INBOX:
* @FB_CP_USE_SEND_PINGRESP:
* @FB_CP_REQUIRE_REPLAY_PROTECTION:
* @FB_CP_DATA_SAVING_MODE:
* @FB_CP_TYPING_OFF_WHEN_SENDING_MESSAGE:
*
* The client capabilities.
*/
typedef enum
{
FB_CP_ACKNOWLEDGED_DELIVERY = 1 << 0,
FB_CP_PROCESSING_LASTACTIVE_PRESENCEINFO = 1 << 1,
FB_CP_EXACT_KEEPALIVE = 1 << 2,
FB_CP_REQUIRES_JSON_UNICODE_ESCAPES = 1 << 3,
FB_CP_DELTA_SENT_MESSAGE_ENABLED = 1 << 4,
FB_CP_USE_ENUM_TOPIC = 1 << 5,
FB_CP_SUPPRESS_GETDIFF_IN_CONNECT = 1 << 6,
FB_CP_USE_THRIFT_FOR_INBOX = 1 << 7,
FB_CP_USE_SEND_PINGRESP = 1 << 8,
FB_CP_REQUIRE_REPLAY_PROTECTION = 1 << 9,
FB_CP_DATA_SAVING_MODE = 1 << 10,
FB_CP_TYPING_OFF_WHEN_SENDING_MESSAGE = 1 << 11
} FbApiClientCapabilities;
/**
* FbApi:
*
* Represents a Facebook Messenger connection.
*/
struct _FbApi
{
/*< private >*/
GObject parent;
FbApiPrivate *priv;
};
/**
* FbApiClass:
*
* The base class for all #FbApi's.
*/
struct _FbApiClass
{
/*< private >*/
GObjectClass parent_class;
};
/**
* FbApiEvent:
* @type: The #FbApiEventType.
* @uid: The user #FbId.
* @tid: The thread #FbId.
* @text: The event text.
*
* Represents a Facebook update event.
*/
struct _FbApiEvent
{
FbApiEventType type;
FbId uid;
FbId tid;
gchar *text;
};
/**
* FbApiMessage:
* @flags: The #FbApiMessageFlags.
* @uid: The user #FbId.
* @tid: The thread #FbId.
* @tstamp: The timestamp in milliseconds (UTC).
* @text: The message text.
*
* Represents a Facebook user message.
*/
struct _FbApiMessage
{
FbApiMessageFlags flags;
FbId uid;
FbId tid;
gint64 tstamp;
gchar *text;
};
/**
* FbApiPresence:
* @uid: The user #FbId.
* @active: #TRUE if the user is active, otherwise #FALSE.
*
* Represents a Facebook presence message.
*/
struct _FbApiPresence
{
FbId uid;
gboolean active;
};
/**
* FbApiThread:
* @tid: The thread #FbId.
* @topic: The topic.
* @users: The #GSList of #FbApiUser's.
*
* Represents a Facebook message thread.
*/
struct _FbApiThread
{
FbId tid;
gchar *topic;
GSList *users;
};
/**
* FbApiTyping:
* @uid: The user #FbId.
* @state: #TRUE if the user is typing, otherwise #FALSE.
*
* Represents a Facebook typing message.
*/
struct _FbApiTyping
{
FbId uid;
gboolean state;
};
/**
* FbApiUser:
* @uid: The user #FbId.
* @name: The name of the user.
* @icon: The icon URL.
* @csum: The checksum of @icon.
*
* Represents a Facebook user.
*/
struct _FbApiUser
{
FbId uid;
gchar *name;
gchar *icon;
gchar *csum;
};
/**
* fb_api_get_type:
*
* Returns: The #GType for an #FbApi.
*/
GType
fb_api_get_type(void);
/**
* fb_api_error_quark:
*
* Gets the #GQuark of the domain of API errors.
*
* Returns: The #GQuark of the domain.
*/
GQuark
fb_api_error_quark(void);
/**
* fb_api_new:
*
* Creates a new #FbApi. The returned #FbApi should be freed with
* #g_object_unref() when no longer needed.
*
* Returns: The new #FbApi.
*/
FbApi *
fb_api_new(void);
/**
* fb_api_rehash:
* @api: The #FbApi.
*
* Rehashes and updates internal data of the #FbApi. This should be
* called whenever properties are modified.
*/
void
fb_api_rehash(FbApi *api);
/**
* fb_api_is_invisible:
* @api: The #FbApi.
*
* Determines if the user of the #FbApi is invisible.
*
* Returns: #TRUE if the #FbApi user is invisible, otherwise #FALSE.
*/
gboolean
fb_api_is_invisible(FbApi *api);
/**
* fb_api_error:
* @api: The #FbApi.
* @error: The #FbApiError.
* @format: The format string literal.
* @...: The arguments for @format.
*
* Emits an #FbApiError.
*/
void
fb_api_error(FbApi *api, FbApiError error, const gchar *format, ...)
G_GNUC_PRINTF(3, 4);
/**
* fb_api_error_emit:
* @api: The #FbApi.
* @error: The #GError.
*
* Emits a #GError on an #FbApiError.
*/
void
fb_api_error_emit(FbApi *api, GError *error);
/**
* fb_api_auth:
* @api: The #FbApi.
* @user: The Facebook user name, email, or phone number.
* @pass: The Facebook password.
* @credentials_type: Type of work account credentials, or NULL
*
* Sends an authentication request to Facebook. This will obtain
* session information, which is required for all other requests.
*/
void
fb_api_auth(FbApi *api, const gchar *user, const gchar *pass, const gchar *credentials_type);
/**
* fb_api_work_login:
* @api: The #FbApi.
* @user: The Facebook user name, email, or phone number.
* @pass: The Facebook password.
*
* Starts the workchat login sequence.
*/
void
fb_api_work_login(FbApi *api, gchar *user, gchar *pass);
/**
* fb_api_work_gen_sso_url:
* @api: The #FbApi.
* @user: The Facebook user email.
*
* Generates the URL to be shown to the user to get the SSO auth token. This
* url contains a challenge and the corresponding verifier is saved in the
* FbApi instance to be used later.
*
* Returns: a newly allocated string.
*/
gchar *
fb_api_work_gen_sso_url(FbApi *api, const gchar *user);
/**
* fb_api_work_got_nonce:
* @api: The #FbApi.
* @url: The fb-workchat-sso:// URL as entered by the user
*
* Parses the fb-workchat-sso:// URL that the user got redirected to and
* continues with work_sso_nonce auth
*/
void
fb_api_work_got_nonce(FbApi *api, const gchar *url);
/**
* fb_api_contact:
* @api: The #FbApi.
* @uid: The user #FbId.
*
* Sends a contact request. This will obtain the general information of
* a single contact.
*/
void
fb_api_contact(FbApi *api, FbId uid);
/**
* fb_api_contacts:
* @api: The #FbApi.
*
* Sends a contacts request. This will obtain a full list of detailed
* contact information about the friends of the #FbApi user.
*/
void
fb_api_contacts(FbApi *api);
/**
* fb_api_connect:
* @api: The #FbApi.
* @invisible: #TRUE to make the user invisible, otherwise #FALSE.
*
* Initializes and establishes the underlying MQTT connection.
*/
void
fb_api_connect(FbApi *api, gboolean invisible);
/**
* fb_api_disconnect:
* @api: The #FbApi.
*
* Closes the underlying MQTT connection.
*/
void
fb_api_disconnect(FbApi *api);
/**
* fb_api_message:
* @api: The #FbApi.
* @id: The user or thread #FbId.
* @thread: #TRUE if @id is a thread, otherwise #FALSE.
* @text: The message text.
*
* Sends a message as the user of the #FbApi to a user or a thread.
*/
void
fb_api_message(FbApi *api, FbId id, gboolean thread, const gchar *text);
/**
* fb_api_publish:
* @api: The #FbApi.
* @topic: The topic.
* @format: The format string literal.
* @...: The arguments for @format.
*
* Publishes an MQTT message.
*/
void
fb_api_publish(FbApi *api, const gchar *topic, const gchar *format, ...)
G_GNUC_PRINTF(3, 4);
/**
* fb_api_read:
* @api: The #FbApi.
* @id: The user or thread #FbId.
* @thread: #TRUE if @id is a thread, otherwise #FALSE.
*
* Marks a message thread as read.
*/
void
fb_api_read(FbApi *api, FbId id, gboolean thread);
/**
* fb_api_unread:
* @api: The #FbApi.
*
* Sends an unread message request.
*/
void
fb_api_unread(FbApi *api);
/**
* fb_api_thread:
* @api: The #FbApi.
* @tid: The thread #FbId.
*
* Sends a thread request. This will obtain the general information of
* a single thread.
*/
void
fb_api_thread(FbApi *api, FbId tid);
/**
* fb_api_thread_create:
* @api: The #FbApi.
* @uids: The #GSList of #FbId's.
*
* Sends a thread creation request. In order to create a thread, there
* must be at least two other users in @uids.
*/
void
fb_api_thread_create(FbApi *api, GSList *uids);
/**
* fb_api_thread_invite:
* @api: The #FbApi.
* @tid: The thread #FbId.
* @uid: The user #FbId.
*
* Sends a thread user invitation request.
*/
void
fb_api_thread_invite(FbApi *api, FbId tid, FbId uid);
/**
* fb_api_thread_remove:
* @api: The #FbApi.
* @tid: The thread #FbId.
* @uid: The user #FbId.
*
* Sends a thread user removal request.
*/
void
fb_api_thread_remove(FbApi *api, FbId tid, FbId uid);
/**
* fb_api_thread_topic:
* @api: The #FbApi.
* @tid: The thread #FbId.
* @topic: The topic.
*
* Sends a thread topic change request.
*/
void
fb_api_thread_topic(FbApi *api, FbId tid, const gchar *topic);
/**
* fb_api_threads:
* @api: The #FbApi.
*
* Sends a threads request. This will obtain a full list of detailed
* thread information about the threads of the #FbApi user.
*/
void
fb_api_threads(FbApi *api);
/**
* fb_api_typing:
* @api: The #FbApi.
* @uid: The user #FbId.
* @state: #TRUE if the #FbApi user is typing, otherwise #FALSE.
*
* Sends a typing state message for the user of the #FbApi.
*/
void
fb_api_typing(FbApi *api, FbId uid, gboolean state);
/**
* fb_api_event_dup:
* @event: The #FbApiEvent or #NULL.
* @deep: #TRUE to duplicate allocated data, otherwise #FALSE.
*
* Duplicates an #FbApiEvent. If @event is #NULL, a new zero filled
* #FbApiEvent is returned. The returned #FbApiEvent should be freed
* with #fb_api_event_free() when no longer needed.
*
* Returns: The new #FbApiEvent.
*/
FbApiEvent *
fb_api_event_dup(const FbApiEvent *event, gboolean deep);
/**
* fb_api_event_reset:
* @event: The #FbApiEvent.
* @deep: #TRUE to free allocated data, otherwise #FALSE.
*
* Resets an #FbApiEvent.
*/
void
fb_api_event_reset(FbApiEvent *event, gboolean deep);
/**
* fb_api_event_free:
* @event: The #FbApiEvent.
*
* Frees all memory used by the #FbApiEvent.
*/
void
fb_api_event_free(FbApiEvent *event);
/**
* fb_api_message_dup:
* @msg: The #FbApiMessage or #NULL.
* @deep: #TRUE to duplicate allocated data, otherwise #FALSE.
*
* Duplicates an #FbApiMessage. If @msg is #NULL, a new zero filled
* #FbApiMessage is returned. The returned #FbApiMessage should be
* freed with #fb_api_message_free() when no longer needed.
*
* Returns: The new #FbApiMessage.
*/
FbApiMessage *
fb_api_message_dup(const FbApiMessage *msg, gboolean deep);
/**
* fb_api_message_reset:
* @msg: The #FbApiMessage.
* @deep: #TRUE to free allocated data, otherwise #FALSE.
*
* Resets an #FbApiMessage.
*/
void
fb_api_message_reset(FbApiMessage *msg, gboolean deep);
/**
* fb_api_message_free:
* @msg: The #FbApiMessage.
*
* Frees all memory used by the #FbApiMessage.
*/
void
fb_api_message_free(FbApiMessage *msg);
/**
* fb_api_presence_dup:
* @pres: The #FbApiPresence or #NULL.
*
* Duplicates an #FbApiPresence. If @pres is #NULL, a new zero filled
* #FbApiPresence is returned. The returned #FbApiPresence should be
* freed with #fb_api_presence_free() when no longer needed.
*
* Returns: The new #FbApiPresence.
*/
FbApiPresence *
fb_api_presence_dup(const FbApiPresence *pres);
/**
* fb_api_presence_reset:
* @pres: The #FbApiPresence.
*
* Resets an #FbApiPresence.
*/
void
fb_api_presence_reset(FbApiPresence *pres);
/**
* fb_api_presence_free:
* @pres: The #FbApiPresence.
*
* Frees all memory used by the #FbApiPresence.
*/
void
fb_api_presence_free(FbApiPresence *pres);
/**
* fb_api_thread_dup:
* @thrd: The #FbApiThread or #NULL.
* @deep: #TRUE to duplicate allocated data, otherwise #FALSE.
*
* Duplicates an #FbApiThread. If @thrd is #NULL, a new zero filled
* #FbApiThread is returned. The returned #FbApiThread should be freed
* with #fb_api_thread_free() when no longer needed.
*
* Returns: The new #FbApiThread.
*/
FbApiThread *
fb_api_thread_dup(const FbApiThread *thrd, gboolean deep);
/**
* fb_api_thread_reset:
* @thrd: The #FbApiThread.
* @deep: #TRUE to free allocated data, otherwise #FALSE.
*
* Resets an #FbApiThread.
*/
void
fb_api_thread_reset(FbApiThread *thrd, gboolean deep);
/**
* fb_api_thread_free:
* @thrd: The #FbApiThread.
*
* Frees all memory used by the #FbApiThread.
*/
void
fb_api_thread_free(FbApiThread *thrd);
/**
* fb_api_typing_dup:
* @typg: The #FbApiTyping or #NULL.
*
* Duplicates an #FbApiTyping. If @typg is #NULL, a new zero filled
* #FbApiTyping is returned. The returned #FbApiTyping should be freed
* with #fb_api_typing_free() when no longer needed.
*
* Returns: The new #FbApiTyping.
*/
FbApiTyping *
fb_api_typing_dup(const FbApiTyping *typg);
/**
* fb_api_typing_reset:
* @typg: The #FbApiTyping.
*
* Resets an #FbApiTyping.
*/
void
fb_api_typing_reset(FbApiTyping *typg);
/**
* fb_api_typing_free:
* @typg: The #FbApiTyping.
*
* Frees all memory used by the #FbApiTyping.
*/
void
fb_api_typing_free(FbApiTyping *typg);
/**
* fb_api_user_dup:
* @user: The #FbApiUser or #NULL.
* @deep: #TRUE to duplicate allocated data, otherwise #FALSE.
*
* Duplicates an #FbApiUser. If @user is #NULL, a new zero filled
* #FbApiUser is returned. The returned #FbApiUser should be freed with
* #fb_api_user_free() when no longer needed.
*
* Returns: The new #FbApiUser.
*/
FbApiUser *
fb_api_user_dup(const FbApiUser *user, gboolean deep);
/**
* fb_api_user_reset:
* @user: The #FbApiUser.
* @deep: #TRUE to free allocated data, otherwise #FALSE.
*
* Resets an #FbApiUser.
*/
void
fb_api_user_reset(FbApiUser *user, gboolean deep);
/**
* fb_api_user_free:
* @user: The #FbApiUser.
*
* Frees all memory used by the #FbApiUser.
*/
void
fb_api_user_free(FbApiUser *user);
#endif /* _FACEBOOK_API_H_ */
|