|
|
|
@ -12,8 +12,27 @@ CoordMode, ToolTip, Screen
|
|
|
|
|
CoordMode, Mouse, Screen
|
|
|
|
|
;#NoTrayIcon
|
|
|
|
|
|
|
|
|
|
; Customize the Toolbar Icon Menu
|
|
|
|
|
; ------------------------------------------------
|
|
|
|
|
Menu, tray, NoStandard
|
|
|
|
|
|
|
|
|
|
Menu, Tray, Add, Exit, KillScript
|
|
|
|
|
Menu, Tray, Add, Pause, PauseScript
|
|
|
|
|
|
|
|
|
|
; Menu, Tray, Add, Show Results, DisplayResults
|
|
|
|
|
Menu, Tray, Add, Schedule New Livestream, ReloadScript
|
|
|
|
|
Menu, Tray, Add, Restart with Last Item, RetryUpload
|
|
|
|
|
Menu, Tray, Default, Restart with Last Item
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
; Notes/Extra Info/#Includes
|
|
|
|
|
;------------------------------------------------
|
|
|
|
|
PassedInArgument = %1%
|
|
|
|
|
|
|
|
|
|
; Check if Update was just installed and delete the old .exe if so
|
|
|
|
|
CheckIfUpdateInstalled(PassedInArgument)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
; Included Files and Libraries
|
|
|
|
|
; ------------------------------------------------
|
|
|
|
@ -29,7 +48,7 @@ CoordMode, Mouse, Screen
|
|
|
|
|
#include %A_ScriptDir%\Lib\Freedomain-Posters-Shared-Functions\StdOutToVar.ahk
|
|
|
|
|
#include %A_ScriptDir%\Lib\Freedomain-Posters-Shared-Functions\Zip.ahk
|
|
|
|
|
#include %A_ScriptDir%\Lib\Freedomain-Posters-Shared-Functions\URLDownloadToVar.ahk
|
|
|
|
|
#Include %A_ScriptDir%\Modules\Miscellaneous-Functions.ahk
|
|
|
|
|
#Include %A_ScriptDir%\Lib\Freedomain-Posters-Shared-Functions\Miscellaneous-Functions.ahk
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -43,14 +62,9 @@ CoordMode, Mouse, Screen
|
|
|
|
|
global ScriptNameav
|
|
|
|
|
global ScriptVersion
|
|
|
|
|
global FullScriptName
|
|
|
|
|
global LBRYResolveAPICommand
|
|
|
|
|
global LBRYPermanentURL
|
|
|
|
|
global VideoTitle
|
|
|
|
|
global VideoFilepath
|
|
|
|
|
global VideoThumbFilepath
|
|
|
|
|
global VideoTags
|
|
|
|
|
global VideoDescription
|
|
|
|
|
global SocialMediaDescription
|
|
|
|
|
global PostStatusesFilepath
|
|
|
|
|
global ErrorLoggingDirectory
|
|
|
|
|
|
|
|
|
|
global DiscordErrorLoggingWebhookBotURL
|
|
|
|
|
global DiscordVideosWebhookURL
|
|
|
|
|
global VideoFolderDir
|
|
|
|
@ -88,37 +102,162 @@ ScriptSettingsSection := "Livestream-Scheduler"
|
|
|
|
|
|
|
|
|
|
FileInstall, Version.ini, %A_ScriptDir%\Lib\Version.ini, 1
|
|
|
|
|
IniRead, ScriptVersion, %A_ScriptDir%\Lib\Version.ini,%ScriptSettingsSection%, Version, 0.0
|
|
|
|
|
IniRead, ScriptName, %A_ScriptDir%\Lib\Version.ini,%ScriptSettingsSection%, Name, %ScriptSettingsSection%
|
|
|
|
|
; IniRead, ScriptName, %A_ScriptDir%\Lib\Version.ini,%ScriptSettingsSection%, Name, %ScriptSettingsSection%
|
|
|
|
|
|
|
|
|
|
global ScriptName := "Livestream Scheduler"
|
|
|
|
|
global ScriptAbbreviatedName := "FLS" ; used for error logging
|
|
|
|
|
|
|
|
|
|
FullScriptName := ScriptName . " - " . ScriptVersion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
; Read Info From Files
|
|
|
|
|
; ------------------------------------------------
|
|
|
|
|
; For Templates and re-trying a failed previous run
|
|
|
|
|
|
|
|
|
|
if(StrLen(PassedInArgument) > 5 and !InStr(PassedInArgument, ".exe")){
|
|
|
|
|
/*FileAppend, %LivestreamTitle%, %PostTitleFilePath% ; save post content to txt file
|
|
|
|
|
FileAppend, %LivestreamDescription%, %PostBodyFilePath% ; save post content to txt file
|
|
|
|
|
FileAppend, %LivestreamTags%, %PostTagsFilePath% ; save post content to txt file
|
|
|
|
|
|
|
|
|
|
if(LivestreamThumbnail){ ; copy thumbnail into folder
|
|
|
|
|
SplitPath, LivestreamThumbnail, OutFileName, OutDir, OutExtension, OutNameNoExt, OutDrive
|
|
|
|
|
FileCopy, %LivestreamThumbnail%, %ErrorLoggingDirectory%\Thumbnail.%OutExtension%
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
TemplateDirectory := PassedInArgument
|
|
|
|
|
|
|
|
|
|
FileRead, LivestreamTitle, %TemplateDirectory%\PostTitle.txt
|
|
|
|
|
FileRead, LivestreamDescription, %TemplateDirectory%\PostBody.txt
|
|
|
|
|
FileRead, LivestreamTags, %TemplateDirectory%\PostTags.txt
|
|
|
|
|
|
|
|
|
|
ThumbnailPNGFilepath = %TemplateDirectory%\Thumbnail.png
|
|
|
|
|
ThumbnailJPGFilepath = %TemplateDirectory%\Thumbnail.jpg
|
|
|
|
|
ThumbnailJPEGFilepath = %TemplateDirectory%\Thumbnail.jpg
|
|
|
|
|
|
|
|
|
|
if(FileExist(ThumbnailPNGFilepath))
|
|
|
|
|
LivestreamThumbnail := ThumbnailPNGFilepath
|
|
|
|
|
|
|
|
|
|
if(FileExist(ThumbnailJPGFilepath))
|
|
|
|
|
LivestreamThumbnail := ThumbnailJPGFilepath
|
|
|
|
|
|
|
|
|
|
if(FileExist(ThumbnailJPEGFilepath))
|
|
|
|
|
LivestreamThumbnail := ThumbnailJPEGFilepath
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
; GUI Variables
|
|
|
|
|
; ------------------------------------------------
|
|
|
|
|
GUIEditBoxWidths := 600
|
|
|
|
|
MarginSize := 10
|
|
|
|
|
MarginSizeDoubled := MarginSize * 2
|
|
|
|
|
ButtonHeights := 30
|
|
|
|
|
|
|
|
|
|
ThumbnailPreviewWidth := 200
|
|
|
|
|
|
|
|
|
|
; MAIN SCRIPT
|
|
|
|
|
GuiHeight := 450
|
|
|
|
|
|
|
|
|
|
; Column One
|
|
|
|
|
ColumnOneWidth := 400
|
|
|
|
|
|
|
|
|
|
ColumnOneEditBoxWidth := ColumnOneWidth - (MarginSize * 2)
|
|
|
|
|
GuiFontSize = 10
|
|
|
|
|
|
|
|
|
|
; Column Two
|
|
|
|
|
ColumnTwoXPosition := ColumnOneWidth + (MarginSize * 2)
|
|
|
|
|
ColumnTwoEditBoxWidth := 200
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
; Results Screen
|
|
|
|
|
ResultButtonWidth := 150
|
|
|
|
|
ResultButtonEditWidth := 250
|
|
|
|
|
ResultButtonHeights := 30
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
; START OF GUI
|
|
|
|
|
; ------------------------------------------------
|
|
|
|
|
|
|
|
|
|
Gui, Font, s%GuiFontSize%
|
|
|
|
|
; Column One
|
|
|
|
|
;------------------------------------------------
|
|
|
|
|
Gui, Font, S15
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Gui, Font, Bold
|
|
|
|
|
Gui, Add, Text,, Title
|
|
|
|
|
Gui, Add, Edit,w%GUIEditBoxWidths% vLivestreamTitle, We are going to have a livestream!
|
|
|
|
|
Gui, Font, Normal
|
|
|
|
|
Gui, Add, Edit,w%ColumnOneEditBoxWidth% vLivestreamTitle, %LivestreamTitle%
|
|
|
|
|
|
|
|
|
|
Gui, Font, Bold
|
|
|
|
|
Gui, Add, Text,, Description
|
|
|
|
|
Gui, Add, Edit,w%GUIEditBoxWidths% h200 vLivestreamDescription, This livestream is happening soon!
|
|
|
|
|
Gui, Font, Normal
|
|
|
|
|
Gui, Add, Edit,w%ColumnOneEditBoxWidth% h150 vLivestreamDescription, %LivestreamDescription%
|
|
|
|
|
|
|
|
|
|
Gui, Font, Bold
|
|
|
|
|
Gui, Add, Text,, Tags
|
|
|
|
|
Gui, Font, Normal
|
|
|
|
|
Gui, Add, Edit,w%ColumnOneEditBoxWidth% vLivestreamTags, %LivestreamTags%
|
|
|
|
|
|
|
|
|
|
Gui, Add, Text,, Date and Time of Livestream
|
|
|
|
|
Gui, Add, DateTime, vLivestreamDate, MM/dd/yyyy
|
|
|
|
|
Gui, Add, DateTime, vLivestreamTime, HH:mm
|
|
|
|
|
Gui, Add, Text,, Websites
|
|
|
|
|
|
|
|
|
|
Gui, Add, Checkbox,, Dlive
|
|
|
|
|
Gui, Add, Checkbox,, Locals
|
|
|
|
|
Gui, Add, Checkbox,, Odysee
|
|
|
|
|
Gui, Add, Button,gSchedulePost, Schedule
|
|
|
|
|
Gui, Font, Bold
|
|
|
|
|
Gui, Add, Text,, Thumbnail
|
|
|
|
|
Gui, Font, Normal
|
|
|
|
|
Gui, Add, Button, x+%MarginSize% yp-3 gSelectThumbnail, Select
|
|
|
|
|
Gui, Add, Picture, x%MarginSize% w%ThumbnailPreviewWidth% h-1 vThumbnailPreview, %LivestreamThumbnail%
|
|
|
|
|
|
|
|
|
|
Gui, Show
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
; Gui, Add, Edit,w%ColumnOneEditBoxWidth% h150 vLivestreamDescription, This livestream is happening soon!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
; Column Two
|
|
|
|
|
; ------------------------------------------------
|
|
|
|
|
Gui, Font, s%GuiFontSize%
|
|
|
|
|
Gui, Font, Bold
|
|
|
|
|
; Gui, Add, Text, , Settings
|
|
|
|
|
Gui, Add, Text,y0 x%ColumnTwoXPosition%, Settings
|
|
|
|
|
Gui, Font, Normal
|
|
|
|
|
Gui, Add, Checkbox, vConfirmBeforeSubmit checked, Confirm Before Submit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Gui, Font, s%GuiFontSize%
|
|
|
|
|
Gui, Font, Bold
|
|
|
|
|
; Gui, Add, Text, , Settings
|
|
|
|
|
Gui, Add, Text, y+%MarginSizeDoubled%, Date and Time of Livestream
|
|
|
|
|
Gui, Font, Normal
|
|
|
|
|
|
|
|
|
|
Gui, Add, DateTime, vLivestreamDate w%ColumnTwoEditBoxWidth%, MM/dd/yyyy
|
|
|
|
|
Gui, Add, DateTime, vLivestreamTime w%ColumnTwoEditBoxWidth%, HH:mm
|
|
|
|
|
|
|
|
|
|
Gui, Font, Bold
|
|
|
|
|
Gui, Add, Text,y+%MarginSizeDoubled%, Platform to Schedule On
|
|
|
|
|
Gui, Font, Normal
|
|
|
|
|
|
|
|
|
|
; Gui, Add, Checkbox,, Dlive
|
|
|
|
|
Gui, Add, Checkbox, checked vLocals, Locals
|
|
|
|
|
; Gui, Add, Checkbox,checked vOdysee, Odysee
|
|
|
|
|
|
|
|
|
|
Gui, Font, Bold
|
|
|
|
|
Gui, Add, Button,gSchedulePost w%ColumnTwoEditBoxWidth% y+100 gSaveAsTemplate, Save as Template
|
|
|
|
|
Gui, Add, Button,gSchedulePost w%ColumnTwoEditBoxWidth% gLoadTemplate, Load Template
|
|
|
|
|
|
|
|
|
|
Gui, Font, s15
|
|
|
|
|
Gui, Add, Button,gSchedulePost w%ColumnTwoEditBoxWidth% h40 y+50, Schedule
|
|
|
|
|
Gui, Font, Normal
|
|
|
|
|
|
|
|
|
|
Gui, Show, h%GuiHeight%
|
|
|
|
|
Return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -130,27 +269,159 @@ Return
|
|
|
|
|
|
|
|
|
|
; Functions
|
|
|
|
|
;------------------------------------------------
|
|
|
|
|
SaveAsTemplate:
|
|
|
|
|
Gui, submit, NoHide ; Update variables for all modified fields
|
|
|
|
|
|
|
|
|
|
TemplateDirectory = %A_ScriptDir%\Lib\Templates
|
|
|
|
|
if(!FileExist(TemplateDirectory)){
|
|
|
|
|
FileCreateDir, %TemplateDirectory%
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
InputBox, TemplateName, Input Name, Please Input Name for the Template:
|
|
|
|
|
if(ErrorLevel)
|
|
|
|
|
Return
|
|
|
|
|
|
|
|
|
|
TemplateDirectory = %A_ScriptDir%\Lib\Templates\%TemplateName%
|
|
|
|
|
ErrorLoggingDirectory := TemplateDirectory
|
|
|
|
|
; FileCreateDir, %TemplateDirectory%
|
|
|
|
|
CreateErrorLoggingFiles(ErrorLoggingDirectory)
|
|
|
|
|
|
|
|
|
|
; Save all the post settings to the Error Logging Directory
|
|
|
|
|
FileAppend, %LivestreamTitle%, %PostTitleFilePath% ; save post content to txt file
|
|
|
|
|
FileAppend, %LivestreamDescription%, %PostBodyFilePath% ; save post content to txt file
|
|
|
|
|
FileAppend, %LivestreamTags%, %PostTagsFilePath% ; save post content to txt file
|
|
|
|
|
|
|
|
|
|
if(LivestreamThumbnail){ ; copy thumbnail into folder
|
|
|
|
|
SplitPath, LivestreamThumbnail, OutFileName, OutDir, OutExtension, OutNameNoExt, OutDrive
|
|
|
|
|
FileCopy, %LivestreamThumbnail%, %ErrorLoggingDirectory%\Thumbnail.%OutExtension%
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LoadTemplate:
|
|
|
|
|
Message = Loading Template
|
|
|
|
|
SaveOrPostProgress(Message:=Message,PostType:="Tooltip,DiscordErrorLogging")
|
|
|
|
|
|
|
|
|
|
ErrorLoggingDirectory = %A_ScriptDir%\Lib\Templates\
|
|
|
|
|
FileSelectFolder, ErrorLoggingDirectory, %ErrorLoggingDirectory%
|
|
|
|
|
if(ErrorLevel){
|
|
|
|
|
Tooltip
|
|
|
|
|
Return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RetryUpload:
|
|
|
|
|
run, "%A_ScriptFullPath%" "%ErrorLoggingDirectory%"
|
|
|
|
|
ExitApp
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SelectThumbnail:
|
|
|
|
|
FileSelectFile, LivestreamThumbnail,
|
|
|
|
|
|
|
|
|
|
GuiControl, , ThumbnailPreview, *w%ThumbnailPreviewWidth% *h-1 %LivestreamThumbnail%
|
|
|
|
|
|
|
|
|
|
Return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SchedulePost:
|
|
|
|
|
Gui, submit, NoHide
|
|
|
|
|
|
|
|
|
|
; Re-use an existing errorlog or create new directory
|
|
|
|
|
if(InStr(PassedInArgument, "\ErrorLogging\"))
|
|
|
|
|
CreateErrorLoggingFiles(PassedInArgument)
|
|
|
|
|
else, {
|
|
|
|
|
CreateErrorLoggingFiles()
|
|
|
|
|
|
|
|
|
|
; Save all the post settings to the Error Logging Directory
|
|
|
|
|
FileAppend, %LivestreamTitle%, %PostTitleFilePath% ; save post content to txt file
|
|
|
|
|
FileAppend, %LivestreamDescription%, %PostBodyFilePath% ; save post content to txt file
|
|
|
|
|
FileAppend, %LivestreamTags%, %PostTagsFilePath% ; save post content to txt file
|
|
|
|
|
|
|
|
|
|
if(LivestreamThumbnail){ ; copy thumbnail into folder
|
|
|
|
|
SplitPath, LivestreamThumbnail, OutFileName, OutDir, OutExtension, OutNameNoExt, OutDrive
|
|
|
|
|
FileCopy, %LivestreamThumbnail%, %ErrorLoggingDirectory%\Thumbnail.%OutExtension%
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
; #Include %A_ScriptDir%\Modules\Rumble-Schedule.ahk
|
|
|
|
|
#Include %A_ScriptDir%\Modules\Locals-Schedule.ahk
|
|
|
|
|
|
|
|
|
|
if(Odysee){
|
|
|
|
|
Gosub, OdyseeSchedule
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(Locals){
|
|
|
|
|
Gosub, LocalsSchedule
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
; msgbox, done!
|
|
|
|
|
|
|
|
|
|
; Gui, Add,
|
|
|
|
|
|
|
|
|
|
Gui, Destroy
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
msgbox, done!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
; Results Screen
|
|
|
|
|
; ------------------------------------------------
|
|
|
|
|
IniRead, LocalsRTMPURL, %PostStatusesFilepath%, Livestream,LocalsRTMPURL, %A_Space%
|
|
|
|
|
IniRead, LocalsRTMPKey, %PostStatusesFilepath%, Livestream,LocalsRTMPKey, %A_Space%
|
|
|
|
|
|
|
|
|
|
; IniRead, OutputVar, Filename, Section, Key [, Default]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Gui, Font, Bold
|
|
|
|
|
|
|
|
|
|
Gui, Font, s%GuiFontSize%
|
|
|
|
|
Gui, Add, Button, x10 y+10 h%ResultButtonHeights% w%ResultButtonWidth%, Locals RTMP Key
|
|
|
|
|
Gui, Add, Edit, x+5 yp+0 h%ResultButtonHeights% w%ResultButtonEditWidth% vLocalsRTMPKey center, %LocalsRTMPKey%
|
|
|
|
|
|
|
|
|
|
Gui, Add, Button, x10 y+10 h%ResultButtonHeights% w%ResultButtonWidth%, Locals RTMP URL
|
|
|
|
|
Gui, Add, Edit, x+5 yp+0 h%ResultButtonHeights% w%ResultButtonEditWidth% vLocalsRTMPURL center, %LocalsRTMPURL%
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Gui, Add, Button, gRetryUpload,Try Failed Again
|
|
|
|
|
|
|
|
|
|
Gui, Show
|
|
|
|
|
|
|
|
|
|
Return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
; GoSubs
|
|
|
|
|
; ------------------------------------------------
|
|
|
|
|
KillScript:
|
|
|
|
|
ExitApp
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ReloadScript:
|
|
|
|
|
Reload
|
|
|
|
|
|
|
|
|
|
PauseScript:
|
|
|
|
|
Pause
|
|
|
|
|
Return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#Include %A_ScriptDir%\Modules\Locals-Schedule.ahk
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#Include %A_ScriptDir%\Modules\Odysee-Schedule.ahk
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
; Misc
|
|
|
|
|
;------------------------------------------------
|
|
|
|
|
|
|
|
|
|