-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Display-Message-via-Dialog.bash
346 lines (258 loc) · 13 KB
/
Display-Message-via-Dialog.bash
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
#!/bin/bash
####################################################################################################
#
# Display Message via swiftDialog
#
# Purpose: Displays an end-user message via swiftDialog
# See: https://snelson.us/2023/03/display-message-0-0-7-via-swiftdialog/
#
####################################################################################################
#
# HISTORY
#
# Version 0.0.1, 18-Feb-2022, Dan K. Snelson (@dan-snelson)
# Original version
#
# Version 0.0.2, 06-Apr-2022, Dan K. Snelson (@dan-snelson)
# Default icon to Jamf Pro Self Service if not specified
#
# Version 0.0.3, 19-Oct-2022, Dan K. Snelson (@dan-snelson)
# Validate Operating System
# Check for / install dialog (thanks, @acodega)
# Added Client-side Script Logging
# Changed Jamf Pro Script Parameters
# - Friendly error message when Title or Message are not populated
# - Changed Action (Parameter 11) to be optional (thanks for the idea, @eosrebel!)
#
# Version 0.0.4, 03-Nov-2022, Dan K. Snelson (@dan-snelson)
# Reverted `action` code to version 0.0.2
#
# Version 0.0.5, 05-Dec-2022, Dan K. Snelson (@dan-snelson)
# Added `returncode` of `20` for "Do Not Disturb"
#
# Version 0.0.6, 28-Dec-2022, Dan K. Snelson (@dan-snelson)
# - Hard-code `overlayicon` to use Self Service's icon (to help overcome the inability to include
# spaces in Jamf Pro Script Parameters)
#
# Version 0.0.7, 21-Mar-2023, Dan K. Snelson (@dan-snelson)
# - Overlayicon can now be included via: `--overlayicon /var/tmp/overlayicon.icns`
# - Updates from Setup Your Mac code
# - Revised default dialog instructions
#
# Version 0.0.8, 30-Mar-2023, Dan K. Snelson (@dan-snelson)
# - Updated default dialog instructions to include an `action`
#
# Version 0.0.9, 09-Sep-2023, Dan K. Snelson (@dan-snelson)
# - Updated `dialogURL`
#
# Version 0.0.10, 01-Nov-2023, Dan K. Snelson (@dan-snelson)
# - Updated `osascript` error message
#
####################################################################################################
####################################################################################################
#
# Variables
#
####################################################################################################
scriptVersion="0.0.10"
scriptLog="/var/tmp/org.churchofjesuschrist.log"
export PATH=/usr/bin:/bin:/usr/sbin:/sbin
loggedInUser=$( echo "show State:/Users/ConsoleUser" | scutil | awk '/Name :/ { print $3 }' )
osVersion=$( sw_vers -productVersion )
osMajorVersion=$( echo "${osVersion}" | awk -F '.' '{print $1}' )
dialogBinary="/usr/local/bin/dialog"
dialogMessageLog=$( mktemp /var/tmp/dialogWelcomeLog.XXX )
if [[ -n ${4} ]]; then titleoption="--title"; title="${4}"; fi
if [[ -n ${5} ]]; then messageoption="--message"; message="${5}"; fi
if [[ -n ${6} ]]; then iconoption="--icon"; icon="${6}"; fi
if [[ -n ${7} ]]; then button1option="--button1text"; button1text="${7}"; fi
if [[ -n ${8} ]]; then button2option="--button2text"; button2text="${8}"; fi
if [[ -n ${9} ]]; then infobuttonoption="--infobuttontext"; infobuttontext="${9}"; fi
extraflags="${10}"
action="${11}"
# Create `overlayicon` from Self Service's custom icon (thanks, @meschwartz!)
xxd -p -s 260 "$(defaults read /Library/Preferences/com.jamfsoftware.jamf self_service_app_path)"/Icon$'\r'/..namedfork/rsrc | xxd -r -p > /var/tmp/overlayicon.icns
overlayicon="/var/tmp/overlayicon.icns"
# Default icon to Jamf Pro Self Service if not specified
if [[ -z ${icon} ]]; then
iconoption="--icon"
icon="/var/tmp/overlayicon.icns"
fi
####################################################################################################
#
# Pre-flight Checks
#
####################################################################################################
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# Pre-flight Check: Client-side Logging
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
if [[ ! -f "${scriptLog}" ]]; then
touch "${scriptLog}"
fi
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# Pre-flight Check: Client-side Script Logging Function
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
function updateScriptLog() {
echo -e "$( date +%Y-%m-%d\ %H:%M:%S ) - ${1}" | tee -a "${scriptLog}"
}
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# Pre-flight Check: Logging Preamble
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
updateScriptLog "\n\n###\n# Display Message via swiftDialog (${scriptVersion})\n###\n"
updateScriptLog "PRE-FLIGHT CHECK: Initiating …"
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# Pre-flight Check: Validate Operating System
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
if [[ "${osMajorVersion}" -ge 11 ]] ; then
updateScriptLog "PRE-FLIGHT CHECK: macOS ${osMajorVersion} installed; proceeding ..."
else
updateScriptLog "PRE-FLIGHT CHECK: macOS ${osVersion} installed; exiting."
osascript -e 'display dialog "Display Message via swiftDialog ('"${scriptVersion}"')\rby Dan K. Snelson (https://snelson.us)\r\rmacOS '"${osVersion}"' installed; macOS Big Sur 11\r(or later) required" buttons {"OK"} with icon caution with title "Display Message via swiftDialog: Error"'
exit 1
fi
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# Pre-flight Check: Validate / install swiftDialog (Thanks big bunches, @acodega!)
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
function dialogCheck() {
# Get the URL of the latest PKG From the Dialog GitHub repo
dialogURL=$(curl -L --silent --fail "https://api.github.com/repos/swiftDialog/swiftDialog/releases/latest" | awk -F '"' "/browser_download_url/ && /pkg\"/ { print \$4; exit }")
# Expected Team ID of the downloaded PKG
expectedDialogTeamID="PWA5E9TQ59"
# Check for Dialog and install if not found
if [ ! -e "/Library/Application Support/Dialog/Dialog.app" ]; then
updateScriptLog "PRE-FLIGHT CHECK: Dialog not found. Installing..."
# Create temporary working directory
workDirectory=$( /usr/bin/basename "$0" )
tempDirectory=$( /usr/bin/mktemp -d "/private/tmp/$workDirectory.XXXXXX" )
# Download the installer package
/usr/bin/curl --location --silent "$dialogURL" -o "$tempDirectory/Dialog.pkg"
# Verify the download
teamID=$(/usr/sbin/spctl -a -vv -t install "$tempDirectory/Dialog.pkg" 2>&1 | awk '/origin=/ {print $NF }' | tr -d '()')
# Install the package if Team ID validates
if [[ "$expectedDialogTeamID" == "$teamID" ]]; then
/usr/sbin/installer -pkg "$tempDirectory/Dialog.pkg" -target /
sleep 2
dialogVersion=$( /usr/local/bin/dialog --version )
updateScriptLog "PRE-FLIGHT CHECK: swiftDialog version ${dialogVersion} installed; proceeding..."
else
# Display a so-called "simple" dialog if Team ID fails to validate
osascript -e 'display dialog "Please advise your Support Representative of the following error:\r\r• Dialog Team ID verification failed\r\r" with title "Display Message via Dialog: Error" buttons {"Close"} with icon caution'
quitScript "1"
fi
# Remove the temporary working directory when done
/bin/rm -Rf "$tempDirectory"
else
updateScriptLog "PRE-FLIGHT CHECK: swiftDialog version $(${dialogBinary} --version) found; proceeding..."
fi
}
if [[ ! -e "/Library/Application Support/Dialog/Dialog.app" ]]; then
dialogCheck
else
updateScriptLog "PRE-FLIGHT CHECK: swiftDialog version $(${dialogBinary} --version) found; proceeding..."
fi
####################################################################################################
#
# Functions
#
####################################################################################################
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# Quit Script (thanks, @bartreadon!)
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
function quitScript() {
updateScriptLog "Quitting …"
echo "quit:" >> "${dialogMessageLog}"
sleep 1
updateScriptLog "Exiting …"
# Remove dialogMessageLog
if [[ -f ${dialogMessageLog} ]]; then
updateScriptLog "Removing ${dialogMessageLog} …"
rm "${dialogMessageLog}"
fi
# Remove overlayicon
if [[ -f ${overlayicon} ]]; then
updateScriptLog "Removing ${overlayicon} …"
rm "${overlayicon}"
fi
updateScriptLog "Goodbye!"
exit "${1}"
}
####################################################################################################
#
# Program
#
####################################################################################################
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# Validate Script Parameters
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
if [[ -z "${title}" ]] || [[ -z "${message}" ]]; then
updateScriptLog "Either Parameter 4 or Parameter 5 are NOT populated; displaying instructions …"
extraflags="--width 825 --height 400 --moveable --timer 75 --position topright --blurscreen --titlefont size=26 --messagefont size=13 --iconsize 125 --overlayicon /var/tmp/overlayicon.icns --quitoninfo"
titleoption="--title"
title="Title [Parameter 4] goes here"
messageoption="--message"
message="### Message [Parameter 5] goes here \n\n- [Dialog](https://github.com/bartreardon/swiftDialog) v\`$(${dialogBinary} --version)\` \n- [Display Message via swiftDialog](https://snelson.us/2023/03/display-message-0-0-7-via-swiftdialog/) v\`${scriptVersion}\` \n- Displaying with the following \`extraflags\`: \n\n\`${extraflags}\` \n\nThank you, [Bart Reardon](https://www.buymeacoffee.com/bartreardon), for making \`swiftDialog\`! \n\n---\n\n**Note:** Please review this [blog post](https://snelson.us/2023/03/display-message-0-0-7-via-swiftdialog/) for additional information."
button1option="--button1text"
button1text="Button 1 [Parameter 7]"
button2option="--button2text"
button2text="Button 2 [Parameter 8]"
infobuttonoption="--infobuttontext"
infobuttontext="Infobutton [Paramter 9]"
action="https://snelson.us/2023/03/display-message-0-0-7-via-swiftdialog/"
else
updateScriptLog "Both \"title\" and \"message\" Parameters are populated; proceeding ..."
fi
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# Display Message: Dialog
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
updateScriptLog "Title: ${title}"
updateScriptLog "Message: ${message}"
updateScriptLog "Extra Flags: ${extraflags}"
# shellcheck disable=SC2086
${dialogBinary} \
${titleoption} "${title}" \
${messageoption} "${message}" \
${iconoption} "${icon}" \
${button1option} "${button1text}" \
${button2option} "${button2text}" \
${infobuttonoption} "${infobuttontext}" \
--infobuttonaction "https://servicenow.company.com/support?id=kb_article_view&sysparm_article=${infobuttontext}" \
--messagefont "size=14" \
--commandfile "$dialogMessageLog}" \
${extraflags}
returncode=$?
updateScriptLog "Return Code: ${returncode}"
case ${returncode} in
0) ## Process exit code 0 scenario here
echo "${loggedInUser} clicked ${button1text}"
updateScriptLog "${loggedInUser} clicked ${button1text};"
if [[ -n "${action}" ]]; then
su - "${loggedInUser}" -c "open \"${action}\""
fi
quitScript "0"
;;
2) ## Process exit code 2 scenario here
echo "${loggedInUser} clicked ${button2text}"
updateScriptLog "${loggedInUser} clicked ${button2text};"
quitScript "0"
;;
3) ## Process exit code 3 scenario here
echo "${loggedInUser} clicked ${infobuttontext}"
updateScriptLog "${loggedInUser} clicked ${infobuttontext};"
;;
4) ## Process exit code 4 scenario here
echo "${loggedInUser} allowed timer to expire"
updateScriptLog "${loggedInUser} allowed timer to expire;"
;;
20) ## Process exit code 20 scenario here
echo "${loggedInUser} had Do Not Disturb enabled"
updateScriptLog "${loggedInUser} had Do Not Disturb enabled"
quitScript "0"
;;
*) ## Catch all processing
echo "Something else happened; Exit code: ${returncode}"
updateScriptLog "Something else happened; Exit code: ${returncode};"
quitScript "${returncode}"
;;
esac
updateScriptLog "End-of-line."
quitScript "0"