An Eclipse RCP reimplementation of bgg1tool by Nand. See http://www.nand.it/nandeck/ for the original tool.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

389 řádky
12KB

  1. package xyz.veronie.bgg.result;
  2. import java.io.BufferedReader;
  3. import java.io.IOException;
  4. import java.io.InputStreamReader;
  5. import java.io.StringReader;
  6. import java.io.UnsupportedEncodingException;
  7. import java.net.HttpURLConnection;
  8. import java.net.MalformedURLException;
  9. import java.net.URL;
  10. import java.net.URLEncoder;
  11. import java.util.ArrayList;
  12. import java.util.Iterator;
  13. import java.util.Map.Entry;
  14. import java.util.Set;
  15. import javax.inject.Inject;
  16. import javax.xml.parsers.DocumentBuilder;
  17. import javax.xml.parsers.DocumentBuilderFactory;
  18. import javax.xml.parsers.ParserConfigurationException;
  19. import org.eclipse.e4.core.di.annotations.Creatable;
  20. import org.eclipse.e4.core.services.events.IEventBroker;
  21. import org.w3c.dom.Document;
  22. import org.w3c.dom.Element;
  23. import org.w3c.dom.Node;
  24. import org.w3c.dom.NodeList;
  25. import org.xml.sax.InputSource;
  26. import org.xml.sax.SAXException;
  27. import xyz.veronie.bgg.types.EventConstants;
  28. import xyz.veronie.bgg.types.FamilyType;
  29. import xyz.veronie.bgg.types.FilterFlagState;
  30. import xyz.veronie.bgg.types.SourceFilter;
  31. import xyz.veronie.bgg.types.Subtype;
  32. import xyz.veronie.bgg.types.UserFlag;
  33. @Creatable
  34. public class BggApi {
  35. @Inject private ResultConfigManager configManager;
  36. @Inject private IEventBroker eventBroker;
  37. public static String BASE_URL = "https://www.boardgamegeek.com/xmlapi2/";
  38. public static String USER = "user";
  39. public static String COLLECTION = "collection";
  40. public static String SEARCH = "search";
  41. public static String FAMILY = "family";
  42. public static String GEEKLIST = "geeklist";
  43. private static int RETRIES = 5;
  44. public ArrayList<Thing> getThings(SourceFilter source, Object id) {
  45. switch(source) {
  46. default:
  47. case BGG_USER:
  48. return getThingsForUser((String)id);
  49. case FAMILY:
  50. return getThingsForFamily((Integer)id);
  51. case GEEKLIST:
  52. return getThingsForGeeklist((Integer)id);
  53. }
  54. }
  55. /// retrieve a list of things from BGG with the given ids
  56. public ArrayList<Thing> getThings(Set<Integer> ids) {
  57. StringBuilder urlStr = new StringBuilder();
  58. urlStr.append(BASE_URL + "thing?id=");
  59. String sep = "";
  60. for (Integer integer : ids) {
  61. urlStr.append(sep + integer.toString());
  62. if(sep.isEmpty()) {
  63. sep = ",";
  64. }
  65. }
  66. return getThings(urlStr.toString());
  67. }
  68. public ArrayList<Thing> getThingsForUser(String user) throws IllegalArgumentException {
  69. ResultConfig resultConfig = configManager.getResultConfig();
  70. StringBuilder urlStr = new StringBuilder();
  71. urlStr.append(BASE_URL + COLLECTION
  72. + "?username=" + resultConfig.user
  73. + "&subtype=" + resultConfig.subtype.toApiString() + "&");
  74. if(resultConfig.subtype == Subtype.BOARDGAME) {
  75. urlStr.append("excludesubtype=" + Subtype.BGEXPANSION.toApiString() + "&");
  76. }
  77. Iterator<Entry<UserFlag, FilterFlagState>> ufIterator
  78. = resultConfig.userFlags.entrySet().iterator();
  79. try {
  80. while(ufIterator.hasNext()) {
  81. Entry<UserFlag, FilterFlagState> elem = ufIterator.next();
  82. String apiString = elem.getKey().toApiString();
  83. FilterFlagState state = elem.getValue();
  84. if(state == FilterFlagState.IS) {
  85. urlStr.append(URLEncoder.encode(apiString, "UTF-8"));
  86. urlStr.append("=1&");
  87. } else if (state == FilterFlagState.ISNOT) {
  88. urlStr.append(URLEncoder.encode(apiString, "UTF-8"));
  89. urlStr.append("=0&");
  90. }
  91. }
  92. }
  93. catch (UnsupportedEncodingException e) {
  94. e.printStackTrace();
  95. return null;
  96. }
  97. return getThings(urlStr.toString());
  98. }
  99. public ArrayList<Thing> getThingsForGeeklist(int geeklistId) throws IllegalArgumentException {
  100. ResultConfig resultConfig = configManager.getResultConfig();
  101. StringBuilder urlStr = new StringBuilder();
  102. urlStr.append(BASE_URL + GEEKLIST + "/" + String.valueOf(resultConfig.geeklistId));
  103. return getThings(urlStr.toString());
  104. }
  105. public ArrayList<Thing> getThingsForFamily(int familyId) throws IllegalArgumentException {
  106. ResultConfig resultConfig = configManager.getResultConfig();
  107. StringBuilder urlStr = new StringBuilder();
  108. urlStr.append(BASE_URL + FAMILY + "?id=" + String.valueOf(resultConfig.familyId));
  109. if(resultConfig.familyType != FamilyType.ALL) {
  110. urlStr.append("?type=" + resultConfig.familyType);
  111. }
  112. return getThings(urlStr.toString());
  113. }
  114. private ArrayList<Thing> getThings(String urlString) throws IllegalArgumentException {
  115. System.out.println("URL: " + urlString);
  116. try {
  117. int retry = 0;
  118. do {
  119. // send a GET request and check for ok...
  120. URL url = new URL(urlString);
  121. HttpURLConnection con = (HttpURLConnection) url.openConnection();
  122. con.setRequestMethod("GET");
  123. int status = con.getResponseCode();
  124. if(status == HttpURLConnection.HTTP_ACCEPTED) {
  125. Thread.sleep(2000);
  126. eventBroker.send(EventConstants.TOPIC_STATUS, "Waiting for server to prepare result...");
  127. }
  128. else if(status != HttpURLConnection.HTTP_OK) {
  129. eventBroker.send(EventConstants.TOPIC_STATUS, "Http Response: " + status);
  130. con.disconnect();
  131. return null;
  132. } else {
  133. // HTTP_OK, go on...
  134. BufferedReader in = new BufferedReader(
  135. new InputStreamReader(con.getInputStream()));
  136. String inputLine;
  137. StringBuffer content = new StringBuffer();
  138. while ((inputLine = in.readLine()) != null) {
  139. content.append(inputLine);
  140. }
  141. in.close();
  142. con.disconnect();
  143. // do something with the content
  144. System.out.println(content.toString());
  145. ArrayList<Thing> output = parseThingMetas(content.toString());
  146. output.sort((thing1, thing2) -> thing1.getMetaData().getName().compareTo(thing2.getMetaData().getName()));
  147. return output;
  148. }
  149. ++retry;
  150. } while (retry < RETRIES);
  151. }
  152. catch (MalformedURLException e) {
  153. eventBroker.send(EventConstants.TOPIC_STATUS, "[ERROR] Malformed URL: " + urlString);
  154. e.printStackTrace();
  155. } catch (IOException e) {
  156. eventBroker.send(EventConstants.TOPIC_STATUS, "[ERROR] Could not open connection for URL: " + urlString);
  157. e.printStackTrace();
  158. } catch (InterruptedException e) {
  159. // this will not happen, but we have to catch it anyways...
  160. e.printStackTrace();
  161. }
  162. return null;
  163. }
  164. private ArrayList<Thing> parseThingMetas(String content) throws IllegalArgumentException {
  165. ArrayList<Thing> things = new ArrayList<Thing>();
  166. DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
  167. try {
  168. DocumentBuilder builder = factory.newDocumentBuilder();
  169. InputSource is = new InputSource(new StringReader(content));
  170. is.setEncoding("UTF-8");
  171. Document doc = builder.parse(is);
  172. Element root = doc.getDocumentElement();
  173. checkForErrors(doc);
  174. // BGG XMLAPI2
  175. if(root.getTagName() == "items") {
  176. NodeList nList = doc.getElementsByTagName("item");
  177. for(int i = 0; i < nList.getLength(); i++) {
  178. Node nNode = nList.item(i);
  179. if (nNode.getNodeType() == Node.ELEMENT_NODE) {
  180. Element eElement = (Element) nNode;
  181. // thing when fetching by user
  182. if( eElement.hasAttribute("objecttype")
  183. && eElement.getAttribute("objecttype").equals("thing"))
  184. {
  185. Integer id = Integer.parseInt(eElement.getAttribute("objectid"));
  186. if(id != 0) {
  187. ThingMetaData tmd = new ThingMetaData(
  188. id,
  189. getValue(eElement, "name"),
  190. getValue(eElement, "image"),
  191. getValue(eElement, "thumbnail"),
  192. getValue(eElement, "comment"),
  193. Integer.parseInt(getValue(eElement, "numplays"))
  194. );
  195. Thing thing = new Thing(id, tmd);
  196. things.add(thing);
  197. }
  198. }
  199. // when fetching things by id, type is boardgame
  200. else if(eElement.hasAttribute("type") &&
  201. eElement.getAttribute("type").equals("boardgame"))
  202. {
  203. Integer id = Integer.parseInt(eElement.getAttribute("id"));
  204. if(id != 0) {
  205. String name = "";
  206. NodeList nameList = eElement.getElementsByTagName("name");
  207. for(int n = 0; n < nameList.getLength(); n++) {
  208. Node nameNode = nameList.item(n);
  209. if (nNode.getNodeType() == Node.ELEMENT_NODE) {
  210. Element nameElement = (Element) nameNode;
  211. if(nameElement.hasAttribute("type")
  212. && nameElement.getAttribute("type").equals("primary"))
  213. {
  214. name = nameElement.getAttribute("value");
  215. break;
  216. }
  217. }
  218. }
  219. ThingMetaData tmd = new ThingMetaData(
  220. id,
  221. name,
  222. getValue(eElement, "image"),
  223. getValue(eElement, "thumbnail"),
  224. getValue(eElement, "comment"),
  225. null
  226. );
  227. Thing thing = new Thing(id, tmd);
  228. things.add(thing);
  229. }
  230. }
  231. // family has "type"
  232. else if(eElement.hasAttribute("type")
  233. && eElement.getAttribute("type").equals("boardgamefamily"))
  234. {
  235. // get name and description
  236. StringBuilder fInfo = new StringBuilder();
  237. NodeList nListName = eElement.getElementsByTagName("name");
  238. if(nListName.getLength() > 0) {
  239. fInfo.append(nListName.item(0).getTextContent() + "\r\n");
  240. }
  241. NodeList nListDesc = doc.getElementsByTagName("description");
  242. if(nListDesc.getLength() > 0) {
  243. fInfo.append(nListDesc.item(0).getTextContent());
  244. }
  245. eventBroker.send(EventConstants.TOPIC_FAMILY_INFO, fInfo.toString());
  246. NodeList nLinks = eElement.getElementsByTagName("link");
  247. for(int l = 0; l < nLinks.getLength(); l++) {
  248. Node link = nLinks.item(l);
  249. if (link.getNodeType() == Node.ELEMENT_NODE) {
  250. Element eLink = (Element) link;
  251. Integer id = Integer.parseInt(eLink.getAttribute("id"));
  252. if(id != 0) {
  253. ThingMetaData tmd = new ThingMetaData(
  254. id,
  255. eLink.getAttribute("value"),
  256. "", "", "", null);
  257. Thing thing = new Thing(id, tmd);
  258. things.add(thing);
  259. }
  260. }
  261. }
  262. // because of our input, there shouldn't be more than one family in the result
  263. // but do not iterate over items just to make sure
  264. break;
  265. }
  266. }
  267. }
  268. }
  269. // for geeklist result
  270. else if(root.getTagName() == "geeklist") {
  271. StringBuilder gInfo = new StringBuilder();
  272. NodeList nListTitle = doc.getElementsByTagName("title");
  273. if(nListTitle.getLength() > 0) {
  274. gInfo.append(nListTitle.item(0).getTextContent() + "\r\n");
  275. }
  276. NodeList nListDesc = doc.getElementsByTagName("description");
  277. if(nListDesc.getLength() > 0) {
  278. gInfo.append(nListDesc.item(0).getTextContent());
  279. }
  280. eventBroker.send(EventConstants.TOPIC_GEEKLIST_INFO, gInfo.toString());
  281. NodeList nList = doc.getElementsByTagName("item");
  282. for(int i = 0; i < nList.getLength(); i++) {
  283. Node nNode = nList.item(i);
  284. if (nNode.getNodeType() == Node.ELEMENT_NODE) {
  285. Element eElement = (Element) nNode;
  286. Integer id = Integer.parseInt(eElement.getAttribute("objectid"));
  287. if(id != 0) {
  288. ThingMetaData tmd = new ThingMetaData(
  289. id,
  290. eElement.getAttribute("objectname"),
  291. "", "", "", null);
  292. Thing thing = new Thing(id, tmd);
  293. things.add(thing);
  294. }
  295. }
  296. }
  297. }
  298. return things;
  299. } catch (ParserConfigurationException e) {
  300. e.printStackTrace();
  301. } catch (SAXException e) {
  302. e.printStackTrace();
  303. } catch (IOException e) {
  304. e.printStackTrace();
  305. }
  306. return null;
  307. }
  308. private void checkForErrors(Document doc) throws IllegalArgumentException {
  309. NodeList nList = doc.getElementsByTagName("error");
  310. if(nList.getLength() > 0) {
  311. Element el = (Element)nList.item(0);
  312. String val = getValue(el, "message");
  313. if(val.equals("")) {
  314. val = el.getAttribute("message");
  315. }
  316. throw new IllegalArgumentException(val);
  317. }
  318. }
  319. private String getValue(Element eElement, String key) {
  320. Node node = eElement.getElementsByTagName(key).item(0);
  321. if(node == null) {
  322. return "";
  323. } else {
  324. return node.getTextContent();
  325. }
  326. }
  327. }