API Reference
Profile module for user profile management and operations.
This module provides functionality for: - User profile retrieval and updates - MFA (Multi-Factor Authentication) setup and management - Profile data export and import (ZIP archives) - Identity provider linking and management - Session management
Exports
- Services: ExportService, ImportService
- Exceptions: ProfileOperationError, ExportError, ProfileImportError, and related exception classes
ActivityLimitError
Bases: ProfileImportError
Raised when import contains too many activities.
Source code in backend/app/users/users_profile/exceptions.py
136 137 138 139 140 141 | |
DataCollectionError
Bases: ExportError
Raised when data collection from database fails.
Source code in backend/app/users/users_profile/exceptions.py
71 72 73 74 75 76 | |
DataIntegrityError
Bases: ProfileImportError
Raised when imported data has integrity issues.
Source code in backend/app/users/users_profile/exceptions.py
104 105 106 107 108 109 | |
DatabaseConnectionError
Bases: ExportError
Raised when database connection fails during export.
Source code in backend/app/users/users_profile/exceptions.py
39 40 41 42 43 44 | |
DiskSpaceError
Bases: ProfileImportError
Raised when insufficient disk space is available.
Source code in backend/app/users/users_profile/exceptions.py
120 121 122 123 124 125 | |
ExportError
Bases: ProfileOperationError
Base exception for export operations.
Source code in backend/app/users/users_profile/exceptions.py
22 23 24 25 26 27 | |
ExportService
Service for exporting user profile data to ZIP archive.
Attributes:
| Name | Type | Description |
|---|---|---|
user_id |
ID of user to export data for. |
|
db |
Database session. |
|
counts |
Dictionary tracking exported item counts. |
|
performance_config |
ExportPerformanceConfig
|
Performance configuration. |
Source code in backend/app/users/users_profile/export_service.py
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 | |
add_activity_files_to_zip
add_activity_files_to_zip(zipf, user_activities)
Add activity files to ZIP archive.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
zipf
|
ZipFile
|
ZipFile instance to write to. |
required |
user_activities
|
list[Any]
|
List of activity objects. |
required |
Raises:
| Type | Description |
|---|---|
FileSystemError
|
If file system error occurs. |
Source code in backend/app/users/users_profile/export_service.py
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 | |
add_activity_media_to_zip
add_activity_media_to_zip(zipf, user_activities)
Add activity media files to ZIP archive.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
zipf
|
ZipFile
|
ZipFile instance to write to. |
required |
user_activities
|
list[Any]
|
List of activity objects. |
required |
Raises:
| Type | Description |
|---|---|
FileSystemError
|
If file system error occurs. |
Source code in backend/app/users/users_profile/export_service.py
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 | |
add_user_images_to_zip
add_user_images_to_zip(zipf)
Add user image files to ZIP archive.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
zipf
|
ZipFile
|
ZipFile instance to write to. |
required |
Raises:
| Type | Description |
|---|---|
FileSystemError
|
If file system error occurs. |
Source code in backend/app/users/users_profile/export_service.py
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 | |
collect_gear_data
collect_gear_data(zipf)
Collect and write gear data to ZIP.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
zipf
|
ZipFile
|
ZipFile instance to write to. |
required |
Raises:
| Type | Description |
|---|---|
DatabaseConnectionError
|
If database error occurs. |
Source code in backend/app/users/users_profile/export_service.py
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 | |
collect_health_weight
collect_health_weight(zipf)
Collect and write health data to ZIP.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
zipf
|
ZipFile
|
ZipFile instance to write to. |
required |
Raises:
| Type | Description |
|---|---|
DatabaseConnectionError
|
If database error occurs. |
Source code in backend/app/users/users_profile/export_service.py
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 | |
collect_user_activities_data
collect_user_activities_data(zipf)
Collect and write user activities to ZIP.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
zipf
|
ZipFile
|
ZipFile instance to write to. |
required |
Returns:
| Type | Description |
|---|---|
list[Any]
|
List of collected activity objects. |
Raises:
| Type | Description |
|---|---|
DatabaseConnectionError
|
If database error occurs. |
MemoryAllocationError
|
If memory limit exceeded. |
DataCollectionError
|
If collection fails. |
Source code in backend/app/users/users_profile/export_service.py
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 | |
collect_user_settings_data
collect_user_settings_data(zipf)
Collect and write user settings to ZIP.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
zipf
|
ZipFile
|
ZipFile instance to write to. |
required |
Raises:
| Type | Description |
|---|---|
DatabaseConnectionError
|
If database error occurs. |
Source code in backend/app/users/users_profile/export_service.py
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 | |
generate_export_archive
generate_export_archive(user_dict, timeout_seconds=300)
Generate and stream export archive as bytes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
user_dict
|
dict[str, Any]
|
User data dictionary to export. |
required |
timeout_seconds
|
int | None
|
Optional timeout in seconds. |
300
|
Yields:
| Type | Description |
|---|---|
Generator[bytes]
|
Chunks of ZIP archive as bytes. |
Raises:
| Type | Description |
|---|---|
ExportTimeoutError
|
If operation times out. |
ZipCreationError
|
If ZIP creation fails. |
MemoryAllocationError
|
If memory limit exceeded. |
FileSystemError
|
If file system error occurs. |
Source code in backend/app/users/users_profile/export_service.py
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 | |
ExportTimeoutError
Bases: ExportError
Raised when export operation exceeds time limit.
Source code in backend/app/users/users_profile/exceptions.py
79 80 81 82 83 84 | |
FileFormatError
Bases: ProfileImportError
Raised when imported file format is invalid or corrupted.
Source code in backend/app/users/users_profile/exceptions.py
96 97 98 99 100 101 | |
FileSizeError
Bases: ProfileImportError
Raised when imported file exceeds size limits.
Source code in backend/app/users/users_profile/exceptions.py
128 129 130 131 132 133 | |
FileSystemError
Bases: ProfileOperationError
Raised when file system operations fail.
Source code in backend/app/users/users_profile/exceptions.py
47 48 49 50 51 52 | |
ImportService
Service for importing user profile data from ZIP archive.
Attributes:
| Name | Type | Description |
|---|---|---|
user_id |
ID of user to import data for. |
|
db |
Database session. |
|
websocket_manager |
WebSocket manager for updates. |
|
counts |
Dictionary tracking imported item counts. |
|
performance_config |
ImportPerformanceConfig
|
Performance configuration. |
Source code in backend/app/users/users_profile/import_service.py
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 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 | |
add_activity_files_from_zip
async
add_activity_files_from_zip(zipf, file_list, activities_id_mapping)
Extract and import activity files from ZIP.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
zipf
|
ZipFile
|
ZipFile instance to read from. |
required |
file_list
|
set
|
Set of file paths in ZIP. |
required |
activities_id_mapping
|
dict[int, int]
|
Mapping of old to new IDs. |
required |
Source code in backend/app/users/users_profile/import_service.py
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 | |
add_activity_media_from_zip
async
add_activity_media_from_zip(zipf, file_list, activities_id_mapping)
Extract and import activity media from ZIP.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
zipf
|
ZipFile
|
ZipFile instance to read from. |
required |
file_list
|
set
|
Set of file paths in ZIP. |
required |
activities_id_mapping
|
dict[int, int]
|
Mapping of old to new IDs. |
required |
Source code in backend/app/users/users_profile/import_service.py
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 1173 1174 1175 1176 1177 1178 1179 1180 | |
add_user_images_from_zip
async
add_user_images_from_zip(zipf, file_list)
Extract and import user images from ZIP.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
zipf
|
ZipFile
|
ZipFile instance to read from. |
required |
file_list
|
set
|
Set of file paths in ZIP. |
required |
Source code in backend/app/users/users_profile/import_service.py
1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 | |
collect_and_import_activities_data_batched
async
collect_and_import_activities_data_batched(zipf, file_list, gears_id_mapping, start_time, timeout_seconds)
Import activities in batches to manage memory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
zipf
|
ZipFile
|
ZipFile instance to read from. |
required |
file_list
|
set[str]
|
Set of file paths in ZIP. |
required |
gears_id_mapping
|
dict[int, int]
|
Mapping of old to new gear IDs. |
required |
start_time
|
float
|
Import operation start time. |
required |
timeout_seconds
|
int
|
Timeout limit in seconds. |
required |
Returns:
| Type | Description |
|---|---|
dict[int, int]
|
Dictionary mapping old activity IDs to new IDs. |
Raises:
| Type | Description |
|---|---|
ActivityLimitError
|
If too many activities. |
ImportTimeoutError
|
If operation times out. |
Source code in backend/app/users/users_profile/import_service.py
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 | |
collect_and_import_activity_components
async
collect_and_import_activity_components(activity_laps_data, activity_sets_data, activity_streams_data, activity_workout_steps_data, activity_media_data, activity_exercise_titles_data, original_activity_id, new_activity_id)
Import all components for a single activity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
activity_laps_data
|
list[Any]
|
Laps data for all activities. |
required |
activity_sets_data
|
list[Any]
|
Sets data for all activities. |
required |
activity_streams_data
|
list[Any]
|
Streams data. |
required |
activity_workout_steps_data
|
list[Any]
|
Workout steps data. |
required |
activity_media_data
|
list[Any]
|
Media data for all activities. |
required |
activity_exercise_titles_data
|
list[Any]
|
Exercise titles. |
required |
original_activity_id
|
int
|
Old activity ID. |
required |
new_activity_id
|
int
|
New activity ID. |
required |
Source code in backend/app/users/users_profile/import_service.py
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 | |
collect_and_import_gear_components_data
async
collect_and_import_gear_components_data(gear_components_data, gears_id_mapping)
Import gear components data with ID remapping.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
gear_components_data
|
list[Any]
|
List of component dicts. |
required |
gears_id_mapping
|
dict[int, int]
|
Mapping of old to new gear IDs. |
required |
Source code in backend/app/users/users_profile/import_service.py
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 | |
collect_and_import_gears_data
async
collect_and_import_gears_data(gears_data)
Import gear data and create ID mappings.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
gears_data
|
list[Any]
|
List of gear data dictionaries. |
required |
Returns:
| Type | Description |
|---|---|
dict[int, int]
|
Dictionary mapping old gear IDs to new IDs. |
Source code in backend/app/users/users_profile/import_service.py
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 | |
collect_and_import_health_weight
async
collect_and_import_health_weight(health_weight_data, health_targets_data)
Import health data and targets.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
health_weight_data
|
list[Any]
|
List of health data records. |
required |
health_targets_data
|
list[Any]
|
List of health target records. |
required |
Source code in backend/app/users/users_profile/import_service.py
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 | |
collect_and_import_user_data
async
collect_and_import_user_data(user_data, user_default_gear_data, user_goals_data, user_integrations_data, user_privacy_settings_data, gears_id_mapping)
Import user profile and related settings.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
user_data
|
list[Any]
|
User profile data. |
required |
user_default_gear_data
|
list[Any]
|
Default gear settings. |
required |
user_goals_data
|
list[Any]
|
User goals data. |
required |
user_integrations_data
|
list[Any]
|
Integration settings. |
required |
user_privacy_settings_data
|
list[Any]
|
Privacy settings. |
required |
gears_id_mapping
|
dict[int, int]
|
Mapping of old to new gear IDs. |
required |
Source code in backend/app/users/users_profile/import_service.py
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 | |
collect_and_import_user_default_gear
async
collect_and_import_user_default_gear(user_default_gear_data, gears_id_mapping)
Import user default gear settings with ID remapping.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
user_default_gear_data
|
list[Any]
|
Default gear data. |
required |
gears_id_mapping
|
dict[int, int]
|
Mapping of old to new gear IDs. |
required |
Source code in backend/app/users/users_profile/import_service.py
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 | |
collect_and_import_user_goals
async
collect_and_import_user_goals(user_goals_data)
Import user goals data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
user_goals_data
|
list[Any]
|
List of user goal dictionaries. |
required |
Source code in backend/app/users/users_profile/import_service.py
588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 | |
collect_and_import_user_integrations
async
collect_and_import_user_integrations(user_integrations_data)
Import user integration settings.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
user_integrations_data
|
list[Any]
|
Integration data. |
required |
Source code in backend/app/users/users_profile/import_service.py
568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 | |
collect_and_import_user_privacy_settings
async
collect_and_import_user_privacy_settings(user_privacy_settings_data)
Import user privacy settings.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
user_privacy_settings_data
|
list[Any]
|
Privacy settings data. |
required |
Source code in backend/app/users/users_profile/import_service.py
609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 | |
import_from_zip_data
async
import_from_zip_data(zip_data)
Import profile data from ZIP file bytes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
zip_data
|
bytes
|
ZIP file content as bytes. |
required |
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
Dictionary with import results and counts. |
Raises:
| Type | Description |
|---|---|
FileSizeError
|
If file exceeds size limit. |
FileFormatError
|
If ZIP format is invalid. |
FileSystemError
|
If file system error occurs. |
ImportTimeoutError
|
If operation times out. |
Source code in backend/app/users/users_profile/import_service.py
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 | |
ImportTimeoutError
Bases: ProfileImportError
Raised when import operation exceeds time limit.
Source code in backend/app/users/users_profile/exceptions.py
112 113 114 115 116 117 | |
ImportValidationError
Bases: ProfileImportError
Raised when import data fails validation checks.
Source code in backend/app/users/users_profile/exceptions.py
88 89 90 91 92 93 | |
JSONParseError
Bases: ProfileImportError
Raised when JSON data cannot be parsed.
Source code in backend/app/users/users_profile/exceptions.py
152 153 154 155 156 157 | |
MemoryAllocationError
Bases: ProfileOperationError
Raised when memory allocation fails.
Source code in backend/app/users/users_profile/exceptions.py
63 64 65 66 67 68 | |
ProfileImportError
Bases: ProfileOperationError
Base exception for import operations.
Source code in backend/app/users/users_profile/exceptions.py
30 31 32 33 34 35 | |
ProfileOperationError
Bases: Exception
Base exception for all profile operations.
Source code in backend/app/users/users_profile/exceptions.py
14 15 16 17 18 19 | |
SchemaValidationError
Bases: ProfileImportError
Raised when imported data doesn't match expected schema.
Source code in backend/app/users/users_profile/exceptions.py
160 161 162 163 164 165 | |
ZipCreationError
Bases: ExportError
Raised when ZIP file creation or writing fails.
Source code in backend/app/users/users_profile/exceptions.py
55 56 57 58 59 60 | |
ZipStructureError
Bases: ProfileImportError
Raised when ZIP file structure is invalid.
Source code in backend/app/users/users_profile/exceptions.py
144 145 146 147 148 149 | |