summaryrefslogtreecommitdiff
path: root/src/mining
AgeCommit message (Collapse)AuthorFilesLines
2014-05-22Added the Search interface.Maurice Laveaux1-0/+49
2014-05-22Changed Request response to a new Response class.Maurice Laveaux1-2/+3
* Response contains the JsonElement, tickrate, reset and leftover data. * Removed getJsonRelaxed, because it was not used elsewhere.
2014-05-01Add command to print active keywordsPeter Wu1-0/+10
2014-05-01Get rid of unused and broken poll functionPeter Wu1-5/+0
2014-05-01[WIP] Initial hacky TweetShellPeter Wu1-0/+5
In TESTING! DefaultOAuthConsumer does not play nice with POST requests... need to fix that somehow.
2014-04-30TwitterApi: retry asking for PIN if missingPeter Wu1-2/+22
Also provide access to requester for stream thingey.
2014-04-30[WIP] Stream processorPeter Wu2-18/+6
2014-04-30Stream interfacePeter Wu2-34/+21
2014-04-30Move classes not related to mining to io packagePeter Wu5-399/+3
2014-04-28First commit for all classes that require implementation for streaming.Maurice Laveaux3-4/+67
* TODO: implement OAuthStream and StreamCommand.
2014-04-25Assert that auth tokens are validPeter Wu1-0/+2
2014-04-25Merged and resolved conflicts.Maurice Laveaux3-9/+143
* No functionality of Command is currently used.
2014-04-24Removed unused classes.Maurice Laveaux3-348/+0
* MainFrame, no gui will be implemented. * Authentication and Search are replaced. * Miner is not used.
2014-04-24Actually save config.txt, ignore it for gitPeter Wu1-0/+1
2014-04-24Fix builder, fix crash on invalid URL, fix ".json" placementPeter Wu2-5/+24
2014-04-24TwitterAPI: helper for accessing the TwitterAPIPeter Wu1-0/+93
2014-04-24Implement isValid, allow version spec for resourcePeter Wu4-4/+28
2014-04-24Really do not require ".json" extension for API resourcesPeter Wu2-2/+2
Confirm to Requester.getJSON() doc.
2014-04-24Extend Requester interface with a way to ignore errorsPeter Wu2-2/+30
2014-04-24Refactor consumer key/secret pair into containerPeter Wu1-14/+5
2014-04-23Catch error responses and log themPeter Wu2-3/+30
2014-04-23Unbreak BearerRequester, add javadoc, fix oauth URLsPeter Wu2-2/+37
2014-04-23[WIP] API requester abstractionPeter Wu4-0/+202
Authentication, etc. is shuffled into Requester. Implementators (currently OAuth and Bearer) should prepare proper requests.
2014-04-23Some small bugfixes for the initial program.Maurice Laveaux1-3/+2
* Set main.Main as main class. * Fixed a little typo in Authentication. * added throws IOException to main.
2014-04-23Implemented Authorization with twitter.Maurice Laveaux4-0/+358
Started working on getProfile for a given username.