-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpermissions.java
215 lines (182 loc) · 6.81 KB
/
permissions.java
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
/**
* Google Play Store Crawler
* @Author1 Samarth Patel
* @Author2 Mandar Darwatkar
* @Institution University of California, Riverside
* @Date 12/12/2015
* @Input
*
* @Output
*/
package Parser;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import org.json.JSONException;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.select.Elements;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.sql.Timestamp;
import java.text.DecimalFormat;
import java.text.SimpleDateFormat;
import java.util.*;
import java.util.Map.Entry;
import com.gargoylesoftware.htmlunit.javascript.host.Element;
public class permissions
{
public static HashMap<String, Integer> PerDict = new HashMap<String, Integer> ();
public static int maxId=0;
public static void importDict() throws SQLException, ClassNotFoundException
{
Class.forName("com.mysql.jdbc.Driver");
String urldb = "jdbc:mysql://localhost/appstore";
String user = "root";
String password = "googleplay123";
Connection myConn3 = DriverManager.getConnection(urldb, user, password);
Statement st1 = null;
st1 = myConn3.createStatement(java.sql.ResultSet.TYPE_FORWARD_ONLY, java.sql.ResultSet.CONCUR_READ_ONLY);
st1.setFetchSize(Integer.MIN_VALUE);
ResultSet rs1= st1.executeQuery("SELECT id, name FROM permission_dictionary order by 1");
while(rs1.next())
{
int id = rs1.getInt("id");
String name=rs1.getString("name");
if(id>maxId)
maxId=id;
PerDict.put(name.toLowerCase(),id);
}
rs1.close();
st1.close();
myConn3.close();
}
public static void perMission(String appId, String page)throws IOException, SQLException, JSONException, InterruptedException // the main metho
, ClassNotFoundException
{
Class.forName("com.mysql.jdbc.Driver");
String urldb = "jdbc:mysql://localhost/appstore";
String user = "root";
String password = "googleplay123";
Connection myConn2 = DriverManager.getConnection(urldb, user, password);
PreparedStatement preparedStatement = null;
//File input = new File("1.html");
try
{
Document doc = Jsoup.parse(page, "UTF-8");
Elements bucketList = doc.select("div[class=permissions-container bucket-style]").select("div[class=permission-bucket]");
String heading=null;
for(org.jsoup.nodes.Element bucket: bucketList)
{
int headingCnt = 0, descCnt = 0;
Elements jslList =bucket.select("div[class=bucket-icon-and-title]").select("jsl > jsl");
for(org.jsoup.nodes.Element jsl: jslList)
{
headingCnt++;
if(!(jsl.attr("style").equals("display:none")))
{
heading = jsl.select("span[class=bucket-title]").text().toLowerCase().trim();
//System.out.println("heading :" + heading);
}
//System.out.println(jsl);
}
boolean once = false;
Elements permissionList = bucket.select("ul[class=bucket-description]").select("li");
for(org.jsoup.nodes.Element permission : permissionList)
{
descCnt++;
String currList = permission.text().toLowerCase().trim();
if(descCnt > headingCnt && once == false) {
heading ="Other";
//System.out.println("heading : "+heading);
once = true;
}
if(!(permission.attr("style").equals("display:none")))
{
if(!PerDict.containsKey(currList)) {
PreparedStatement upDict = myConn2.prepareStatement("INSERT IGNORE into permission_dictionary(name, category) VALUES (?, ?)");
upDict.setString(1, currList);
upDict.setString(2, heading);
upDict.executeUpdate();
upDict.close();
importDict();
}
String sql = "INSERT IGNORE into appPermissionMap values (?, ?)";
//String sql = "update appPermissionMap set p" + PerDict.get(currList) + "= ? where appid=?";
preparedStatement = myConn2.prepareStatement(sql);
preparedStatement.setString(1, appId);
preparedStatement.setInt(2, PerDict.get(currList));
preparedStatement.executeUpdate();
preparedStatement.close();
/*
for(Entry<String,Integer> entry : PerDict.entrySet())
{
if(entry.getKey().contains(currList))
{
String sql = "update appPermissionMap set p"+entry.getValue()+"= ? where appid=?";
preparedStatement = myConn2.prepareStatement(sql);
preparedStatement.setInt(1, 1);
preparedStatement.setString(2, appId);
preparedStatement.executeUpdate();
preparedStatement.close();
present = 1;
break;
}
}
if(present == 0)
{
PreparedStatement upDict = myConn2.prepareStatement("INSERT IGNORE into permission_dictionary(name, category) VALUES (?, ?)");
upDict.setString(1, currList.toLowerCase().trim());
upDict.setString(2, heading.toLowerCase().trim());
upDict.executeUpdate();
upDict.close();
importDict();
FileWriter fw1 = new FileWriter("extraPermission.txt",true);
BufferedWriter bw1 = new BufferedWriter(fw1);
bw1.write(""+appId+" "+currList);
bw1.write("\r\n");
bw1.close();
}*/
//System.out.println(currList);
}
}
}
myConn2.close();
}
catch(Exception e)
{
e.printStackTrace();
}
}
public static void main(String args[]) throws ClassNotFoundException, SQLException, IOException, JSONException, InterruptedException
{
Class.forName("com.mysql.jdbc.Driver");
String urldb = "jdbc:mysql://localhost/appstore";
String user = "root";
String password = "googleplay123";
Connection myConn1 = DriverManager.getConnection(urldb, user, password);
importDict();
Statement st = null;
st = myConn1.createStatement(java.sql.ResultSet.TYPE_FORWARD_ONLY, java.sql.ResultSet.CONCUR_READ_ONLY);
st.setFetchSize(Integer.MIN_VALUE);
ResultSet rs= st.executeQuery("SELECT appid,app_page FROM appraw");
while(rs.next())
{
String id= rs.getString("appid");
String page=rs.getString("app_page");
perMission(id, page);
}
myConn1.close();
}
}