Download the PHP package kaspars/hunter without Composer
On this page you can find all versions of the php package kaspars/hunter. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download kaspars/hunter
More information about kaspars/hunter
Files in kaspars/hunter
Package hunter
Short Description Hunter is an easy to use uHunt wrapper to receive information from UVA servers.
License MIT
Homepage https://github.com/kasparsklavins/Hunter
Informations about the package hunter
Introduction
Hunter is an easy to use uHunt wrapper to receive information from UVa's online judge.
Hunter is licensed under the MIT License - see the LICENSE file for details.
Basic Usage
Installing
With Composer
The easiest and recommended method to install Hunter is via composer.
Use the following command to install with composer.
If you wish you can create the following composer.json file and run composer install to install it.
Direct Download
First of all, you really should use composer.. But if you insist, then just copy the content from src
folder into your project
Data Format
All data is returned as an associated array.
Problem format
id
Problem IDnumber
Problem numbertitle
Problem titledacu
Number of distinct accepted usersbestRuntime
Best runtime in milliseconds of an Accepted Submissionverdicts
An array given verdictsHunter\Status::NO_VERDICT
Number of No Verdict Given (can be ignored)Hunter\Status::SUBMISSION_ERROR
Number of Submission ErrorHunter\Status::CANT_BE_JUDGED
Number of Can't be JudgedHunter\Status::IN_QUEUE
Number of In QueueHunter\Status::COMPILATION_ERROR
Number of Compilation ErrorHunter\Status::RESTRICTED_FUNCTION
Number of Restricted FunctionHunter\Status::RUNTIME_ERROR
Number of Runtime ErrorHunter\Status::OUTPUT_LIMIT
Number of Output Limit ExceededHunter\Status::TIME_LIMIT
Number of Time Limit ExceededHunter\Status::MEMORY_LIMIT
Number of Memory Limit ExceededHunter\Status::WRONG_ANSWER
Number of Wrong AnswerHunter\Status::PRESENTATION_ERROR
Number of Presentation ErrorHunter\Status::ACCEPTED
Number of Accepted
limit
Problem runtime limit in millisecondsstatus
Problem StatusHunter\Status::UNAVAILABLE
UnavailableHunter\Status::Normal
NormalHunter\Status::SPECIAL_JUDGE
A special judging program is used.
rejudged
Last time (unix timestamp) the problem was rejudged,null
if never.
Submission format
id
Submission`s IDuser
User IDname
User's full nameusername
User`s usernameproblem
Problem's IDverdict
Given verdictHunter\Status::SUBMISSION_ERROR
Submission ErrorHunter\Status::CANT_BE_JUDGED
Can't be JudgedHunter\Status::IN_QUEUE
In QueueHunter\Status::COMPILATION_ERROR
Compilation ErrorHunter\Status::RESTRICTED_FUNCTION
Restricted FunctionHunter\Status::RUNTIME_ERROR
Runtime ErrorHunter\Status::OUTPUT_LIMIT
Output Limit ExceededHunter\Status::TIME_LIMIT
Time Limit ExceededHunter\Status::MEMORY_LIMIT
Memory Limit ExceededHunter\Status::WRONG_ANSWER
Wrong AnswerHunter\Status::PRESENTATION_ERROR
Presentation ErrorHunter\Status::ACCEPTED
Accepted
language
Language in which submission was writtenHunter\Language::ANSI_C
Ansi CHunter\Language::Java
JavaHunter\Language::CPLUSPLUS
C++Hunter\Language::PASCAL
PascalHunter\Language::CPLUSPLUS11
C++11Hunter\Language::PYTHON
Python
runtime
Runtime in millisecondsrank
Submission rank, compared to alltime
Submission unix timestamp
Ranklist format
id
User`s IDname
User`s nameusername
User`s usernamerank
User's rankaccepted
The number of accepted problemssubmissions
The number of submissionsactivity
Array of user's activityHunter\Activity::DAYS
Activity in the last 2 daysHunter\Activity::WEEK
Activity in the last 7 daysHunter\Activity::MONTH
Activity in the last 31 daysHunter\Activity::QUARTER
Activity in the last 3 monthsHunter\Activity::YEAR
Activity in the last year
API
getIdFromUsername(string $username)
Convert the given $username
to a UVa ID.
Returns either the id, or null
if not found
Examples
problems(void)
Returns an array of available UVa problems
problem(int $id, string $type = "id")
Retrieved data of a specific problem
problemSubmissions(array|int $problemIDS, int $start = 0, int $end = 2^31)
View submissions to specific problems on a given submission date range.
$start
and $end
are unix timestamps
problemRanklist(int $problemID, int $rank = 1, int $count = 100)
Returns submissions to a problem ranked from $rank to $rank + $count - 1.
userProblemRanklist(int $problemID, int $userID, int $above = 10, int $below = 10)
Returns nearby submissions (by runtime) for a particular user submission to a problem.
userSubmissions(int $userID, int $min = null)
Returns all of the submissions of a particular user.
if $min
is specified, only submissions with ID larger than $min
will be returned.
userLatestSubmissions(int $userID, int $count = 10)
Returns the last $count submissions of a particular user.
userProblemSubmissions(array|int $userIDs, array|int $problemIDs, int $min, string $type = "id")
Returns all the submissions of the users on specific problems.
Possible $type
values are id and num. This changes whether you pass problem id's or problem num's as the second argument.
userSolvedProblems(array|int $userIDs)
Get The Bit-Encoded-Problem IDs that Has Been Solved by Some Authors.
userRanklist(int $userID, int $above = 10, int $below = 10)
Returns the user's ranklist and their closest neighbors.
ranklist(int $rank = 1, int $count = 10)
Global ranklist, starteing from $rank
to $rank+$count
setSource(string $source)
Change the source of API data. The default is http://uhunt.felix-halim.net/api/, another valid source is http://icpcarchive.ecs.baylor.edu/uhunt/api/. But you can switch to any source that has the same data format.
getSource()
Returns the current used API source.