blob: 490e52d9c0b612936f0b92c510c31a9f87e3f313 (
plain)
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
|
#!/bin/sh
if [ -f ../password.txt ]
then
combo=kaa:$( cat ../password.txt )
fi
api="neocities.org/api"
#files=0
#drawn=0
#composed=0
#photographed=0
#up=0
up=0
up() {
up=1
curl "https://$combo@$api/list" > files.json
ssh kaa@mesacsclub.com "ls /var/www/htdocs/kaa/Photo" | sort -r > photo
}
files() {
./files > files.html
if [ $up -eq 1 ]
then
curl -F "files.html=@files.html" "https://$combo@$api/upload"
fi
}
drawn() {
for i in drawn/*.html
do
cp $i $i.bup
done
./drawn/monthly
for i in drawn/20*.html
do
i=$i
done
cp $i drawn/index.html
if [ $up -eq 1 ]
then
for i in drawn/*.html
do
diff $i $i.bup >/dev/null 2>&1
if [ $? != 0 ]
then
curl -F "$i=@$i" "https://$combo@$api/upload"
fi
done
fi
}
composed() {
./composed > composed.html
if [ $up -eq 1 ]
then
curl -F "composed.html=@composed.html" "https://$combo@$api/upload"
fi
}
photographed() {
for i in photographed/*.html
do
cp $i $i.bup
done
./photographed/monthly.sh
for i in photographed/20*.html
do
i=$i
done
cp $i photographed/index.html
if [ $up -eq 1 ]
then
for i in photographed/*.html
do
diff $i $i.bup > /dev/null 2>&1
if [ $? != 0 ]
then
curl -F "$i=@$i" "https://$combo@$api/upload"
fi
done
fi
}
for i in $@
do
#eval "$i=1"
$i
done
# This can be done better.
return
if [ $up -eq 1 ]
then
curl "https://$combo@$api/list" > files.json
ssh kaa@mesacsclub.com "ls /var/www/htdocs/kaa/Photo" | sort -r > photo
fi
if [ $files -eq 1 ]
then
./files > files.html
if [ $up -eq 1 ]
then
curl -F "files.html=@files.html" "https://$combo@$api/upload"
fi
fi
if [ $drawn -eq 1 ]
then
for i in drawn/*.html
do
cp $i $i.bup
done
./drawn/monthly
for i in drawn/20*.html
do
i=$i
done
cp $i drawn/index.html
if [ $up -eq 1 ]
then
for i in drawn/*.html
do
diff $i $i.bup >/dev/null 2>&1
if [ $? != 0 ]
then
curl -F "$i=@$i" "https://$combo@$api/upload"
fi
done
fi
fi
if [ $composed -eq 1 ]
then
./composed > composed.html
if [ $up -eq 1 ]
then
curl -F "composed.html=@composed.html" "https://$combo@$api/upload"
fi
fi
if [ $photographed -eq 1 ]
then
for i in photographed/*.html
do
cp $i $i.bup
done
./photographed/monthly.sh
for i in photographed/20*.html
do
i=$i
done
cp $i photographed/index.html
if [ $up -eq 1 ]
then
for i in photographed/*.html
do
diff $i $i.bup > /dev/null 2>&1
if [ $? != 0 ]
then
curl -F "$i=@$i" "https://$combo@$api/upload"
fi
done
fi
fi
|