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
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
//!
//! Code contained in the library is based on the oauth2-rs example for Microsoft Graph.
//! Link to example: https://github.com/ramosbugs/oauth2-rs/blob/main/examples/msgraph.rs
//!

use oauth2::basic::BasicClient;
use oauth2::{
    AuthType, AuthUrl, AuthorizationCode, ClientId, ClientSecret, CsrfToken, PkceCodeChallenge,
    RedirectUrl, Scope, TokenResponse, TokenUrl,
};

use reqwest::blocking;

use serde::{Deserialize, Serialize};

use bytes::Bytes;
use std::fmt::Debug;
use std::io::{BufRead, BufReader, Write};
use std::net::TcpListener;
use std::str::FromStr;
use url::Url;

use log::{debug, error};

// Constants
pub const GENERATE_MS_OAUTH2_CREDENTIALS_INSTRUCTIONS: &str = r#"
    Showcases the Microsoft Graph OAuth2 process for requesting access to Microsoft services using PKCE.
    Before running it, you'll need to generate your own Microsoft OAuth2 credentials. See
    https://docs.microsoft.com/azure/active-directory/develop/quickstart-register-app
    * Register a `Web` application with:
        - A `Redirect URI` of `http://localhost:<REDIRECT_PORT><REDIRECT_ENDPOINT>`
            - <REDIRECT_PORT> defaults to `8080`
            - <REDIRECT_ENDPOINT> defaults to `/redirect`
        - The supported account type: Accounts in any organizational directory and personal Microsoft accounts
    * In the left menu select `Overview`. Copy the `Application (client) ID` as the MSGRAPH_CLIENT_ID.
    * In the left menu select `Certificates & secrets` and add a new client secret. Copy the secret value
      as MSGRAPH_CLIENT_SECRET.
    * In the left menu select `API permissions` and add a permission. Select Microsoft Graph and
      `Delegated permissions`. Add the `Files.Read` permission (and other permissions as necessary).
"#;
pub const API_BASE_URL: &str = "https://graph.microsoft.com/v1.0/";
const AUTH_URL: &str = "https://login.microsoftonline.com/common/oauth2/v2.0/authorize";
const TOKEN_URL: &str = "https://login.microsoftonline.com/common/oauth2/v2.0/token";
const DEFAULT_BIND_PORT: u16 = 8080;
const DEFAULT_REDIRECT_ENDPOINT: &str = "/redirect";

// Structs and Traits
/// Custom Token Struct
pub struct Token {
    access_token: String,
}
impl Token {
    /// Returns a clone of the `access_token` attribute.
    pub fn access_token(&self) -> String {
        self.access_token.clone()
    }
}

/// Token Error Struct
#[derive(Debug, PartialEq, Eq)]
pub struct TokenError(String);

/// Trait for obtaining a token
pub trait TokenObtainer {
    /// Gets the Token
    fn get_token(&self) -> Result<Token, TokenError>;
}

/// Struct that implements TokenObtainer to get a token from Microsoft Graph
pub struct GraphTokenObtainer {
    /// The application ID (client ID) assigned by Microsoft's Azure app registration portal.
    pub client_id: String,
    /// A client secret (application password), a certificate, or a federated identity credential.
    pub client_secret: String,
    /// A vector of permissions that the application requires. See here: https://learn.microsoft.com/en-us/azure/active-directory/develop/permissions-consent-overview?WT.mc_id=Portal-Microsoft_AAD_RegisteredApps
    pub access_scopes: Vec<String>,
    /// If true, automatically opens the generated authorization URL.
    pub auto_open_auth_url: bool,
    /// Optional port to use for the local redirect server that gets started up.
    pub redirect_port: Option<u16>,
    /// Optional url path to use for handling incoming redirect requests (e.g. `/redirect`).
    pub redirect_endpoint: Option<String>,
}

impl TokenObtainer for GraphTokenObtainer {
    fn get_token(&self) -> Result<Token, TokenError> {
        let graph_client_id = ClientId::new(self.client_id.clone());
        let graph_client_secret = ClientSecret::new(self.client_secret.clone());
        let auth_url =
            AuthUrl::new(AUTH_URL.to_string()).expect("Invalid authorization endpoint URL");
        let token_url = TokenUrl::new(TOKEN_URL.to_string()).expect("Invalid token endpoint URL");

        // Redirect URL
        let redirect_port = match &self.redirect_port {
            Some(port) => *port,
            None => DEFAULT_BIND_PORT,
        };
        let redirect_endpoint = match &self.redirect_endpoint {
            Some(endpoint) => endpoint.clone(),
            None => DEFAULT_REDIRECT_ENDPOINT.to_string(),
        };
        let redirect_url = format!(
            "http://{}:{}{}",
            "localhost", redirect_port, redirect_endpoint
        );
        log::debug!("redirect_url={:?}", redirect_url);

        // Set up the config for the Microsoft Graph OAuth2 process.
        let client = BasicClient::new(
            graph_client_id,
            Some(graph_client_secret),
            auth_url,
            Some(token_url),
        )
        // Microsoft Graph requires client_id and client_secret in URL rather than
        // using Basic authentication.
        .set_auth_type(AuthType::RequestBody)
        .set_redirect_uri(RedirectUrl::new(redirect_url).expect("Invalid redirect URL"));

        // Microsoft Graph supports Proof Key for Code Exchange (PKCE - https://oauth.net/2/pkce/).
        // Create a PKCE code verifier and SHA-256 encode it as a code challenge.
        let (pkce_code_challenge, pkce_code_verifier) = PkceCodeChallenge::new_random_sha256();

        // Generate the authorization URL to which we'll redirect the user.
        let mut auth_request = client.authorize_url(CsrfToken::new_random);
        for scope_string in self.access_scopes.iter() {
            auth_request = auth_request.add_scope(Scope::new(scope_string.to_string()));
        }
        let (authorize_url, csrf_state) =
            auth_request.set_pkce_challenge(pkce_code_challenge).url();

        if self.auto_open_auth_url {
            println!("Opening the following URL:\n{}\n", authorize_url);
            open::that(authorize_url.to_string()).unwrap();
        } else {
            println!("Open this URL in your browser:\n{}\n", authorize_url);
        }

        // A very naive implementation of the redirect server.
        let listener = TcpListener::bind(format!("{}:{}", "127.0.0.1", redirect_port)).unwrap();
        if let Some(mut stream) = listener.incoming().flatten().next() {
            let code;
            let state;
            {
                let mut reader = BufReader::new(&stream);

                let mut request_line = String::new();
                reader.read_line(&mut request_line).unwrap();

                let redirect_endpoint = request_line.split_whitespace().nth(1).unwrap();
                let url =
                    Url::parse(&("http://localhost".to_string() + redirect_endpoint)).unwrap();

                let code_pair = url
                    .query_pairs()
                    .find(|pair| {
                        let (key, _) = pair;
                        key == "code"
                    })
                    .unwrap();

                let (_, value) = code_pair;
                code = AuthorizationCode::new(value.into_owned());

                let state_pair = url
                    .query_pairs()
                    .find(|pair| {
                        let (key, _) = pair;
                        key == "state"
                    })
                    .unwrap();

                let (_, value) = state_pair;
                state = CsrfToken::new(value.into_owned());
            }

            let message = "Go back to your terminal :)";
            let response = format!(
                "HTTP/1.1 200 OK\r\ncontent-length: {}\r\n\r\n{}",
                message.len(),
                message
            );
            stream.write_all(response.as_bytes()).unwrap();

            log::debug!("MS Graph returned the following code:\n{}\n", code.secret());
            log::debug!(
                "MS Graph returned the following state:\n{} (expected `{}`)\n",
                state.secret(),
                csrf_state.secret()
            );

            // Exchange the code with a token.
            let token = client
                .exchange_code(code)
                // Send the PKCE code verifier in the token request
                .set_pkce_verifier(pkce_code_verifier)
                .request(oauth2::reqwest::http_client);

            log::debug!("MS Graph returned the following token:\n{:?}\n", token);

            // The server will terminate itself after collecting the first code.
            return match token {
                Ok(token_resp) => Ok(Token {
                    access_token: token_resp.access_token().secret().to_string(),
                }),
                Err(_err) => Err(TokenError("Failed to obtain token ".to_string())),
            };
        }
        Err(TokenError("Failed to obtain token".to_string()))
    }
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Represents an identity of an *actor*.
/// For example, an actor can be a user, device or application.
pub struct Identity {
    /// The identity's display name.
    pub display_name: Option<String>,
    /// Unique identifier for the identity.
    pub id: Option<String>,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// A keyed collection of Identity resources.
/// It is used to represent a set of identities associated with various events for an item, such as
/// *created by* or *last modified by*.
pub struct IdentitySet {
    /// Optional. The application associated with this action.
    pub application: Option<Identity>,
    /// Optional. The device associated with this action.
    pub device: Option<Identity>,
    /// Optional. The group associated with this action.
    pub group: Option<Identity>,
    /// Optional. The user associated with this action.
    pub user: Option<Identity>,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Struct that groups the various identifiers for an item stored in a SharePoint site or OneDrive for Business.
pub struct SharePointIds {
    /// The unique identifier (guid) for the item's list in SharePoint.
    pub list_id: String,
    /// An integer identifier for the item within the containing list.
    pub list_item_id: String,
    /// The unique identifier (guid) for the item within OneDrive for Business or a SharePoint site.
    pub list_item_unique_id: String,
    /// The unique identifier (guid) for the item's site collection (SPSite).
    pub site_id: String,
    /// The SharePoint URL for the site that contains the item.
    pub site_url: String,
    /// The unique identifier (guid) for the tenancy.
    pub tenant_id: String,
    /// The unique identifier (guid) for the item's site (SPWeb).
    pub web_id: String,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Provides information necessary to address a DriveItem via the API.
pub struct ItemReference {
    /// Identifier of the drive instance that contains the item.
    pub drive_id: String,
    /// Identifies the type of drive. See drive resource for values.
    pub drive_type: String,
    /// Identifier of the item in the drive.
    pub id: String,
    /// Identifier of the list.
    pub list_id: Option<String>,
    /// The name of the item being referenced.
    pub name: Option<String>,
    /// Path that can be used to navigate to the item.
    pub path: String,
    /// Identifier for a shared resource that can be accessed via the Shares API.
    pub share_id: Option<String>,
    /// Identifiers useful for SharePoint REST compatibility.
    pub sharepoint_ids: Option<SharePointIds>,
    /// Identifier of the site.
    pub site_id: Option<String>,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// An abstract resource that contains a common set of properties shared among several other resource types.
pub struct BaseItem {
    /// The unique identifier of the drive.
    pub id: String,
    /// Identity of the user, device, or application which created the item.
    pub created_by: IdentitySet,
    /// Date and time of item creation (ISO 8601 UTC).
    pub created_date_time: String,
    /// Provides a user-visible description of the item.
    pub description: String,
    /// ETag for the item.
    pub e_tag: String,
    /// Identity of the user, device, and application which last modified the item.
    pub last_modified_by: IdentitySet,
    /// Date and time the item was last modified.
    pub last_modified_date_time: String,
    /// The name of the item.
    pub name: String,
    /// Parent information, if the item has a parent.
    pub parent_reference: ItemReference,
    /// URL that displays the resource in the browser.
    pub web_url: String,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Struct that groups audio related properties on an item.
pub struct Audio {
    /// The title of the album for this audio file.
    pub album: String,
    /// The artist named on the album for the audio file.
    pub album_artist: String,
    /// The performing artist for the audio file.
    pub artist: String,
    /// Bitrate expressed in kbps.
    pub bitrate: i64,
    /// The name of the composer of the audio file.
    pub composers: String,
    /// Copyright information for the audio file.
    pub copyright: String,
    /// The number of the disc this audio file came from.
    pub disc: i16,
    /// The total number of discs in this album.
    pub disc_count: i16,
    /// Duration of the audio file, expressed in milliseconds
    pub duration: i64,
    /// The genre of this audio file.
    pub genre: String,
    /// Indicates if the file is protected with digital rights management.
    pub has_drm: bool,
    /// Indicates if the file is encoded with a variable bitrate.
    pub is_variable_bitrate: bool,
    /// The title of the audio file.
    pub title: String,
    /// The number of the track on the original disc for this audio file.
    pub track: i32,
    /// The total number of tracks on the original disc for this audio file.
    pub track_count: i32,
    /// The year the audio file was recorded.
    pub year: i32,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Struct that indicates that the item has been deleted.
pub struct Deleted {
    /// Represents the state of the deleted item.
    pub state: String,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Struct that groups available hashes into a single structure for an item.
pub struct Hashes {
    /// (Hex string). SHA1 hash for the contents of the file (if available).
    pub sha1_hash: Option<String>,
    /// (Hex string). The CRC32 value of the file in little endian (if available).
    pub crc32_hash: Option<String>,
    /// (Base64 string). A proprietary hash of the file that can be used to determine if the contents of the file have changed (if available).
    pub quick_xor_hash: Option<String>,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Struct that groups file-related data items.
pub struct File {
    /// Hashes of the file's binary content, if available.
    pub hashes: Hashes,
    /// The MIME type for the file.
    /// This is determined by logic on the server and might not be the value provided when the file was uploaded.
    pub mime_type: String,
    /// Flag indicating if the item is still being processed to extract metadata
    pub processing_metadata: Option<bool>,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Struct that contains properties that are reported by the device's local file system for the local version of the item.
pub struct FileSystemInfo {
    /// The UTC date and time the file was created on a client.
    pub created_date_time: String,
    /// The UTC date and time the file was last accessed. Available for the recent file list only.
    pub last_accessed_date_time: Option<String>,
    /// The UTC date and time the file was last modified on a client.
    pub last_modified_date_time: String,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Struct that provides or sets recommendations on the user-experience of a folder.
pub struct FolderView {
    /// The method by which the folder should be sorted.
    pub sort_by: String,
    /// If true, indicates that items should be sorted in descending order. Otherwise, items should be sorted ascending.
    pub sort_order: String,
    /// The type of view that should be used to represent the folder.
    pub view_type: String,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Struct that groups folder-related data on an item.
pub struct Folder {
    /// Number of children contained immediately within this container.
    pub child_count: i32,
    /// A collection of properties defining the recommended view for the folder.
    pub view: FolderView,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Struct that groups image-related properties.
pub struct Image {
    /// Optional. Height of the image, in pixels.
    pub height: Option<i32>,
    /// Optional. Width of the image, in pixels.
    pub width: Option<i32>,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Struct that provides geographic coordinates and elevation of a location based on metadata contained within the file.
pub struct GeoCoordinates {
    /// Optional. The altitude (height), in feet, above sea level for the item.
    pub altitude: Option<f64>,
    /// Optional. The latitude, in decimal, for the item.
    pub latitude: Option<f64>,
    /// Optional. The longitude, in decimal, for the item.
    pub longitude: Option<f64>,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Struct that indicates the presence of malware.
/// The presence (non-null) of the resource indicates that item contains malware.
/// A null (or missing) value indicates that the item is clean.
///
/// **Note:** The resource is currently empty based on the API spec.
pub struct Malware {}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Indicates that a DriveItem is the top level item in a "package" or a collection of items that should be treated as a
/// collection instead of individual items.
pub struct Package {
    /// A string indicating the type of package.
    pub package_type: String,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Struct that provides photo and camera properties, for example, EXIF metadata, on a DriveItem.
pub struct Photo {
    /// Represents the date and time the photo was taken.
    pub taken_date_time: Option<String>,
    /// Camera manufacturer.
    pub camera_make: Option<String>,
    /// Camera model.
    pub camera_model: Option<String>,
    /// The F-stop value from the camera.
    pub f_number: Option<f64>,
    /// The denominator for the exposure time fraction from the camera.
    pub exposure_denominator: Option<f64>,
    /// The numerator for the exposure time fraction from the camera.
    pub exposure_numerator: Option<f64>,
    /// The focal length from the camera.
    pub focal_length: Option<f64>,
    /// The ISO value from the camera.
    pub iso: Option<i32>,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Struct that provides details on the published status of a DriveItem version or DriveItem resource.
pub struct PublicationFacet {
    /// The state of publication for this document. Either published or checkout.
    pub level: String,
    /// The unique identifier for the version that is visible to the current caller.
    pub version_id: String,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Struct that indicates a DriveItem has been shared with others.
/// The resource includes information about how the item is shared.
pub struct Shared {
    /// The identity of the owner of the shared item.
    pub owner: Option<IdentitySet>,
    /// Indicates the scope of how the item is shared: anonymous, organization, or users.
    pub scope: Option<String>,
    /// The identity of the user who shared the item.
    pub shared_by: Option<IdentitySet>,
    /// The UTC date and time when the item was shared.
    pub shared_date_time: Option<String>,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Struct that groups special folder-related data items into a single structure.
pub struct SpecialFolder {
    /// The unique identifier for this item in the /drive/special collection
    pub name: String,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Struct that indicates that a DriveItem references an item that exists in another drive.
/// This resource provides the unique IDs of the source drive and target item.
pub struct RemoteItem {
    /// The unique identifier of the drive.
    pub id: String,
    /// Identity of the user, device, or application which created the remote item.
    pub created_by: IdentitySet,
    /// Date and time of remote item creation (ISO 8601 UTC).
    pub created_date_time: String,
    /// File metadata, if the remote item is a file.
    pub file: Option<File>,
    /// File system information on client.
    pub file_system_info: Option<FileSystemInfo>,
    /// Folder metadata, if the remote item is a folder.
    pub folder: Option<Folder>,
    /// Identity of the user, device, and application which last modified the remote item.
    pub last_modified_by: IdentitySet,
    /// Date and time the remote item was last modified.
    pub last_modified_date_time: String,
    /// The name of the remote item.
    pub name: String,
    /// If present, indicates that this remote item is a package instead of a folder or file.
    /// Packages are treated like files in some contexts and folders in others.
    pub package: Option<Package>,
    /// Parent information, if the remote item has a parent.
    pub parent_reference: ItemReference,
    /// Indicates that the remote item has been shared with others and provides information about the shared state of the remote item.
    pub shared: Option<Shared>,
    /// Identifiers useful for SharePoint REST compatibility.
    pub sharepoint_ids: SharePointIds,
    /// Size of the remote item in bytes.
    pub size: i64,
    /// If the current remote item is also available as a special folder, this facet is returned.
    pub special_folder: Option<SpecialFolder>,
    /// WebDAV compatible URL for the remote item.
    pub web_dav_url: Option<String>,
    /// URL that displays the resource in the browser.
    pub web_url: String,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Struct that indicates that an object is the top-most one in its hierarchy.
/// The presence (non-null) of the facet value indicates that the object is the root.
/// A null (or missing) value indicates the object is not the root.
pub struct Root {}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Struct that indicates than an item is the response to a search query.
pub struct SearchResult {
    /// A callback URL that can be used to record telemetry information.
    /// The application should issue a GET on this URL if the user interacts with this item to improve the quality of results.
    pub on_click_telemetry_url: String,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Struct that groups video-related data items into a single structure.
pub struct Video {
    /// Number of audio bits per sample.
    pub audio_bits_per_sample: i32,
    /// Number of audio channels.
    pub audio_channels: i32,
    /// Name of the audio format (AAC, MP3, etc.).
    pub audio_format: String,
    /// Number of audio samples per second.
    pub audio_samples_per_second: i32,
    /// Bit rate of the video in bits per second.
    pub bitrate: i32,
    /// Duration of the file in milliseconds.
    pub duration: i64,
    /// Four character code" name of the video format.
    pub four_cc: Option<String>,
    /// Frame rate of the video.
    pub frame_rate: f64,
    /// Height of the video, in pixels.
    pub height: i32,
    /// Width of the video, in pixels.
    pub width: i32,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Represents a file, folder, or other item stored in a drive, in OneDrive.
///
/// **Note**: This struct is partially implemented.
///
/// Missing the following properties:
/// - content
pub struct DriveItem {
    /// The unique identifier of the drive.
    pub id: String,
    /// Identity of the user, device, or application which created the item.
    pub created_by: IdentitySet,
    /// Date and time of item creation (ISO 8601 UTC).
    pub created_date_time: String,
    /// Provides a user-visible description of the item.
    pub description: Option<String>,
    /// ETag for the item.
    pub e_tag: String,
    /// Identity of the user, device, and application which last modified the item.
    pub last_modified_by: IdentitySet,
    /// Date and time the item was last modified.
    pub last_modified_date_time: String,
    /// The name of the item.
    pub name: String,
    /// Parent information, if the item has a parent.
    pub parent_reference: ItemReference,
    /// URL that displays the resource in the browser.
    pub web_url: String,
    /// Audio metadata, if the item is an audio file.
    pub audio: Option<Audio>,
    /// An eTag for the content of the item.
    /// This eTag is not changed if only the metadata is changed.
    /// **Note** This property is not returned if the item is a folder.
    pub c_tag: String,
    /// Information about the deleted state of the item.
    pub deleted: Option<Deleted>,
    /// File metadata, if the item is a file.
    pub file: Option<File>,
    /// File system information on client.
    pub file_system_info: Option<FileSystemInfo>,
    /// Folder metadata, if the item is a folder.
    pub folder: Option<Folder>,
    /// Image metadata, if the item is an image.
    pub image: Option<Image>,
    /// Location metadata, if the item has location data.
    pub location: Option<GeoCoordinates>,
    /// Malware metadata, if the item was detected to contain malware.
    pub malware: Option<Malware>,
    /// If present, indicates that this item is a package instead of a folder or file.
    /// Packages are treated like files in some contexts and folders in others.
    pub package: Option<Package>,
    /// Photo metadata, if the item is a photo.
    pub photo: Option<Photo>,
    /// Provides information about the published or checked-out state of an item, in locations that support such actions.
    /// This property is not returned by default.
    pub publication: Option<PublicationFacet>,
    /// Remote item data, if the item is shared from a drive other than the one being accessed.
    pub remote_item: Option<RemoteItem>,
    /// If this property is non-null, it indicates that the driveItem is the top-most driveItem in the drive.
    pub root: Option<Root>,
    /// Search metadata, if the item is from a search result.
    pub search_result: Option<SearchResult>,
    /// Indicates that the item has been shared with others and provides information about the shared state of the item.
    pub shared: Option<Shared>,
    /// Size of the item in bytes.
    pub size: i64,
    /// If the current item is also available as a special folder, this facet is returned.
    pub special_folder: Option<SpecialFolder>,
    /// Video metadata, if the item is a video.
    pub video: Option<Video>,
    /// WebDAV compatible URL for the item.
    pub web_dav_url: Option<String>,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Represents an error response returned by the OneDrive API
pub struct OneDriveApiErrorResponse {
    /// Contains one of 15 possible values. Your apps must be prepared to handle any one of these errors.
    /// * **accessDenied**            The caller doesn't have permission to perform the action.
    /// * **activityLimitReached**    The app or user has been throttled.
    /// * **generalException**        An unspecified error has occurred.
    /// * **invalidRange**            The specified byte range is invalid or unavailable.
    /// * **invalidRequest**          The request is malformed or incorrect.
    /// * **itemNotFound**            The resource could not be found.
    /// * **malwareDetected**         Malware was detected in the requested resource.
    /// * **nameAlreadyExists**       The specified item name already exists.
    /// * **notAllowed**              The action is not allowed by the system.
    /// * **notSupported**            The request is not supported by the system.
    /// * **resourceModified**        The resource being updated has changed since the caller last read it, usually an eTag mismatch.
    /// * **resyncRequired**          The delta token is no longer valid, and the app must reset the sync state.
    /// * **serviceNotAvailable**     The service is not available. Try the request again after a delay. There may be a Retry-After header.
    /// * **quotaLimitReached**       The user has reached their quota limit.
    /// * **unauthenticated**         The caller is not authenticated.
    pub code: String,
    /// The description of the error
    pub message: String,
    #[serde(rename = "innererror")]
    /// A string representing a JSON object that may recursively contain more `innererror` objects
    /// with additional, more specific error codes.\
    pub inner_error: String,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Represents an error response
pub struct ErrorResponse {
    /// The OneDrive error
    pub error: OneDriveApiErrorResponse,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Represents a collection of DriveItems.
pub struct DriveItemCollection {
    /// The collection of DriveItems.
    pub value: Vec<DriveItem>,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Represents a collection of DriveItems.
pub struct Link {
    #[serde(rename = "type")]
    /// Type of the DriveItem
    pub the_type: Option<String>,
    /// Scope of the DriveItem
    pub scope: Option<String>,
    /// Web URL of the DriveItem
    pub web_url: Option<String>,
    /// HTML code for an `<iframe>` to host the content
    pub web_html: Option<String>,
    /// Application identity of the DriveItem
    pub application: Option<Identity>,
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// Represents a collection of DriveItems.
pub struct ShareableLink {
    /// The ID of the DriveItem
    pub id: String,
    /// The roles of the DriveItem
    pub roles: Vec<String>,
    /// The link of the DriveItem
    pub link: Link,
}

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
#[serde(rename_all = "lowercase")]
/// All the possible sharing link types that are supported
pub enum SharingLinkType {
    /// Creates a read-only link to the DriveItem.
    View,
    /// Creates a read-write link to the DriveItem.
    Edit,
    /// Creates an embeddable link to the DriveItem. This option is only available for files in OneDrive personal.
    Embed,
}

impl FromStr for SharingLinkType {
    type Err = ();
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        match String::from(s).to_lowercase().as_str() {
            "view" => Ok(SharingLinkType::View),
            "edit" => Ok(SharingLinkType::Edit),
            "embed" => Ok(SharingLinkType::Embed),
            _ => Err(()),
        }
    }
}

#[derive(Serialize, Deserialize, Debug, PartialEq)]
#[serde(rename_all = "lowercase")]
/// All the possible sharing link scopes that are supported
pub enum SharingLinkScope {
    Anonymous,
    Organization,
}

impl FromStr for SharingLinkScope {
    type Err = ();
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        match String::from(s).to_lowercase().as_str() {
            "anonymous" => Ok(SharingLinkScope::Anonymous),
            "organization" => Ok(SharingLinkScope::Organization),
            _ => Err(()),
        }
    }
}

#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
/// The request defines properties of the sharing link your application is requesting
pub struct CreateLinkRequest {
    #[serde(rename = "type")]
    /// The type of sharing link to create. Either view, edit, or embed.
    pub the_type: SharingLinkType,
    /// <Optional> The scope of link to create. Either anonymous or organization.
    pub scope: Option<SharingLinkScope>,
}

/// OneDrive Error Struct
#[derive(Debug, PartialEq, Eq)]
pub struct OneDriveError(String);

/// Trait that describe OneDrive related operations that can be performed.
///
/// Different implementations are possible that uses different args.
///
/// For example, one implementation might use`arg` to represent the **ID** of the DriveItem
/// whilst another might use `arg` to represent the **path** to the DriveItem.
pub trait OneDriver {
    /// The type of the argument to be used
    type ArgType;

    /// Gets the DriveItems from a path based on the provided argument
    fn get_drive_item(&self, arg: Self::ArgType) -> Result<DriveItem, OneDriveError>;
    /// Gets the children of a DriveItem
    fn get_drive_item_children(
        &self,
        arg: Self::ArgType,
    ) -> Result<DriveItemCollection, OneDriveError>;
    /// Creates the sharing links from DriveItems based on the provided argument
    fn create_sharing_links(
        &self,
        arg: Self::ArgType,
        request: CreateLinkRequest,
    ) -> Result<Vec<ShareableLink>, OneDriveError>;
    /// Processes error response message
    fn process_error_response_message(&self, msg: &str) -> OneDriveError;
}

/// Simple HTTP Response Struct
pub struct HttpResponse {
    /// The status of the HTTP response
    pub status: String,
    /// The status code of the HTTP response
    pub status_code: u16,
    /// The response body of the HTTP response
    pub body: Bytes,
}

/// HTTP Error Struct
#[derive(Debug, PartialEq, Eq)]
pub struct HttpError(String);

/// Trait that describes HTTP related operations that can be performed
pub trait Httper {
    /// Performs a HTTP GET request
    fn get(&self, url: String, headers: Vec<(String, String)>) -> Result<HttpResponse, HttpError>;
    /// Performs a HTTP POST request
    fn post(
        &self,
        url: String,
        body: String,
        headers: Vec<(String, String)>,
    ) -> Result<HttpResponse, HttpError>;
}

/// Struct that implements Httper
pub struct HttpClient {
    pub client: blocking::Client,
}

impl Httper for HttpClient {
    fn get(&self, url: String, headers: Vec<(String, String)>) -> Result<HttpResponse, HttpError> {
        let mut request = self.client.get(url.clone());
        for header in headers.iter() {
            request = request.header(header.0.clone(), header.1.clone());
        }
        let response = match request.send() {
            Ok(resp) => resp,
            Err(err) => {
                return Err(HttpError(format!(
                    "Failed to perform GET request at {} - {}",
                    url, err
                )));
            }
        };
        let status = response.status();
        let bytes = match response.bytes() {
            Ok(b) => b,
            Err(err) => {
                return Err(HttpError(format!("Failed to read body - {}", err)));
            }
        };
        Ok(HttpResponse {
            status: String::from(status.as_str()),
            status_code: status.as_u16(),
            body: bytes,
        })
    }
    fn post(
        &self,
        url: String,
        body: String,
        headers: Vec<(String, String)>,
    ) -> Result<HttpResponse, HttpError> {
        let mut request = self.client.post(url).body(body);
        for header in headers.iter() {
            request = request.header(header.0.clone(), header.1.clone());
        }
        let response = match request.send() {
            Ok(resp) => resp,
            Err(err) => {
                return Err(HttpError(format!(
                    "Failed to perform GET request at {} - {}",
                    AUTH_URL, err
                )));
            }
        };
        let status = response.status();
        let bytes = match response.bytes() {
            Ok(b) => b,
            Err(err) => {
                return Err(HttpError(format!("Failed to read body - {}", err)));
            }
        };
        Ok(HttpResponse {
            status: String::from(status.as_str()),
            status_code: status.as_u16(),
            body: bytes,
        })
    }
}

/// Struct that provides a client that is able to perform OneDrive related operations
/// by using the path of the DriveItem
pub struct OneDriveClient {
    /// (**UNUSED**) The ID of the drive resource representing the user's OneDrive
    pub drive_id: Option<String>,
    /// (**UNUSED**) The ID of the SharePoint site
    pub site_id: Option<String>,
    /// (**UNUSED**) The ID of the group that is used to manage resources
    pub group_id: Option<String>,
    /// The access token that is required to make HTTP requests to the OneDrive API
    pub access_token: String,
    /// The HTTP handler
    pub http_handler: Box<dyn Httper>,
}

impl OneDriver for OneDriveClient {
    type ArgType = String;

    /// Processes error response message
    fn process_error_response_message(&self, msg: &str) -> OneDriveError {
        match serde_json::from_str::<ErrorResponse>(msg) {
            Ok(decoded_err) => OneDriveError(format!(
                "Received the following error message: {:#?}",
                decoded_err
            )),
            Err(err_from_decoding_err) => OneDriveError(format!(
                "Unable to decode message into struct - {}",
                err_from_decoding_err
            )),
        }
    }
    /// Gets the DriveItems from a path based on the provided path to the DriveItem
    fn get_drive_item(&self, item_path: String) -> Result<DriveItem, OneDriveError> {
        let url = format!("{}me/drive/root:/{}", API_BASE_URL, item_path);
        let headers = vec![(
            String::from("Authorization"),
            format!("Bearer {}", self.access_token),
        )];
        debug!(
            "Making GET request to the following URL: {} (with the following headers: {:?})",
            url, headers
        );
        let resp = match self.http_handler.get(url, headers) {
            Ok(resp) => resp,
            Err(err) => {
                return Err(OneDriveError(format!(
                    "Unable to get DriveItem from path=`{}` - {:?}",
                    item_path, err
                )));
            }
        };
        let body = match String::from_utf8(resp.body.to_vec()) {
            Ok(s) => s,
            Err(err) => {
                return Err(OneDriveError(format!(
                    "Unable to convert bytes to string - {}",
                    err
                )));
            }
        };
        debug!("Received response body: {}", body);
        match serde_json::from_str(body.as_str()) {
            Ok(drive_item) => Ok(drive_item),
            Err(err) => {
                error!("Unable to decode message into struct - {}", err);
                return Err(self.process_error_response_message(body.as_str()));
            }
        }
    }
    /// Gets the children of a DriveItem based on the provided path to the DriveItem
    fn get_drive_item_children(
        &self,
        item_path: String,
    ) -> Result<DriveItemCollection, OneDriveError> {
        // Getting DriveItem
        let drive_item = match self.get_drive_item(item_path.clone()) {
            Ok(res) => res,
            Err(err) => {
                return Err(OneDriveError(format!(
                    "Unable to obtain DriveItem - {:?}",
                    err
                )));
            }
        };

        // Getting children
        let children_url = format!("{}me/drive/items/{}/children", API_BASE_URL, drive_item.id);
        let headers = vec![(
            String::from("Authorization"),
            format!("Bearer {}", self.access_token),
        )];
        debug!(
            "Making GET request to the following URL: {} (with the following headers: {:?})",
            children_url, headers
        );
        let resp = match self.http_handler.get(children_url, headers) {
            Ok(resp) => resp,
            Err(err) => {
                return Err(OneDriveError(format!(
                    "Unable to get DriveItem from path=`{}` - {:?}",
                    item_path, err
                )));
            }
        };
        let body = match String::from_utf8(resp.body.to_vec()) {
            Ok(s) => s,
            Err(err) => {
                return Err(OneDriveError(format!(
                    "Unable to convert bytes to string - {}",
                    err
                )));
            }
        };
        debug!("Received response body: {}", body);

        match serde_json::from_str::<DriveItemCollection>(body.as_str()) {
            Ok(collection) => Ok(collection),
            Err(err) => {
                error!("Unable to decode message into struct - {}", err);
                return Err(self.process_error_response_message(body.as_str()));
            }
        }
    }
    /// Creates the sharing links from DriveItems based on the provided path to the DriveItem
    fn create_sharing_links(
        &self,
        item_path: String,
        request: CreateLinkRequest,
    ) -> Result<Vec<ShareableLink>, OneDriveError> {
        // Progress bar
        let pb: indicatif::ProgressBar;

        // Getting DriveItem
        let drive_item = match self.get_drive_item(item_path.clone()) {
            Ok(res) => res,
            Err(err) => {
                return Err(OneDriveError(format!(
                    "Unable to obtain DriveItem - {:?}",
                    err
                )));
            }
        };

        let collection: DriveItemCollection;
        if let Some(folder) = drive_item.folder {
            debug!(
                "DriveItem is a folder with {} children DriveItems - Getting DriveItem children",
                folder.child_count
            );
            // Getting children of DriveItem
            collection = match self.get_drive_item_children(item_path.clone()) {
                Ok(res) => res,
                Err(err) => {
                    return Err(OneDriveError(format!(
                        "Unable to obtain DriveItem - {:?}",
                        err
                    )));
                }
            };
            pb = indicatif::ProgressBar::new(folder.child_count.try_into().unwrap());
        } else {
            debug!("DriveItem is a single file - {:#?}", drive_item);
            collection = DriveItemCollection {
                value: vec![drive_item],
            };
            pb = indicatif::ProgressBar::new(1);
        }

        // Serialising request
        let serialised_request = match serde_json::to_string(&request) {
            Ok(serialised) => serialised,
            Err(err) => {
                return Err(OneDriveError(format!(
                    "Unable to serialise request - {:?}",
                    err
                )));
            }
        };

        // Getting shareable links
        let mut links = Vec::<ShareableLink>::new();
        for (i, child) in collection.value.iter().enumerate() {
            let create_link_url = format!(
                "{}me/drive/items/{}/createLink",
                API_BASE_URL,
                child.id.clone()
            );
            let headers = vec![
                (
                    String::from("Authorization"),
                    format!("Bearer {}", self.access_token),
                ),
                (
                    String::from("Content-type"),
                    String::from("application/json"),
                ),
            ];

            debug!(
                "Making POST request to URL={} with body={} (with the following  headers: {:?})",
                create_link_url,
                serialised_request.clone(),
                headers
            );
            let resp =
                match self
                    .http_handler
                    .post(create_link_url, serialised_request.clone(), headers)
                {
                    Ok(resp) => resp,
                    Err(err) => {
                        error!(
                            "Unable to get DriveItem from path=`{}` - {:?}",
                            item_path.clone(),
                            err
                        );
                        pb.inc(1);
                        continue;
                    }
                };
            let body = match String::from_utf8(resp.body.to_vec()) {
                Ok(s) => s,
                Err(err) => {
                    error!("Unable to convert bytes to string - {}", err);
                    pb.inc(1);
                    continue;
                }
            };
            debug!("Received response body: {}", body);

            match serde_json::from_str(body.as_str()) {
                Ok(shareable_link) => links.push(shareable_link),
                Err(err) => {
                    error!("Unable to decode message into struct - {}", err);
                    error!("{:?}", self.process_error_response_message(body.as_str()));
                }
            }
            let filename = child.name.clone();
            let parent_path = child.parent_reference.path.clone();

            pb.inc(1);
            let progress = format!("{}/{}", parent_path, filename);
            pb.println(format!(
                "[+] finished creating sharing link for {} - {} link(s) finished ",
                progress, i
            ));
        }

        Ok(links)
    }
}