Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added POST capabilities #419

Open
wants to merge 20 commits into
base: master
Choose a base branch
from
Open

Conversation

dgoiko
Copy link

@dgoiko dgoiko commented Nov 14, 2019

Support for POST requests by using isPost() method in WebURL.

This commit allows users to add WebURLs and mark them as POST URLs. Current parsers do not get PostURLs, however, users can add their custom post URLs either as seeds or using the visit() method.

It is based on the authentication methods already provided by Crawler4j.

May need improvement in DocIDServer because it is using an encoded version of the URL with all the POST data. Encoding / decoding of WebURLs to string for DBs could also be improved (maybe using a hash?)

Modifications

  • WebURLs have a post flag and can store post parameters as BasicNameValuePair (inspired in post form auth)
  • WebURLTupleBinding can serialize/deserialize the new WebURL.
  • PageFetcher can now create POST request.
  • PageFetchResult can hold now a complete WebURL.
  • DocIDServer uses an encoded version of the URL which contains the post data. It allows you to visit the same URL multiple times if the post parameters are different.
  • You can add WebURLs directly as seeds. Depth will be reset to zero and POST parameters will be taken into consideration.
  • Some minor internal deprecation suggestions, given the new features. They'll only affect custom complex overriden crawlers.
  • Everything is still backwards compatible.

I don't know gradle, so I'm not sure why this is giving compile errors on travis, but it seems that there's a problem in the config or in the master, rather than in my commit. Could someone please take a look?

Added POST to WebURL and PageFetcher. Included support for the new WebURL attributes in WebURLTupleBinding.

I've suggested to deprecate newHttpUriRequest(String) in PageFetcher because it does not allow to pass post parameters.
DocIDServer is now aware of POST data and allows to visit the same URL if POST parameters are different. (Filling a form with different years, for instance).

Suggested to deprecate getDocId, getNewDocID, addUrlAndDocId and isSeenBefore since they don't allow to pass post parameters.

WebURL has the ability to encode itself into a single unique string.

NOTE: This serialization SHOULD be improved.
The WebCrawler now passes the WebURL to the DocIDServer instead of passing a String URL.

We assume GET on redirections. I'm not 100% sure if this is allways true.

The case !curURL.getURL().equals(fetchResult.getFetchedUrl()) is still using old methods. Should be reviewed
Added addSeenUrl(WebURL) and addSeed(WebURL)  methods to CrawlController. Did not touch original methods, although I'd suggest to make them create WebURLs and pass them to the new methods.
addSeed and addSeenUrl now will create a WebURL and pass it to the newly created methods. It will make it easier for the user to override those methods.
Suggedted to deprecate old fetchedUrl attribute and introduced fetchedWebUrl, which is a WebURL.

Some tab style fixes.
There was a loop.

Some style fixes.
@dgoiko dgoiko changed the title Post capabilities POST capabilities Nov 14, 2019
@dgoiko dgoiko changed the title POST capabilities Added POST capabilities Nov 14, 2019
@dgoiko
Copy link
Author

dgoiko commented Nov 14, 2019

I dont know why the building process failed. I did not touch any of the gradle files, as you can see, there are only some minor modifications in classes...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant