models
models
¶
Models of the MVC design pattern for the application.
CustomLog
¶
Bases: TextIOBase
Class that implements a custom log that can be used to redirect the output of the logging module to a widget.
Source code in models.py
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 | |
__init__(size=100000)
¶
Constructor of the class. It initializes the list of messages and the lock used to synchronize the access to it. :param size: The maximum size of the log.
Source code in models.py
__str__()
¶
Returns the string representation of the log.
:return: The string representation of the log.
get_all_messages()
¶
Returns all the messages that have been written to the log as a tuple.
:return: All the messages that have been written to the log.
get_messages_to_print()
¶
Returns the messages that have been written to the log since the last call to this method. The messages are returned in a tuple and then the log is cleared. If no messages have been written since the last call to this method, an empty tuple is returned.
:return: The messages that have been written to the log.
Source code in models.py
shrink()
¶
Shrinks the log to the maximum size.
total_messages()
¶
Returns the total number of messages that have been written to the log.
:return: The total number of messages written.
write(msg)
¶
Writes the given message to the log. :param msg: The message to be written.
DefaultConfig
¶
Class that loads the default configuration from a json file and provides it to the application as a singleton object.
Source code in models.py
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 | |
__init__(cfg_file='default.json')
¶
Constructor of the class. It loads the configuration from the json file and stores it in a dictionary. :param cfg_file: The path of the json file containing the configuration.
:raise ConfigException: If the configuration file is empty.
Source code in models.py
get(key)
¶
Returns the value associated with the given key. :param key: The key of the value to be returned.
:return: The value associated with the given key.
reload()
¶
Reloads the configuration from the JSON file.
:raise ConfigException: If the configuration file is empty.
Source code in models.py
youtube_credentials()
¶
Get the credentials for the YouTube account. If the credentials are not available, ask the user to log in. If the credentials are expired, ask the user to refresh the token. If the credentials are valid, return them.
:return: The credentials for the YouTube account.
Source code in models.py
EventScheduler
¶
Bases: Thread
Thread that schedules the live events.
Source code in models.py
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 | |
__init__(telegram, cfg_file='orari_registrazioni.json')
¶
Constructor of the class. It initializes the thread and loads the events from the json configuration file. :param telegram: The Telegram object used to send messages. :param cfg_file: The path of the json file containing the events.
Source code in models.py
__thread_job()
async
¶
Async method that processes the live events.
add_event(event_data)
¶
Add an event to the list of events. :param event_data: The data of the event to be added.
Source code in models.py
get_future_events()
¶
Get the list of future events.
:return: The list of future events.
Source code in models.py
reload_from_file()
¶
Loads the events from the JSON configuration file. If an event is not valid, it is discarded.
Source code in models.py
run()
¶
save_to_file()
¶
Save the events to the JSON configuration file.
:return: True if the events have been saved, False otherwise (i.e. the events have not been modified).
Source code in models.py
LiveEvent
¶
Class that represents a recurring or onetime live event and schedules it. @DynamicAttrs
Source code in models.py
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 | |
__add_to_playlist(playlist, youtube)
async
¶
Add the video to the playlist with the given id. :param playlist: The id of the playlist. :param youtube: The YouTube object used to add the video to the playlist.
Source code in models.py
__bind_streams(input_stream_id, output_stream_id, youtube)
async
staticmethod
¶
Bind the input stream to the output stream (i.e. the live broadcast). :param input_stream_id: The id of the input stream. :param output_stream_id: The id of the output stream. :param youtube: The YouTube object used to bind the streams.
Source code in models.py
__configure_schedule()
¶
Configure the event schedule according to the current event data.
Source code in models.py
__configure_video(title, description, live_date, youtube)
async
¶
Configure live-streaming video settings (i.e. title, description, category, language and recording date). :param title: The title of the live-streaming. :param description: The description of the live-streaming. :param live_date: The date of the live-streaming. :param youtube: The YouTube object used to configure the video.
Source code in models.py
__create_live_broadcast(live_date, privacy, youtube)
async
¶
Create a live broadcast object (the output stream) and set the parameters. Returns the id of the live broadcast. :param live_date: The date of the live broadcast. :param privacy: The privacy of the live. :param youtube: The YouTube object used to create the live broadcast.
:return: The id of the live broadcast.
Source code in models.py
__create_live_stream(youtube)
async
staticmethod
¶
Create a live stream object (the input stream) and set the parameters. Returns the id, the stream key and the rtmp url of the live stream. :param youtube: The YouTube object used to create the live stream.
:return: The id, the stream key and the rtmp url of the live stream.
Source code in models.py
__delete_key(youtube)
¶
Method that deletes the streaming key after 2 minutes. :param youtube: The YouTube object used to delete the streaming key.
Source code in models.py
__ensure_seconds(time)
classmethod
¶
Ensure a time value includes seconds. :param time: The time value to normalize. :return: The time value with seconds.
Source code in models.py
__eq__(other)
¶
Compare the LiveEvent with the given object. The comparison is based on the uuid of the LiveEvent. If the given object is not a LiveEvent, the comparison returns NotImplemented. :param other: The object to be compared with the LiveEvent.
:return: True if the LiveEvent is equal to the given object, False otherwise.
Source code in models.py
__init__(telegram, event_data)
¶
Constructor of the class. It initializes the event data. :param telegram: The Telegram bot object. :param event_data: The data of the event.
Source code in models.py
__normalize_time(time)
classmethod
¶
Normalize a time value to ensure single-digit hours are zero-padded. :param time: The time value to normalize. :return: The normalized time value.
Source code in models.py
__notify_streaming_ended()
async
¶
Notify the end of the live-streaming.
__notify_streaming_start()
async
¶
Notify the start of the live-streaming.
Source code in models.py
__onetime()
¶
Set up the one-time event schedule.
:return: The schedule and the schedule_prepare objects.
Source code in models.py
__open_obs()
async
¶
Open OBS if it is not running.
Source code in models.py
__recurring()
¶
Set up the recurring event schedule.
:return: The schedule and the schedule_prepare objects.
Source code in models.py
__run_once(event_date, job_func, *args, **kvargs)
staticmethod
¶
Run a function once at a specific date and time. :param event_date: date and time to run the function at :param job_func: function to run once :param args: arguments (positional) to pass to the function :param kvargs: arguments (keyword) to pass to the function
:return: None if the function was not scheduled, CancelJob otherwise
Source code in models.py
__setup_go_live()
async
¶
Set up the live-streaming in go_live method.
Source code in models.py
__setup_prepare_live(now=False)
¶
Compute the parameters of the live-streaming. :param now: If True, the live-streaming is prepared immediately.
:return: The title, the description, the date and the privacy of the live-streaming.
Source code in models.py
__str__()
¶
Returns the string representation of the LiveEvent.
:return: The string representation of the LiveEvent.
__streaming_in_progress()
async
staticmethod
¶
Async method that waits for the live-streaming to end.
Source code in models.py
__task_done(task)
¶
Remove the task from the background tasks. :param task: The task to be removed.
__to_task(coro, *args, **kwargs)
¶
Add a coroutine to the background tasks. :param coro: The coroutine to be added. :param args: The arguments to be passed to the coroutine. :param kwargs: The keyword arguments to be passed to the coroutine.
Source code in models.py
__update_event(event_data=None)
¶
Updates the event data. :param event_data: The new data of the event.
__youtube_credentials()
staticmethod
¶
Context manager that returns the YouTube object used to create the live broadcast and the live stream. :yield: The YouTube object used to create the live broadcast and the live stream.
Source code in models.py
get_config(basic=False)
¶
Returns the configuration of the event. :param basic: If True, the basic configuration is returned, otherwise the complete configuration is returned.
:return: The configuration of the event.
Source code in models.py
get_youtube_categories()
cached
staticmethod
¶
Get the list of YouTube video categories.
:return: The dictionary of YouTube video categories.
Source code in models.py
get_youtube_playlists()
cached
staticmethod
¶
Get the list of YouTube video playlists.
:return: The dictionary of YouTube video playlists.
Source code in models.py
go_live()
async
¶
Async method that starts the live-streaming.
Source code in models.py
obs_exec(ws, method, params=None)
async
staticmethod
¶
Execute the given command with the given parameters on OBS. :param ws: The websocket client to use. :param method: The command to call. :param params: The parameters of the command.
:return: The response of the command.
Source code in models.py
prepare_live(now=False)
async
¶
Prepares the live-streaming by setting up the streaming configuration. :param now: If True, the live-streaming is prepared immediately.
:raise PrepareLiveException: If the live-streaming configuration is not valid.
Source code in models.py
remove_schedule()
¶
Removes the schedule of the event.
:return: True if the schedule has been removed, False otherwise.
Source code in models.py
reschedule(update=None)
¶
Reschedules the event. :param update: The new data of the event.
:return: True if the event has been rescheduled, False otherwise.
Source code in models.py
schedule_every(day, anticipate=False)
staticmethod
¶
Returns the schedule object associated with the given day. :param day: The day of the week to be scheduled (i.e. 'lu', 'ma', 'me', 'gi', 've', 'sa', 'do'). :param anticipate: If True, the schedule is set to the day before the given day.
:raise ScheduleException: If the given day is not valid.
Source code in models.py
MemoryCache
¶
Bases: Cache
Simple in-memory cache keyed by URL.
Source code in models.py
__init__()
¶
get(url)
¶
Return the cached content for the given URL, if present. :param url: The url of the content.
:return: The content associated with the given url.
set(url, content)
¶
Store content in the cache for the given URL. :param url: The url of the content. :param content: The content to be set.
StreamingStatus
¶
Class that stores the status of the live-streaming.
Source code in models.py
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 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 | |
__init__()
¶
Constructor of the live-streaming status class.
Source code in models.py
__set_updated()
¶
Set the status as updated.
Source code in models.py
add_ended_task(task)
¶
Adds a coroutine to the list of ended tasks. :param task: The coroutine to be added.
add_update_callback(callback)
¶
Add a callback to be called when an update is dispatched. :param callback: The callback to be added.
Source code in models.py
dispatch_updates()
¶
Dispatches the updates to the GUI.
:return: True if an update has been dispatched, False otherwise.
Source code in models.py
get_bonus_time()
¶
Gets the bonus time of the live-streaming.
:return: The bonus time of the live-streaming in minutes.
get_description()
¶
Gets the description of the live-streaming.
:return: The description of the live-streaming.
get_ended_task()
¶
Gets the first coroutine in the list of ended tasks.
:return: The first coroutine in the list of ended tasks.
Source code in models.py
get_live_status()
¶
get_obs_live_view()
¶
Gets the OBS live-view status.
:return: True if the OBS live-view has to be shown, False otherwise.
get_owner()
¶
Gets the owner of the live-streaming.
:return: The LiveEvent owner of the live-streaming.
get_time_left()
¶
Gets the time left for the live-streaming to end.
:return: The time left for the live-streaming to end in seconds.
get_title()
¶
Gets the title of the live-streaming.
:return: The title of the live-streaming.
get_total_time()
¶
Gets the total time of the live-streaming (duration + bonus time).
:return: The total time of the live-streaming in seconds.
Source code in models.py
increase_bonus_time(amount=10)
¶
Increases the bonus time of the live-streaming. :param amount: The amount of minutes to increase the bonus time.
Source code in models.py
is_busy()
¶
Tells if the live-streaming is busy or not (i.e. live or prepared).
:return: True if the live-streaming is busy, False otherwise.
Source code in models.py
is_live()
¶
Tells if the live-streaming is live or not.
:return: True if the live-streaming is live, False otherwise.
is_prepared()
¶
Tells if the live-streaming is prepared or not.
:return: True if the live-streaming is prepared, False otherwise.
is_ready()
¶
Tells if a live-streaming could be prepared.
:return: True if a live-streaming could be prepared, False otherwise.
remove_update_callback(callback)
¶
Remove a callback previously added. :param callback: The callback to be removed.
Source code in models.py
set_description(description)
¶
Sets the description of the live-streaming. :param description: The description of the live-streaming.
Source code in models.py
set_live(owner)
¶
Sets the live-streaming to live state. :param owner: The LiveEvent owner of the live-streaming.
:raise StreamingStatusException: If the owner of the live-streaming is not the same as the LiveEvent passed as parameter.
Source code in models.py
set_prepared(owner)
¶
Sets the live-streaming to prepared state. :param owner: The LiveEvent owner of the live-streaming.
:raise StreamingStatusException: If the owner of the live-streaming is not the same as the LiveEvent passed as parameter.
Source code in models.py
set_ready(owner)
¶
Sets the live-streaming to ready state. :param owner: The LiveEvent owner of the live-streaming.
:raise StreamingStatusException: If the owner of the live-streaming is not the same as the LiveEvent passed as parameter.
Source code in models.py
set_refresh_program(status=False)
¶
Sets the refresh program status. :param status: The status of the refresh program.
set_time_left(elapsed_time)
¶
Sets the time left of the live-streaming (total time - elapsed time). :param elapsed_time: The elapsed time in seconds.
Source code in models.py
set_title(title)
¶
Sets the title of the live-streaming. :param title: The title of the live-streaming.
should_refresh_program()
¶
Tells if the program has to be refreshed.
:return: True if the program has to be refreshed, False otherwise.
should_stop()
¶
Tells if the live-streaming should be stopped immediately.
:return: True if the live-streaming should be stopped immediately, False otherwise.
Source code in models.py
stop_now()
¶
switch_obs_live_view(status=None)
¶
Switches the OBS live-view status. :param status: The status of the OBS live-view.
Source code in models.py
call_preset(preset=None)
async
¶
Call the given preset on the camera. :param preset: The preset name to call.