[LIB-2] Add snooker-score-api source files
[snooker-score-api.git] / src / main / java / org / hedgecode / snooker / request / RankingRequester.java
1 /*
2  * Copyright (c) 2017. Developed by Hedgecode.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.hedgecode.snooker.request;
18
19 /**
20  * Requester of Player Money Rankings.
21  *
22  * @author Dmitry Samoshin aka gotty
23  */
24 public class RankingRequester extends AbstractRequester {
25
26     private static final String RANKING_URL =
27             API_SNOOKER_URL + "?rt=[RankingType]&s=[Season]";
28
29     private static final Requester _instance = new RankingRequester();
30
31     private RankingRequester() {
32     }
33
34     public static Requester getInstance() {
35         return _instance;
36     }
37
38     @Override
39     protected String getRequestUrl(int id) throws RequestException {
40         throw new RequestException(RANKING_URL, "Incorrect Ranking Params");
41     }
42
43     @Override
44     protected String getRequestUrl(RequestParams params) throws RequestException {
45         if (params == null
46                 || params.getRankingType() == null
47                 || params.getSeason() == null)
48             throw new RequestException(RANKING_URL, "Incorrect Ranking Params");
49
50         return RANKING_URL.replace(
51                 "[RankingType]", params.getRankingType().name()
52         ).replace(
53                 "[Season]", String.valueOf(params.getSeason().getYear())
54         );
55     }
56
57 }