Search in sources :

Example 6 with Element

use of org.adempiere.pipo2.Element in project wpcleaner by WPCleaner.

the class ApiXmlRedirectsResult method executeRedirects.

/**
 * Execute redirects request.
 *
 * @param properties Properties defining request.
 * @param page Page.
 * @param list List to be filled with redirects to the page.
 * @return True if request should be continued.
 * @throws APIException Exception thrown by the API.
 */
@Override
public boolean executeRedirects(Map<String, String> properties, Page page, List<Page> list) throws APIException {
    try {
        Element root = getRoot(properties, ApiRequest.MAX_ATTEMPTS);
        // Retrieve redirects
        XPathExpression<Element> xpa = XPathFactory.instance().compile("/api/query/pages/page/redirects/rd", Filters.element());
        List<Element> listRedirects = xpa.evaluate(root);
        Iterator<Element> itRedirects = listRedirects.iterator();
        while (itRedirects.hasNext()) {
            Element currentRedirect = itRedirects.next();
            Page link = DataManager.getPage(getWiki(), currentRedirect.getAttributeValue("title"), null, null, null);
            link.setNamespace(currentRedirect.getAttributeValue("ns"));
            link.setPageId(currentRedirect.getAttributeValue("pageid"));
            // TODO: Check if fragment is available
            link.getRedirects().add(page, null);
            if (!list.contains(link)) {
                list.add(link);
            }
        }
        // Retrieve continue
        return shouldContinue(root, "/api/query-continue/redirects", properties);
    } catch (JDOMException e) {
        log.error("Error loading redirects", e);
        throw new APIException("Error parsing XML", e);
    }
}
Also used : APIException(org.wikipediacleaner.api.APIException) Element(org.jdom2.Element) Page(org.wikipediacleaner.api.data.Page) JDOMException(org.jdom2.JDOMException)

Example 7 with Element

use of org.adempiere.pipo2.Element in project wpcleaner by WPCleaner.

the class ApiXmlRevisionsResult method executeLastRevision.

/**
 * Execute last revision request.
 *
 * @param properties Properties defining request.
 * @param pages Pages to be filled with last revision content.
 * @return True if request should be continued.
 * @throws APIException Exception thrown by the API.
 */
@Override
public boolean executeLastRevision(Map<String, String> properties, Collection<Page> pages) throws APIException {
    try {
        Element root = getRoot(properties, ApiRequest.MAX_ATTEMPTS);
        // Manage redirects and missing pages
        updateRedirect(root, pages);
        // Retrieving normalization information
        Map<String, String> normalization = new HashMap<>();
        retrieveNormalization(root, normalization);
        // Retrieve current timestamp
        Optional<String> currentTimestamp = getCurrentTimestamp(root);
        // Retrieve pages
        XPathExpression<Element> xpa = XPathFactory.instance().compile("/api/query/pages/page", Filters.element());
        List<Element> results = xpa.evaluate(root);
        Iterator<Element> iter = results.iterator();
        while (iter.hasNext()) {
            Element pageNode = iter.next();
            String title = pageNode.getAttributeValue("title");
            Integer pageId = null;
            try {
                String pageIdValue = pageNode.getAttributeValue("pageid");
                if (pageIdValue != null) {
                    pageId = Integer.valueOf(pageIdValue);
                }
            } catch (NumberFormatException e) {
                System.err.println("Incorrect page id");
            }
            String namespace = pageNode.getAttributeValue("ns");
            for (Page tmpPage : pages) {
                Iterator<Page> itPage = tmpPage.getRedirects().getIteratorWithPage();
                while (itPage.hasNext()) {
                    Page page = itPage.next();
                    boolean samePage = false;
                    if ((pageId != null) && (page.getPageId() != null)) {
                        samePage = pageId.equals(page.getPageId());
                    } else {
                        samePage = Page.areSameTitle(page.getTitle(), title);
                        if (!samePage) {
                            String normalizedTitle = getNormalizedTitle(page.getTitle(), normalization);
                            samePage = Page.areSameTitle(normalizedTitle, title);
                        }
                    }
                    if (samePage) {
                        page.setNamespace(namespace);
                        currentTimestamp.ifPresent(timestamp -> page.setStartTimestamp(timestamp));
                        updatePageInformation(pageNode, page);
                        // Retrieve revisions
                        if (!Boolean.FALSE.equals(page.isExisting())) {
                            XPathExpression<Element> xpaRevisions = XPathFactory.instance().compile("revisions/rev", Filters.element());
                            Element revNode = xpaRevisions.evaluateFirst(pageNode);
                            if (revNode != null) {
                                XPathExpression<Element> xpaSlots = XPathFactory.instance().compile("slots/slot", Filters.element());
                                Element slotNode = xpaSlots.evaluateFirst(revNode);
                                if (slotNode != null) {
                                    page.setContents(slotNode.getText());
                                    page.setExisting(Boolean.TRUE);
                                    page.setRevisionId(revNode.getAttributeValue("revid"));
                                    page.setContentsTimestamp(revNode.getAttributeValue("timestamp"));
                                }
                            }
                        }
                    }
                }
            }
        }
        // Retrieve continue
        return shouldContinue(root, "/api/query-continue/revisions", properties);
    } catch (JDOMException e) {
        log.error("Error loading revisions", e);
        throw new APIException("Error parsing XML", e);
    }
}
Also used : HashMap(java.util.HashMap) Element(org.jdom2.Element) Page(org.wikipediacleaner.api.data.Page) JDOMException(org.jdom2.JDOMException) APIException(org.wikipediacleaner.api.APIException)

Example 8 with Element

use of org.adempiere.pipo2.Element in project wpcleaner by WPCleaner.

the class ApiXmlAbuseFiltersResult method executeAbuseFilters.

/**
 * Execute abuse filters request.
 *
 * @param properties Properties defining request.
 * @param list List to be filled with abuse filters.
 * @return True if request should be continued.
 * @throws APIException Exception thrown by the API.
 */
@Override
public boolean executeAbuseFilters(Map<String, String> properties, List<AbuseFilter> list) throws APIException {
    try {
        Element root = getRoot(properties, ApiRequest.MAX_ATTEMPTS);
        // Retrieve category members
        XPathExpression<Element> xpa = XPathFactory.instance().compile("/api/query/abusefilters/filter", Filters.element());
        List<Element> results = xpa.evaluate(root);
        Iterator<Element> iter = results.iterator();
        while (iter.hasNext()) {
            Element currentNode = iter.next();
            Integer id = Integer.valueOf(0);
            try {
                String tmp = currentNode.getAttributeValue("id");
                if (tmp != null) {
                    id = Integer.parseInt(tmp);
                }
            } catch (NumberFormatException e) {
            // 
            }
            String description = currentNode.getAttributeValue("description");
            AbuseFilter filter = new AbuseFilter(id, description);
            filter.setDeleted(currentNode.getAttribute("deleted") != null);
            filter.setEnabled(currentNode.getAttribute("enabled") != null);
            list.add(filter);
        }
        // Retrieve continue
        return shouldContinue(root, "/api/query-continue/abusefilters", properties);
    } catch (JDOMException e) {
        log.error("Error loading abuse filters list", e);
        throw new APIException("Error parsing XML", e);
    }
}
Also used : AbuseFilter(org.wikipediacleaner.api.data.AbuseFilter) APIException(org.wikipediacleaner.api.APIException) Element(org.jdom2.Element) JDOMException(org.jdom2.JDOMException)

Example 9 with Element

use of org.adempiere.pipo2.Element in project wpcleaner by WPCleaner.

the class ApiXmlBacklinksResult method executeBacklinks.

/**
 * Execute back links request.
 *
 * @param properties Properties defining request.
 * @param page Page.
 * @param list List of pages to be filled with the back links.
 * @return True if request should be continued.
 * @throws APIException Exception thrown by the API.
 */
@Override
public boolean executeBacklinks(Map<String, String> properties, Page page, List<Page> list) throws APIException {
    try {
        Element root = getRoot(properties, ApiRequest.MAX_ATTEMPTS);
        // Retrieve back links
        XPathExpression<Element> xpa = XPathFactory.instance().compile("/api/query/backlinks/bl", Filters.element());
        List<Element> listBacklinks = xpa.evaluate(root);
        Iterator<Element> itBacklink = listBacklinks.iterator();
        XPathExpression<Element> xpaRedirLinks = XPathFactory.instance().compile("redirlinks/bl", Filters.element());
        while (itBacklink.hasNext()) {
            Element currentBacklink = itBacklink.next();
            Page link = DataManager.getPage(getWiki(), currentBacklink.getAttributeValue("title"), null, null, null);
            link.setNamespace(currentBacklink.getAttributeValue("ns"));
            link.setPageId(currentBacklink.getAttributeValue("pageid"));
            if (currentBacklink.getAttribute("redirect") != null) {
                // TODO: Check if fragment is available
                link.getRedirects().add(page, null);
            }
            if (!list.contains(link)) {
                list.add(link);
            }
            // Links through redirects
            List<Element> listRedirLinks = xpaRedirLinks.evaluate(currentBacklink);
            if (listRedirLinks != null) {
                List<Page> linkList = new ArrayList<>();
                Iterator<Element> itRedirLink = listRedirLinks.iterator();
                while (itRedirLink.hasNext()) {
                    currentBacklink = itRedirLink.next();
                    Page link2 = DataManager.getPage(getWiki(), currentBacklink.getAttributeValue("title"), null, null, null);
                    link2.setNamespace(currentBacklink.getAttributeValue("ns"));
                    link2.setPageId(currentBacklink.getAttributeValue("pageid"));
                    if (!list.contains(link2)) {
                        list.add(link2);
                    }
                    if (!linkList.contains(link2)) {
                        linkList.add(link2);
                    }
                }
                link.setRelatedPages(Page.RelatedPages.BACKLINKS, linkList);
            }
        }
        // Retrieve continue
        return shouldContinue(root, "/api/query-continue/backlinks", properties);
    } catch (JDOMException e) {
        log.error("Error loading back links", e);
        throw new APIException("Error parsing XML", e);
    }
}
Also used : APIException(org.wikipediacleaner.api.APIException) Element(org.jdom2.Element) ArrayList(java.util.ArrayList) Page(org.wikipediacleaner.api.data.Page) JDOMException(org.jdom2.JDOMException)

Example 10 with Element

use of org.adempiere.pipo2.Element in project wpcleaner by WPCleaner.

the class ApiXmlCategoryMembersResult method executeCategoryMembers.

/**
 * Execute category members request.
 *
 * @param properties Properties defining request.
 * @param list List to be filled with category members.
 * @param categories Map of categories to be analyzed with their depth.
 * @param depth Current depth of the analysis.
 * @return True if request should be continued.
 * @throws APIException Exception thrown by the API.
 */
@Override
public boolean executeCategoryMembers(Map<String, String> properties, List<Page> list, Map<Page, Integer> categories, int depth) throws APIException {
    try {
        Element root = getRoot(properties, ApiRequest.MAX_ATTEMPTS);
        // Retrieve category members
        XPathExpression<Element> xpa = XPathFactory.instance().compile("/api/query/categorymembers/cm", Filters.element());
        List<Element> results = xpa.evaluate(root);
        Iterator<Element> iter = results.iterator();
        while (iter.hasNext()) {
            Element currentNode = iter.next();
            Page page = DataManager.getPage(getWiki(), currentNode.getAttributeValue("title"), null, null, null);
            page.setNamespace(currentNode.getAttributeValue("ns"));
            page.setPageId(currentNode.getAttributeValue("pageid"));
            if ((page.getNamespace() != null) && (page.getNamespace().intValue() == Namespace.CATEGORY)) {
                categories.put(page, depth + 1);
            } else {
                if (!list.contains(page)) {
                    list.add(page);
                }
            }
        }
        // Retrieve continue
        return shouldContinue(root, "/api/query-continue/categorymembers", properties);
    } catch (JDOMException e) {
        log.error("Error loading category members list", e);
        throw new APIException("Error parsing XML", e);
    }
}
Also used : APIException(org.wikipediacleaner.api.APIException) Element(org.jdom2.Element) Page(org.wikipediacleaner.api.data.Page) JDOMException(org.jdom2.JDOMException)

Aggregations

Element (org.jdom2.Element)3601 Document (org.jdom2.Document)589 Test (org.junit.Test)469 ArrayList (java.util.ArrayList)376 IOException (java.io.IOException)317 JDOMException (org.jdom2.JDOMException)230 Attribute (org.jdom2.Attribute)217 SAXBuilder (org.jdom2.input.SAXBuilder)169 Namespace (org.jdom2.Namespace)157 List (java.util.List)148 Element (org.osate.aadl2.Element)143 File (java.io.File)140 XMLOutputter (org.jdom2.output.XMLOutputter)136 Test (org.junit.jupiter.api.Test)134 HashMap (java.util.HashMap)132 XConfiguration (org.apache.oozie.util.XConfiguration)98 Configuration (org.apache.hadoop.conf.Configuration)96 StringReader (java.io.StringReader)85 NamedElement (org.osate.aadl2.NamedElement)77 Iterator (java.util.Iterator)72