forked from NERSC/giveandtake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgive
executable file
·306 lines (276 loc) · 9.81 KB
/
give
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
#!/bin/bash -i
# Give is a command to share files with other users. It requires a spool area.
#
# Clean and unset vars. We now also use -i above.
giver=""
user=""
messagebody=""
SUBJECT=""
EMAIL=""
tmpdir=""
parentdir=""
dir2tar=""
current_dir=""
PATH=""
LD_LIBRARY_PATH=""
unset IFS
my_date=`/bin/date +%s`
# Implementation Definitions
#SPOOLAREA=/global/scratch2/gt
SPOOLAREA=/project/projectdirs/gt
# Get Giver's Name
giver=`/usr/bin/whoami`
# Get Hostname
myhost=`/usr/common/usg/bin/nersc_host`
#echo $myhost
if [ "$myhost" == "genepool" ]; then
myreadlink="/bin/readlink"
mylogger="/usr/bin/logger"
mymail="/usr/bin/mail"
else
myreadlink="/usr/bin/readlink"
mylogger="/bin/logger"
mymail="/bin/mail"
fi
# Make sure scratch is available and giver has directory
if [ ! -d "$SPOOLAREA/$giver" ]; then
echo "$giver has no mounted give area"
exit 1
fi
# Catch odd directories
current_dir=`/bin/pwd`
batchflag="no"
while getopts ":u:b" opt; do
case $opt in
u)
user="$OPTARG"
;;
b)
batchflag="yes"
;;
\?)
echo ""
echo "Usage: give -u <username> <files>"
echo " -u is a required option"
echo ""
exit 1
;;
:)
echo "Option -$OPTARG requires an argument."
exit 1
;;
esac
done
if [ -z "$user" ]
then
echo ""
echo "Usage: give -u <username> <files>"
echo " -u is a required option"
echo ""
exit 1
fi
# Check For Valid User
# Does not accept UID# as a valid name.
temp=`/usr/bin/id -u "$user" 2>&1`
if [ $? -ne 0 ] || [ "$user" == "$temp" ]
echo "$user" does not exist
exit 1
fi
shift $(( OPTIND-1 ))
if [ -n "$1" ]
then
# Make sure the giveandtake directory is created
# and set perms on giver/receiver gt directory here.
/bin/mkdir -p "$SPOOLAREA/$giver/$user"
/usr/bin/setfacl -R -d -m u:$user:rwx,g::---,m::rwx "$SPOOLAREA/$giver/$user"
/usr/bin/setfacl -R -m u:$user:rwx,g::---,m::rwx "$SPOOLAREA/$giver/$user"
for var in "$@"
do
# Check Size and Number Limitation??
# Not implemented currently. Doing du on a directory
# takes time...
# Check sanity of $var
if [ -d "$var" ]; then
echo ""
elif [ -a "$var" ]; then
echo ""
else
echo "$var does not exist"
exit 1
fi
my_var="$var"
if [ "$myhost" == "genepool" ]; then
my_short_var=`/usr/bin/basename "$var"`
else
my_short_var=`/bin/basename "$var"`
fi
# Copy file over. Create .tar archive if directory.
# Below ${var%/} deletes a trailing slash from $var
# ${my_var##*/} deletes longest match of "*/" from front $var (i.e. deletes the path)
# Check, Is this a directory?
if [ -d "$var" ]; then
# Create .tar from directory
my_var=${var%/}.tar
my_var=${my_var##*/}
tmpdir=${var%/}
parentdir=`/usr/bin/dirname "$tmpdir"`
dir2tar=${tmpdir##*/}
echo "Creating tar archive from directory $var"
cd "$parentdir"
if [ -a "$SPOOLAREA/$giver/$user/$my_var" ]
then
if [ "$batchflag" == "no" ]
then
echo "File $my_var already exists at destination. Overwrite?"
select yn in "Yes" "No"; do
case $yn in
Yes )
/bin/tar -cvf "$SPOOLAREA/$giver/$user/$my_var" "$dir2tar"
if [ $? -eq 0 ]
then
messagebody="$messagebody \n $my_var"
/usr/bin/setfacl -R -d -m u:$user:rwx "$SPOOLAREA/$giver/$user/$my_var"
/usr/bin/setfacl -R -m u:$user:rw,g::---,m::rw "$SPOOLAREA/$giver/$user/$my_var"
echo "`/bin/date` - gave $user `$myreadlink -f '$my_var'`" >> ~/.filesgiven
$mylogger "`/bin/date` - giveandtake $giver gave $user `$myreadlink -f '$my_var'`"
echo "Gave $my_var."
else
echo "Failed to give $my_var. Removing any incomplete files."
# Remove incomplete give
/bin/rm "$SPOOLAREA/$giver/$user/$my_var"
fi
break;;
No ) echo " " ; break;;
esac
done
else
my_var="${my_date}_${my_var}"
/bin/tar -cvf "$SPOOLAREA/$giver/$user/$my_var" "$dir2tar"
if [ $? -eq 0 ]
then
messagebody="$messagebody \n $my_var"
/usr/bin/setfacl -R -d -m u:$user:rwx "$SPOOLAREA/$giver/$user/$my_var"
/usr/bin/setfacl -R -m u:$user:rw,g::---,m::rw "$SPOOLAREA/$giver/$user/$my_var"
echo "`/bin/date` - gave $user `$myreadlink -f '$my_var'`" >> ~/.filesgiven
$mylogger "`/bin/date` - giveandtake $giver gave $user `$myreadlink -f '$my_var'`"
echo "Gave $my_var."
else
echo "Failed to give $my_var. Removing any incomplete files."
# Remove incomplete give
/bin/rm "$SPOOLAREA/$giver/$user/$my_var"
fi
fi
else
/bin/tar -cvf "$SPOOLAREA/$giver/$user/$my_var" "$dir2tar"
if [ $? -eq 0 ]
then
messagebody="$messagebody \n $my_var"
/usr/bin/setfacl -R -d -m u:$user:rwx "$SPOOLAREA/$giver/$user/$my_var"
/usr/bin/setfacl -R -m u:$user:rw,g::---,m::rw "$SPOOLAREA/$giver/$user/$my_var"
echo "`/bin/date` - gave $user `$myreadlink -f '$my_var'`" >> ~/.filesgiven
$mylogger "`/bin/date` - giveandtake $giver gave $user `$myreadlink -f '$my_var'`"
echo "Gave $my_var."
else
echo "Failed to give $my_var. Removing any incomplete files."
# Remove incomplete give
/bin/rm "$SPOOLAREA/$giver/$user/$my_var"
fi
fi
cd "$current_dir"
echo " "
# This is a file not a directory
else
if [ -a "$SPOOLAREA/$giver/$user/$my_short_var" ]
then
if [ "$batchflag" == "no" ]
then
echo "File $var already exists at destination. Overwrite?"
select yn in "Yes" "No"; do
case $yn in
Yes )
/usr/bin/rsync --progress --log-format="Giving $my_short_var" "$var" "$SPOOLAREA/$giver/$user"
if [ $? -eq 0 ]
then
messagebody="$messagebody \n $my_short_var"
/usr/bin/setfacl -R -d -m u:$user:rwx "$SPOOLAREA/$giver/$user/$my_short_var"
/usr/bin/setfacl -R -m u:$user:rw,g::---,m::rw "$SPOOLAREA/$giver/$user/$my_short_var"
echo "`/bin/date` - gave $user `$myreadlink -f '$var'`" >> ~/.filesgiven
$mylogger "`/bin/date` - giveandtake $giver gave $user `$myreadlink -f '$var'`"
echo "Gave $var"
else
echo "Failed to give $var. Removing incomplete file."
# Remove incomplete give
rm "$SPOOLAREA/$giver/$user/$my_short_var"
fi
echo " "
break;;
No ) echo " " ; break;;
esac
done
else
my_short_var="${my_date}_${my_short_var}"
/usr/bin/rsync --progress --log-format="Giving $my_short_var" "$var" "$SPOOLAREA/$giver/$user/$my_short_var"
if [ $? -eq 0 ]
then
messagebody="$messagebody \n $my_short_var"
/usr/bin/setfacl -R -d -m u:$user:rwx "$SPOOLAREA/$giver/$user/$my_short_var"
/usr/bin/setfacl -R -m u:$user:rw,g::---,m::rw "$SPOOLAREA/$giver/$user/$my_short_var"
echo "`/bin/date` - gave $user `$myreadlink -f '$var'`" >> ~/.filesgiven
$mylogger "`/bin/date` - giveandtake $giver gave $user `$myreadlink -f '$var'`"
echo "Gave $var"
else
echo "Failed to give $var. Removing incomplete file."
# Remove incomplete give
rm "$SPOOLAREA/$giver/$user/$my_short_var"
fi
echo " "
fi
else
echo "About to give $var"
echo /usr/bin/rsync --progress --log-format="Giving $my_short_var" "$var" "$SPOOLAREA/$giver/$user"
/usr/bin/rsync --progress --log-format="Giving $my_short_var" "$var" "$SPOOLAREA/$giver/$user"
if [ $? -eq 0 ]
then
messagebody="$messagebody \n $my_short_var"
/usr/bin/setfacl -R -d -m u:$user:rwx "$SPOOLAREA/$giver/$user/$my_short_var"
/usr/bin/setfacl -R -m u:$user:rw,g::---,m::rw "$SPOOLAREA/$giver/$user/$my_short_var"
echo "Gave $var"
echo "`/bin/date` - gave $user `$myreadlink -f '$var'`" >> ~/.filesgiven
$mylogger "`/bin/date` - giveandtake $giver gave $user `/$myreadlink -f '$var'`"
else
echo "Failed to give $var. Removing incomplete file."
# Remove incomplete give
rm "$SPOOLAREA/$giver/$user/$my_short_var"
fi
echo " "
fi
fi
done
if [ -z "$messagebody" ]
then
echo "No files given"
else
messagebody="Shared Files: $messagebody"
messagebody="$messagebody \n\n Retrieve individual files using the take command and providing $giver as the username (-u) argument."
# For security we no longer suggests users cut and paste from email
#messagebody="$messagebody \n\n % take -u $giver <filename>"
#messagebody="$messagebody \n\n Retrieve all files given by $giver using:"
#messagebody="$messagebody \n\n % take -u $giver -a"
# Email user
# EMAIL subject
SUBJECT="$giver has given you a file at NERSC."
# Email To ?
EMAIL="[email protected]"
# Email From ?
FROM="[email protected]"
# send an email using /bin/mail
if [ "$myhost" == "datatran" ]; then
echo -e "$messagebody" | $mymail -r "$FROM" -s "$SUBJECT" "$EMAIL"
else
echo -e "$messagebody" | $mymail -s "$SUBJECT" "$EMAIL" -- -f "$FROM"
fi
fi
else
echo "No file arguments given."
fi
exit 0