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
use anyhow::Result; use crate::Client; pub struct Events { pub client: Client, } impl Events { #[doc(hidden)] pub fn new(client: Client) -> Self { Events { client } } /** * This function performs a `GET` to the `/calendars/{calendarId}/events` endpoint. * * Returns events on the specified calendar. * * **Parameters:** * * * `calendar_id: &str` -- Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary" keyword. * * `always_include_email: bool` -- Deprecated and ignored. A value will always be returned in the email field for the organizer, creator and attendees, even if no real email address is available (i.e. a generated, non-working value will be provided). * * `i_cal_uid: &str` -- Specifies event ID in the iCalendar format to be included in the response. Optional. * * `max_attendees: i64` -- The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional. * * `max_results: i64` -- Maximum number of events returned on one result page. The number of events in the resulting page may be less than this value, or none at all, even if there are more events matching the query. Incomplete pages can be detected by a non-empty nextPageToken field in the response. By default the value is 250 events. The page size can never be larger than 2500 events. Optional. * * `order_by: crate::types::OrderBy` -- The order of the events returned in the result. Optional. The default is an unspecified, stable order. * * `page_token: &str` -- Token specifying which result page to return. Optional. * * `private_extended_property: &[String]` -- Extended properties constraint specified as propertyName=value. Matches only private properties. This parameter might be repeated multiple times to return events that match all given constraints. * * `q: &str` -- Free text search terms to find events that match these terms in any field, except for extended properties. Optional. * * `shared_extended_property: &[String]` -- Extended properties constraint specified as propertyName=value. Matches only shared properties. This parameter might be repeated multiple times to return events that match all given constraints. * * `show_deleted: bool` -- Whether to include deleted events (with status equals "cancelled") in the result. Cancelled instances of recurring events (but not the underlying recurring event) will still be included if showDeleted and singleEvents are both False. If showDeleted and singleEvents are both True, only single instances of deleted events (but not the underlying recurring events) are returned. Optional. The default is False. * * `show_hidden_invitations: bool` -- Whether this calendar list entry has been deleted from the calendar list. Read-only. Optional. The default is False. * * `single_events: bool` -- Whether to expand recurring events into instances and only return single one-off events and instances of recurring events, but not the underlying recurring events themselves. Optional. The default is False. * * `sync_token: &str` -- Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries that have changed since then. All events deleted since the previous list request will always be in the result set and it is not allowed to set showDeleted to False. * There are several query parameters that cannot be specified together with nextSyncToken to ensure consistency of the client state. * * These are: * - iCalUID * - orderBy * - privateExtendedProperty * - q * - sharedExtendedProperty * - timeMin * - timeMax * - updatedMin If the syncToken expires, the server will respond with a 410 GONE response code and the client should clear its storage and perform a full synchronization without any syncToken. * Learn more about incremental synchronization. * Optional. The default is to return all entries. * * `time_max: &str` -- Upper bound (exclusive) for an event's start time to filter by. Optional. The default is not to filter by start time. Must be an RFC3339 timestamp with mandatory time zone offset, for example, 2011-06-03T10:00:00-07:00, 2011-06-03T10:00:00Z. Milliseconds may be provided but are ignored. If timeMin is set, timeMax must be greater than timeMin. * * `time_min: &str` -- Lower bound (exclusive) for an event's end time to filter by. Optional. The default is not to filter by end time. Must be an RFC3339 timestamp with mandatory time zone offset, for example, 2011-06-03T10:00:00-07:00, 2011-06-03T10:00:00Z. Milliseconds may be provided but are ignored. If timeMax is set, timeMin must be smaller than timeMax. * * `time_zone: &str` -- Time zone used in the response. Optional. The default is the time zone of the calendar. * * `updated_min: &str` -- Lower bound for an event's last modification time (as a RFC3339 timestamp) to filter by. When specified, entries deleted since this time will always be included regardless of showDeleted. Optional. The default is not to filter by last modification time. */ pub async fn list( &self, calendar_id: &str, i_cal_uid: &str, max_attendees: i64, max_results: i64, order_by: crate::types::OrderBy, page_token: &str, private_extended_property: &[String], q: &str, shared_extended_property: &[String], show_deleted: bool, show_hidden_invitations: bool, single_events: bool, time_max: &str, time_min: &str, time_zone: &str, updated_min: &str, ) -> Result<Vec<crate::types::Event>> { let mut query_args: Vec<(String, String)> = Default::default(); if !i_cal_uid.is_empty() { query_args.push(("iCalUID".to_string(), i_cal_uid.to_string())); } if max_attendees > 0 { query_args.push(("maxAttendees".to_string(), max_attendees.to_string())); } if max_results > 0 { query_args.push(("maxResults".to_string(), max_results.to_string())); } if !order_by.to_string().is_empty() { query_args.push(("orderBy".to_string(), order_by.to_string())); } if !page_token.is_empty() { query_args.push(("pageToken".to_string(), page_token.to_string())); } if !private_extended_property.is_empty() { query_args.push(( "privateExtendedProperty".to_string(), private_extended_property.join(" "), )); } if !q.is_empty() { query_args.push(("q".to_string(), q.to_string())); } if !shared_extended_property.is_empty() { query_args.push(( "sharedExtendedProperty".to_string(), shared_extended_property.join(" "), )); } if show_deleted { query_args.push(("showDeleted".to_string(), show_deleted.to_string())); } if show_hidden_invitations { query_args.push(( "showHiddenInvitations".to_string(), show_hidden_invitations.to_string(), )); } if single_events { query_args.push(("singleEvents".to_string(), single_events.to_string())); } if !time_max.is_empty() { query_args.push(("timeMax".to_string(), time_max.to_string())); } if !time_min.is_empty() { query_args.push(("timeMin".to_string(), time_min.to_string())); } if !time_zone.is_empty() { query_args.push(("timeZone".to_string(), time_zone.to_string())); } if !updated_min.is_empty() { query_args.push(("updatedMin".to_string(), updated_min.to_string())); } let query_ = serde_urlencoded::to_string(&query_args).unwrap(); let url = format!( "/calendars/{}/events?{}", crate::progenitor_support::encode_path(&calendar_id.to_string()), query_ ); let resp: crate::types::Events = self.client.get(&url, None).await?; // Return our response data. Ok(resp.items) } /** * This function performs a `GET` to the `/calendars/{calendarId}/events` endpoint. * * As opposed to `list`, this function returns all the pages of the request at once. * * Returns events on the specified calendar. */ pub async fn list_all( &self, calendar_id: &str, i_cal_uid: &str, max_attendees: i64, order_by: crate::types::OrderBy, private_extended_property: &[String], q: &str, shared_extended_property: &[String], show_deleted: bool, show_hidden_invitations: bool, single_events: bool, time_max: &str, time_min: &str, time_zone: &str, updated_min: &str, ) -> Result<Vec<crate::types::Event>> { let mut query_args: Vec<(String, String)> = Default::default(); if !i_cal_uid.is_empty() { query_args.push(("iCalUID".to_string(), i_cal_uid.to_string())); } if max_attendees > 0 { query_args.push(("maxAttendees".to_string(), max_attendees.to_string())); } if !order_by.to_string().is_empty() { query_args.push(("orderBy".to_string(), order_by.to_string())); } if !private_extended_property.is_empty() { query_args.push(( "privateExtendedProperty".to_string(), private_extended_property.join(" "), )); } if !q.is_empty() { query_args.push(("q".to_string(), q.to_string())); } if !shared_extended_property.is_empty() { query_args.push(( "sharedExtendedProperty".to_string(), shared_extended_property.join(" "), )); } if show_deleted { query_args.push(("showDeleted".to_string(), show_deleted.to_string())); } if show_hidden_invitations { query_args.push(( "showHiddenInvitations".to_string(), show_hidden_invitations.to_string(), )); } if single_events { query_args.push(("singleEvents".to_string(), single_events.to_string())); } if !time_max.is_empty() { query_args.push(("timeMax".to_string(), time_max.to_string())); } if !time_min.is_empty() { query_args.push(("timeMin".to_string(), time_min.to_string())); } if !time_zone.is_empty() { query_args.push(("timeZone".to_string(), time_zone.to_string())); } if !updated_min.is_empty() { query_args.push(("updatedMin".to_string(), updated_min.to_string())); } let query_ = serde_urlencoded::to_string(&query_args).unwrap(); let url = format!( "/calendars/{}/events?{}", crate::progenitor_support::encode_path(&calendar_id.to_string()), query_ ); let mut resp: crate::types::Events = self.client.get(&url, None).await?; let mut items = resp.items; let mut page = resp.next_page_token; // Paginate if we should. while !page.is_empty() { if !url.contains('?') { resp = self .client .get(&format!("{}?pageToken={}", url, page), None) .await?; } else { resp = self .client .get(&format!("{}&pageToken={}", url, page), None) .await?; } items.append(&mut resp.items); if !resp.next_page_token.is_empty() && resp.next_page_token != page { page = resp.next_page_token.to_string(); } else { page = "".to_string(); } } // Return our response data. Ok(items) } /** * This function performs a `POST` to the `/calendars/{calendarId}/events` endpoint. * * Creates an event. * * **Parameters:** * * * `calendar_id: &str` -- Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary" keyword. * * `conference_data_version: u64` -- Version number of conference data supported by the API client. Version 0 assumes no conference data support and ignores conference data in the event's body. Version 1 enables support for copying of ConferenceData as well as for creating new conferences using the createRequest field of conferenceData. The default is 0. * * `max_attendees: i64` -- The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional. * * `send_notifications: bool` -- Deprecated. Please use sendUpdates instead. * * Whether to send notifications about the creation of the new event. Note that some emails might still be sent even if you set the value to false. The default is false. * * `send_updates: crate::types::SendUpdates` -- Whether to send notifications about the creation of the new event. Note that some emails might still be sent. The default is false. * * `supports_attachments: bool` -- Whether this calendar list entry has been deleted from the calendar list. Read-only. Optional. The default is False. */ pub async fn insert( &self, calendar_id: &str, conference_data_version: u64, max_attendees: i64, send_notifications: bool, send_updates: crate::types::SendUpdates, supports_attachments: bool, body: &crate::types::Event, ) -> Result<crate::types::Event> { let mut query_args: Vec<(String, String)> = Default::default(); if !conference_data_version.to_string().is_empty() { query_args.push(( "conferenceDataVersion".to_string(), conference_data_version.to_string(), )); } if max_attendees > 0 { query_args.push(("maxAttendees".to_string(), max_attendees.to_string())); } if send_notifications { query_args.push(( "sendNotifications".to_string(), send_notifications.to_string(), )); } if !send_updates.to_string().is_empty() { query_args.push(("sendUpdates".to_string(), send_updates.to_string())); } if supports_attachments { query_args.push(( "supportsAttachments".to_string(), supports_attachments.to_string(), )); } let query_ = serde_urlencoded::to_string(&query_args).unwrap(); let url = format!( "/calendars/{}/events?{}", crate::progenitor_support::encode_path(&calendar_id.to_string()), query_ ); self.client .post(&url, Some(reqwest::Body::from(serde_json::to_vec(body)?))) .await } /** * This function performs a `POST` to the `/calendars/{calendarId}/events/import` endpoint. * * Imports an event. This operation is used to add a private copy of an existing event to a calendar. * * **Parameters:** * * * `calendar_id: &str` -- Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary" keyword. * * `conference_data_version: u64` -- Version number of conference data supported by the API client. Version 0 assumes no conference data support and ignores conference data in the event's body. Version 1 enables support for copying of ConferenceData as well as for creating new conferences using the createRequest field of conferenceData. The default is 0. * * `supports_attachments: bool` -- Whether this calendar list entry has been deleted from the calendar list. Read-only. Optional. The default is False. */ pub async fn import( &self, calendar_id: &str, conference_data_version: u64, supports_attachments: bool, body: &crate::types::Event, ) -> Result<crate::types::Event> { let mut query_args: Vec<(String, String)> = Default::default(); if !conference_data_version.to_string().is_empty() { query_args.push(( "conferenceDataVersion".to_string(), conference_data_version.to_string(), )); } if supports_attachments { query_args.push(( "supportsAttachments".to_string(), supports_attachments.to_string(), )); } let query_ = serde_urlencoded::to_string(&query_args).unwrap(); let url = format!( "/calendars/{}/events/import?{}", crate::progenitor_support::encode_path(&calendar_id.to_string()), query_ ); self.client .post(&url, Some(reqwest::Body::from(serde_json::to_vec(body)?))) .await } /** * This function performs a `POST` to the `/calendars/{calendarId}/events/quickAdd` endpoint. * * Creates an event based on a simple text string. * * **Parameters:** * * * `calendar_id: &str` -- Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary" keyword. * * `text: &str` -- The text describing the event to be created. * * `send_notifications: bool` -- Deprecated. Please use sendUpdates instead. * * Whether to send notifications about the creation of the event. Note that some emails might still be sent even if you set the value to false. The default is false. * * `send_updates: crate::types::SendUpdates` -- Whether to send notifications about the creation of the new event. Note that some emails might still be sent. The default is false. */ pub async fn quick_add( &self, calendar_id: &str, text: &str, send_notifications: bool, send_updates: crate::types::SendUpdates, ) -> Result<crate::types::Event> { let mut query_args: Vec<(String, String)> = Default::default(); if send_notifications { query_args.push(( "sendNotifications".to_string(), send_notifications.to_string(), )); } if !send_updates.to_string().is_empty() { query_args.push(("sendUpdates".to_string(), send_updates.to_string())); } if !text.is_empty() { query_args.push(("text".to_string(), text.to_string())); } let query_ = serde_urlencoded::to_string(&query_args).unwrap(); let url = format!( "/calendars/{}/events/quickAdd?{}", crate::progenitor_support::encode_path(&calendar_id.to_string()), query_ ); self.client.post(&url, None).await } /** * This function performs a `POST` to the `/calendars/{calendarId}/events/watch` endpoint. * * Watch for changes to Events resources. * * **Parameters:** * * * `calendar_id: &str` -- Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary" keyword. * * `always_include_email: bool` -- Deprecated and ignored. A value will always be returned in the email field for the organizer, creator and attendees, even if no real email address is available (i.e. a generated, non-working value will be provided). * * `i_cal_uid: &str` -- Specifies event ID in the iCalendar format to be included in the response. Optional. * * `max_attendees: i64` -- The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional. * * `max_results: i64` -- Maximum number of events returned on one result page. The number of events in the resulting page may be less than this value, or none at all, even if there are more events matching the query. Incomplete pages can be detected by a non-empty nextPageToken field in the response. By default the value is 250 events. The page size can never be larger than 2500 events. Optional. * * `order_by: crate::types::OrderBy` -- The order of the events returned in the result. Optional. The default is an unspecified, stable order. * * `page_token: &str` -- Token specifying which result page to return. Optional. * * `private_extended_property: &[String]` -- Extended properties constraint specified as propertyName=value. Matches only private properties. This parameter might be repeated multiple times to return events that match all given constraints. * * `q: &str` -- Free text search terms to find events that match these terms in any field, except for extended properties. Optional. * * `shared_extended_property: &[String]` -- Extended properties constraint specified as propertyName=value. Matches only shared properties. This parameter might be repeated multiple times to return events that match all given constraints. * * `show_deleted: bool` -- Whether to include deleted events (with status equals "cancelled") in the result. Cancelled instances of recurring events (but not the underlying recurring event) will still be included if showDeleted and singleEvents are both False. If showDeleted and singleEvents are both True, only single instances of deleted events (but not the underlying recurring events) are returned. Optional. The default is False. * * `show_hidden_invitations: bool` -- Whether this calendar list entry has been deleted from the calendar list. Read-only. Optional. The default is False. * * `single_events: bool` -- Whether to expand recurring events into instances and only return single one-off events and instances of recurring events, but not the underlying recurring events themselves. Optional. The default is False. * * `sync_token: &str` -- Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries that have changed since then. All events deleted since the previous list request will always be in the result set and it is not allowed to set showDeleted to False. * There are several query parameters that cannot be specified together with nextSyncToken to ensure consistency of the client state. * * These are: * - iCalUID * - orderBy * - privateExtendedProperty * - q * - sharedExtendedProperty * - timeMin * - timeMax * - updatedMin If the syncToken expires, the server will respond with a 410 GONE response code and the client should clear its storage and perform a full synchronization without any syncToken. * Learn more about incremental synchronization. * Optional. The default is to return all entries. * * `time_max: &str` -- Upper bound (exclusive) for an event's start time to filter by. Optional. The default is not to filter by start time. Must be an RFC3339 timestamp with mandatory time zone offset, for example, 2011-06-03T10:00:00-07:00, 2011-06-03T10:00:00Z. Milliseconds may be provided but are ignored. If timeMin is set, timeMax must be greater than timeMin. * * `time_min: &str` -- Lower bound (exclusive) for an event's end time to filter by. Optional. The default is not to filter by end time. Must be an RFC3339 timestamp with mandatory time zone offset, for example, 2011-06-03T10:00:00-07:00, 2011-06-03T10:00:00Z. Milliseconds may be provided but are ignored. If timeMax is set, timeMin must be smaller than timeMax. * * `time_zone: &str` -- Time zone used in the response. Optional. The default is the time zone of the calendar. * * `updated_min: &str` -- Lower bound for an event's last modification time (as a RFC3339 timestamp) to filter by. When specified, entries deleted since this time will always be included regardless of showDeleted. Optional. The default is not to filter by last modification time. */ pub async fn watch( &self, calendar_id: &str, i_cal_uid: &str, max_attendees: i64, max_results: i64, order_by: crate::types::OrderBy, page_token: &str, private_extended_property: &[String], q: &str, shared_extended_property: &[String], show_deleted: bool, show_hidden_invitations: bool, single_events: bool, time_max: &str, time_min: &str, time_zone: &str, updated_min: &str, body: &crate::types::Channel, ) -> Result<crate::types::Channel> { let mut query_args: Vec<(String, String)> = Default::default(); if !i_cal_uid.is_empty() { query_args.push(("iCalUID".to_string(), i_cal_uid.to_string())); } if max_attendees > 0 { query_args.push(("maxAttendees".to_string(), max_attendees.to_string())); } if max_results > 0 { query_args.push(("maxResults".to_string(), max_results.to_string())); } if !order_by.to_string().is_empty() { query_args.push(("orderBy".to_string(), order_by.to_string())); } if !page_token.is_empty() { query_args.push(("pageToken".to_string(), page_token.to_string())); } if !private_extended_property.is_empty() { query_args.push(( "privateExtendedProperty".to_string(), private_extended_property.join(" "), )); } if !q.is_empty() { query_args.push(("q".to_string(), q.to_string())); } if !shared_extended_property.is_empty() { query_args.push(( "sharedExtendedProperty".to_string(), shared_extended_property.join(" "), )); } if show_deleted { query_args.push(("showDeleted".to_string(), show_deleted.to_string())); } if show_hidden_invitations { query_args.push(( "showHiddenInvitations".to_string(), show_hidden_invitations.to_string(), )); } if single_events { query_args.push(("singleEvents".to_string(), single_events.to_string())); } if !time_max.is_empty() { query_args.push(("timeMax".to_string(), time_max.to_string())); } if !time_min.is_empty() { query_args.push(("timeMin".to_string(), time_min.to_string())); } if !time_zone.is_empty() { query_args.push(("timeZone".to_string(), time_zone.to_string())); } if !updated_min.is_empty() { query_args.push(("updatedMin".to_string(), updated_min.to_string())); } let query_ = serde_urlencoded::to_string(&query_args).unwrap(); let url = format!( "/calendars/{}/events/watch?{}", crate::progenitor_support::encode_path(&calendar_id.to_string()), query_ ); self.client .post(&url, Some(reqwest::Body::from(serde_json::to_vec(body)?))) .await } /** * This function performs a `GET` to the `/calendars/{calendarId}/events/{eventId}` endpoint. * * Returns an event. * * **Parameters:** * * * `calendar_id: &str` -- Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary" keyword. * * `event_id: &str` -- ETag of the collection. * * `always_include_email: bool` -- Deprecated and ignored. A value will always be returned in the email field for the organizer, creator and attendees, even if no real email address is available (i.e. a generated, non-working value will be provided). * * `max_attendees: i64` -- The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional. * * `time_zone: &str` -- Time zone used in the response. Optional. The default is the time zone of the calendar. */ pub async fn get( &self, calendar_id: &str, event_id: &str, max_attendees: i64, time_zone: &str, ) -> Result<crate::types::Event> { let mut query_args: Vec<(String, String)> = Default::default(); if max_attendees > 0 { query_args.push(("maxAttendees".to_string(), max_attendees.to_string())); } if !time_zone.is_empty() { query_args.push(("timeZone".to_string(), time_zone.to_string())); } let query_ = serde_urlencoded::to_string(&query_args).unwrap(); let url = format!( "/calendars/{}/events/{}?{}", crate::progenitor_support::encode_path(&calendar_id.to_string()), crate::progenitor_support::encode_path(&event_id.to_string()), query_ ); self.client.get(&url, None).await } /** * This function performs a `PUT` to the `/calendars/{calendarId}/events/{eventId}` endpoint. * * Updates an event. * * **Parameters:** * * * `calendar_id: &str` -- Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary" keyword. * * `event_id: &str` -- ETag of the collection. * * `always_include_email: bool` -- Deprecated and ignored. A value will always be returned in the email field for the organizer, creator and attendees, even if no real email address is available (i.e. a generated, non-working value will be provided). * * `conference_data_version: u64` -- Version number of conference data supported by the API client. Version 0 assumes no conference data support and ignores conference data in the event's body. Version 1 enables support for copying of ConferenceData as well as for creating new conferences using the createRequest field of conferenceData. The default is 0. * * `max_attendees: i64` -- The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional. * * `send_notifications: bool` -- Deprecated. Please use sendUpdates instead. * * Whether to send notifications about the event update (for example, description changes, etc.). Note that some emails might still be sent even if you set the value to false. The default is false. * * `send_updates: crate::types::SendUpdates` -- Whether to send notifications about the creation of the new event. Note that some emails might still be sent. The default is false. * * `supports_attachments: bool` -- Whether this calendar list entry has been deleted from the calendar list. Read-only. Optional. The default is False. */ pub async fn update( &self, calendar_id: &str, event_id: &str, conference_data_version: u64, max_attendees: i64, send_notifications: bool, send_updates: crate::types::SendUpdates, supports_attachments: bool, body: &crate::types::Event, ) -> Result<crate::types::Event> { let mut query_args: Vec<(String, String)> = Default::default(); if !conference_data_version.to_string().is_empty() { query_args.push(( "conferenceDataVersion".to_string(), conference_data_version.to_string(), )); } if max_attendees > 0 { query_args.push(("maxAttendees".to_string(), max_attendees.to_string())); } if send_notifications { query_args.push(( "sendNotifications".to_string(), send_notifications.to_string(), )); } if !send_updates.to_string().is_empty() { query_args.push(("sendUpdates".to_string(), send_updates.to_string())); } if supports_attachments { query_args.push(( "supportsAttachments".to_string(), supports_attachments.to_string(), )); } let query_ = serde_urlencoded::to_string(&query_args).unwrap(); let url = format!( "/calendars/{}/events/{}?{}", crate::progenitor_support::encode_path(&calendar_id.to_string()), crate::progenitor_support::encode_path(&event_id.to_string()), query_ ); self.client .put(&url, Some(reqwest::Body::from(serde_json::to_vec(body)?))) .await } /** * This function performs a `DELETE` to the `/calendars/{calendarId}/events/{eventId}` endpoint. * * Deletes an event. * * **Parameters:** * * * `calendar_id: &str` -- Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary" keyword. * * `event_id: &str` -- ETag of the collection. * * `send_notifications: bool` -- Deprecated. Please use sendUpdates instead. * * Whether to send notifications about the deletion of the event. Note that some emails might still be sent even if you set the value to false. The default is false. * * `send_updates: crate::types::SendUpdates` -- Whether to send notifications about the creation of the new event. Note that some emails might still be sent. The default is false. */ pub async fn delete( &self, calendar_id: &str, event_id: &str, send_notifications: bool, send_updates: crate::types::SendUpdates, ) -> Result<()> { let mut query_args: Vec<(String, String)> = Default::default(); if send_notifications { query_args.push(( "sendNotifications".to_string(), send_notifications.to_string(), )); } if !send_updates.to_string().is_empty() { query_args.push(("sendUpdates".to_string(), send_updates.to_string())); } let query_ = serde_urlencoded::to_string(&query_args).unwrap(); let url = format!( "/calendars/{}/events/{}?{}", crate::progenitor_support::encode_path(&calendar_id.to_string()), crate::progenitor_support::encode_path(&event_id.to_string()), query_ ); self.client.delete(&url, None).await } /** * This function performs a `PATCH` to the `/calendars/{calendarId}/events/{eventId}` endpoint. * * Updates an event. This method supports patch semantics. * * **Parameters:** * * * `calendar_id: &str` -- Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary" keyword. * * `event_id: &str` -- ETag of the collection. * * `always_include_email: bool` -- Deprecated and ignored. A value will always be returned in the email field for the organizer, creator and attendees, even if no real email address is available (i.e. a generated, non-working value will be provided). * * `conference_data_version: u64` -- Version number of conference data supported by the API client. Version 0 assumes no conference data support and ignores conference data in the event's body. Version 1 enables support for copying of ConferenceData as well as for creating new conferences using the createRequest field of conferenceData. The default is 0. * * `max_attendees: i64` -- The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional. * * `send_notifications: bool` -- Deprecated. Please use sendUpdates instead. * * Whether to send notifications about the event update (for example, description changes, etc.). Note that some emails might still be sent even if you set the value to false. The default is false. * * `send_updates: crate::types::SendUpdates` -- Whether to send notifications about the creation of the new event. Note that some emails might still be sent. The default is false. * * `supports_attachments: bool` -- Whether this calendar list entry has been deleted from the calendar list. Read-only. Optional. The default is False. */ pub async fn patch( &self, calendar_id: &str, event_id: &str, conference_data_version: u64, max_attendees: i64, send_notifications: bool, send_updates: crate::types::SendUpdates, supports_attachments: bool, body: &crate::types::Event, ) -> Result<crate::types::Event> { let mut query_args: Vec<(String, String)> = Default::default(); if !conference_data_version.to_string().is_empty() { query_args.push(( "conferenceDataVersion".to_string(), conference_data_version.to_string(), )); } if max_attendees > 0 { query_args.push(("maxAttendees".to_string(), max_attendees.to_string())); } if send_notifications { query_args.push(( "sendNotifications".to_string(), send_notifications.to_string(), )); } if !send_updates.to_string().is_empty() { query_args.push(("sendUpdates".to_string(), send_updates.to_string())); } if supports_attachments { query_args.push(( "supportsAttachments".to_string(), supports_attachments.to_string(), )); } let query_ = serde_urlencoded::to_string(&query_args).unwrap(); let url = format!( "/calendars/{}/events/{}?{}", crate::progenitor_support::encode_path(&calendar_id.to_string()), crate::progenitor_support::encode_path(&event_id.to_string()), query_ ); self.client .patch(&url, Some(reqwest::Body::from(serde_json::to_vec(body)?))) .await } /** * This function performs a `GET` to the `/calendars/{calendarId}/events/{eventId}/instances` endpoint. * * Returns instances of the specified recurring event. * * **Parameters:** * * * `calendar_id: &str` -- Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary" keyword. * * `event_id: &str` -- Recurring event identifier. * * `always_include_email: bool` -- Deprecated and ignored. A value will always be returned in the email field for the organizer, creator and attendees, even if no real email address is available (i.e. a generated, non-working value will be provided). * * `max_attendees: i64` -- The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional. * * `max_results: i64` -- Maximum number of events returned on one result page. By default the value is 250 events. The page size can never be larger than 2500 events. Optional. * * `original_start: &str` -- The original start time of the instance in the result. Optional. * * `page_token: &str` -- Token specifying which result page to return. Optional. * * `show_deleted: bool` -- Whether to include deleted events (with status equals "cancelled") in the result. Cancelled instances of recurring events will still be included if singleEvents is False. Optional. The default is False. * * `time_max: &str` -- Upper bound (exclusive) for an event's start time to filter by. Optional. The default is not to filter by start time. Must be an RFC3339 timestamp with mandatory time zone offset. * * `time_min: &str` -- Lower bound (inclusive) for an event's end time to filter by. Optional. The default is not to filter by end time. Must be an RFC3339 timestamp with mandatory time zone offset. * * `time_zone: &str` -- Time zone used in the response. Optional. The default is the time zone of the calendar. */ pub async fn instances( &self, calendar_id: &str, event_id: &str, max_attendees: i64, max_results: i64, original_start: &str, page_token: &str, show_deleted: bool, time_max: &str, time_min: &str, time_zone: &str, ) -> Result<Vec<crate::types::Event>> { let mut query_args: Vec<(String, String)> = Default::default(); if max_attendees > 0 { query_args.push(("maxAttendees".to_string(), max_attendees.to_string())); } if max_results > 0 { query_args.push(("maxResults".to_string(), max_results.to_string())); } if !original_start.is_empty() { query_args.push(("originalStart".to_string(), original_start.to_string())); } if !page_token.is_empty() { query_args.push(("pageToken".to_string(), page_token.to_string())); } if show_deleted { query_args.push(("showDeleted".to_string(), show_deleted.to_string())); } if !time_max.is_empty() { query_args.push(("timeMax".to_string(), time_max.to_string())); } if !time_min.is_empty() { query_args.push(("timeMin".to_string(), time_min.to_string())); } if !time_zone.is_empty() { query_args.push(("timeZone".to_string(), time_zone.to_string())); } let query_ = serde_urlencoded::to_string(&query_args).unwrap(); let url = format!( "/calendars/{}/events/{}/instances?{}", crate::progenitor_support::encode_path(&calendar_id.to_string()), crate::progenitor_support::encode_path(&event_id.to_string()), query_ ); let resp: crate::types::Events = self.client.get(&url, None).await?; // Return our response data. Ok(resp.items) } /** * This function performs a `GET` to the `/calendars/{calendarId}/events/{eventId}/instances` endpoint. * * As opposed to `instances`, this function returns all the pages of the request at once. * * Returns instances of the specified recurring event. */ pub async fn get_all_instances( &self, calendar_id: &str, event_id: &str, max_attendees: i64, original_start: &str, show_deleted: bool, time_max: &str, time_min: &str, time_zone: &str, ) -> Result<Vec<crate::types::Event>> { let mut query_args: Vec<(String, String)> = Default::default(); if max_attendees > 0 { query_args.push(("maxAttendees".to_string(), max_attendees.to_string())); } if !original_start.is_empty() { query_args.push(("originalStart".to_string(), original_start.to_string())); } if show_deleted { query_args.push(("showDeleted".to_string(), show_deleted.to_string())); } if !time_max.is_empty() { query_args.push(("timeMax".to_string(), time_max.to_string())); } if !time_min.is_empty() { query_args.push(("timeMin".to_string(), time_min.to_string())); } if !time_zone.is_empty() { query_args.push(("timeZone".to_string(), time_zone.to_string())); } let query_ = serde_urlencoded::to_string(&query_args).unwrap(); let url = format!( "/calendars/{}/events/{}/instances?{}", crate::progenitor_support::encode_path(&calendar_id.to_string()), crate::progenitor_support::encode_path(&event_id.to_string()), query_ ); let mut resp: crate::types::Events = self.client.get(&url, None).await?; let mut items = resp.items; let mut page = resp.next_page_token; // Paginate if we should. while !page.is_empty() { if !url.contains('?') { resp = self .client .get(&format!("{}?pageToken={}", url, page), None) .await?; } else { resp = self .client .get(&format!("{}&pageToken={}", url, page), None) .await?; } items.append(&mut resp.items); if !resp.next_page_token.is_empty() && resp.next_page_token != page { page = resp.next_page_token.to_string(); } else { page = "".to_string(); } } // Return our response data. Ok(items) } /** * This function performs a `POST` to the `/calendars/{calendarId}/events/{eventId}/move` endpoint. * * Moves an event to another calendar, i.e. changes an event's organizer. * * **Parameters:** * * * `calendar_id: &str` -- Calendar identifier of the source calendar where the event currently is on. * * `event_id: &str` -- ETag of the collection. * * `destination: &str` -- Calendar identifier of the target calendar where the event is to be moved to. * * `send_notifications: bool` -- Deprecated. Please use sendUpdates instead. * * Whether to send notifications about the change of the event's organizer. Note that some emails might still be sent even if you set the value to false. The default is false. * * `send_updates: crate::types::SendUpdates` -- Whether to send notifications about the creation of the new event. Note that some emails might still be sent. The default is false. */ pub async fn mv( &self, calendar_id: &str, event_id: &str, destination: &str, send_notifications: bool, send_updates: crate::types::SendUpdates, ) -> Result<crate::types::Event> { let mut query_args: Vec<(String, String)> = Default::default(); if !destination.is_empty() { query_args.push(("destination".to_string(), destination.to_string())); } if send_notifications { query_args.push(( "sendNotifications".to_string(), send_notifications.to_string(), )); } if !send_updates.to_string().is_empty() { query_args.push(("sendUpdates".to_string(), send_updates.to_string())); } let query_ = serde_urlencoded::to_string(&query_args).unwrap(); let url = format!( "/calendars/{}/events/{}/move?{}", crate::progenitor_support::encode_path(&calendar_id.to_string()), crate::progenitor_support::encode_path(&event_id.to_string()), query_ ); self.client.post(&url, None).await } }