-
Notifications
You must be signed in to change notification settings - Fork 0
/
curl-crawl.php
183 lines (153 loc) · 4.44 KB
/
curl-crawl.php
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
<?php
$toMajor = array(
'101' => 'Matematika',
'102' => 'Fisika',
'103' => 'Astronomi',
'104' => 'Mikrobiologi',
'105' => 'Kimia',
'106' => 'Biologi',
'107' => 'Sains dan Teknologi Farmasi',
'112' => 'Rekayasa Hayati',
'114' => 'Rekayasa Pertanian',
'115' => 'Rekayasa Kehutanan',
'116' => 'Farmasi Klinik dan Komunitas',
'120' => 'Teknik Geologi',
'121' => 'Teknik Pertambangan',
'122' => 'Teknik Perminyakan',
'123' => 'Teknik Geofisika',
'124' => 'Geofisika',
'125' => 'Teknik Metalurgi',
'128' => 'Meteorologi',
'129' => 'Oseanografi',
'130' => 'Teknik Kimia',
'131' => 'Teknik Mesin',
'132' => 'Teknik Elektro',
'133' => 'Teknik Fisika',
'134' => 'Teknik Industri',
'135' => 'Teknik Informatika',
'136' => 'Aeronotika dan Astronotika',
'137' => 'Teknik Material',
'143' => 'Teknik Pangan',
'144' => 'Manajemen Rekayasa Industri',
'145' => 'Teknik Bioenergi dan Kemurgi',
'150' => 'Teknik Sipil',
'151' => 'Teknik Geodesi dan Geomatika',
'152' => 'Arsitektur',
'153' => 'Teknik Lingkungan',
'154' => 'Perencanaan Wilayah dan Kota',
'155' => 'Teknik Kelautan',
'157' => 'Rekayasa Infrastruktur Lingkungan',
'158' => 'Teknik dan Pengelolaan Sumber Daya Air',
'160' => 'Tahap Tahun Pertama FMIPA',
'161' => 'Tahap Tahun Pertama SITH',
'162' => 'Tahap Tahun Pertama SF',
'163' => 'Tahap Tahun Pertama FITB',
'164' => 'Tahap Tahun Pertama FTTM',
'165' => 'Tahap Tahun Pertama STEI',
'166' => 'Tahap Tahun Pertama FTSL',
'167' => 'Tahap Tahun Pertama FTI',
'168' => 'Tahap Tahun Pertama FSRD',
'169' => 'Tahap Tahun Pertama FTMD',
'170' => 'Seni Rupa',
'172' => 'Kriya',
'173' => 'Desain Interior',
'174' => 'Desain Komunikasi Visual',
'175' => 'Desain Produk',
'179' => 'MKDU',
'180' => 'Teknik Tenaga Listrik',
'181' => 'Teknik Telekomunikasi',
'182' => 'Sistem dan Teknologi Informasi',
'183' => 'Teknik Biomedis',
'190' => 'Manajemen',
'192' => 'Kewirausahaan',
'197' => 'Tahap Tahun Pertama SBM',
'199' => 'Tahap Tahun Pertama SAPPK'
);
$tpbCodes = [
'160', // FMIPA
'161', // SITH
'162', // SF
'163', // FITB
'164', // FTTM
'165', // STEI
'166', // FTSL
'167', // FTI
'168', // FSRD
'169', // FTMD
'190', // SBM
'199' // SAPPK
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
// Provide your logged-in cookie for nic.itb.ac.id.
'Cookie: YOUR_COOKIE_HERE'
));
curl_setopt($ch, CURLOPT_URL, 'https://nic.itb.ac.id/manajemen-akun/pengecekan-user');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 2);
foreach ($tpbCodes as $code){
// 2013 to 2017
for ($year = 13; $year <= 17; $year++){
// For every 5 contiguous not-founds, break $studentNumber iteration.
$health = 5;
for ($studentNumber = 1; $studentNumber <= 600; $studentNumber++){
$nim = $code . $year . sprintf('%03d', $studentNumber);
curl_setopt($ch, CURLOPT_POSTFIELDS, array('uid' => $nim));
$result = '';
while ($result == ''){
// Re-execute every timeout.
$result = curl_exec ($ch);
}
preg_match("'<td>NIM</td>
<td>:</td>
<td>(.*?)</td>
</tr>
<tr>
<td>Nama Lengkap </td>
<td>:</td>
<td>(.*?)</td>
</tr>
<tr>
<td>Tipe user </td>
<td>:</td>
<td>(.*?)</td>
</tr>
<tr>
<td>Email ITB </td>
<td>:</td>
<td>(.*?)</td>
</tr>
<tr>
<td>Email non ITB</td>
<td>:</td>
<td>(.*?)</td>
</tr>'si", $result, $match);
if ($match){
// When found, reset 'health'.
$health = 5;
$nims = explode(', ', $match[1]);
$name = $match[2];
$status = $match[3];
$itbEmail = str_replace(array('(dot)', '(at)'), array('.', '@'), $match[4]);
$nonItbEmail = str_replace(array('(dot)', '(at)'), array('.', '@'), $match[5]);
if (empty($nims[1])){
$major = $toMajor[substr($nims[0], 0, 3)];
$nims[1] = '';
} else {
$major = $toMajor[substr($nims[1], 0, 3)];
}
// What to do with the data?
echo ' ', $nims[0], ' ', $nims[1], ' [', $status, ' - ', $major, "]\n", $name, "\n", $itbEmail, ' | ', $nonItbEmail, "\n\n";
} else
// Reduce 'health' when the corresponding NIM isn't found.
$health = $health - 1;
if ($health == 0)
// When $studentNumber exceeds actual student number.
break;
}
}
}
curl_close($ch);
echo "Done.\n"
?>