import java.util.Set;
import org.hedgecode.chess.scanner.entity.PGNGame;
+import org.hedgecode.chess.scanner.portal.Chess24Scanner;
import org.hedgecode.chess.scanner.portal.ChessBombScanner;
+import org.hedgecode.chess.scanner.portal.ChessComScanner;
import org.hedgecode.chess.scanner.portal.ChessGamesScanner;
import org.hedgecode.chess.scanner.portal.LiChessScanner;
put( ScannerType.CHESSGAMES, new ChessGamesScanner() );
put( ScannerType.LICHESS, new LiChessScanner() );
put( ScannerType.CHESSBOMB, new ChessBombScanner() );
+ put( ScannerType.CHESS24, new Chess24Scanner() );
+ put( ScannerType.CHESSCOM, new ChessComScanner() );
}
};
--- /dev/null
+/*
+ * Copyright (c) 2019-2020. Developed by Hedgecode.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.hedgecode.chess.scanner.portal;
+
+import org.hedgecode.chess.scanner.ChessHogScannerException;
+import org.hedgecode.chess.scanner.Scanner;
+import org.hedgecode.chess.scanner.entity.PGNGame;
+import org.hedgecode.chess.scanner.entity.PGNTournament;
+
+/**
+ * Chess24Scanner
+ *
+ * @author Dmitry Samoshin aka gotty
+ */
+public class Chess24Scanner extends AbstractSettingsScanner implements Scanner {
+
+ private static final String SETTINGS_FILENAME = "chess24.settings";
+
+ @Override
+ protected String getResourceName() {
+ return SETTINGS_FILENAME;
+ }
+
+ @Override
+ public PGNTournament scanTournament(String tournamentId) throws ChessHogScannerException {
+ throw new ChessHogScannerException(
+ "The scanner functional of portal chess24.com is under development!"
+ );
+ }
+
+ @Override
+ public PGNTournament findTournament(String tournamentName) throws ChessHogScannerException {
+ throw new ChessHogScannerException(
+ "The scanner functional of portal chess24.com is under development!"
+ );
+ }
+
+ @Override
+ public PGNGame scanGame(String gameId) throws ChessHogScannerException {
+ return scanGame(gameId, null);
+ }
+
+ @Override
+ public PGNGame scanGame(String gameId, String tournamentId) throws ChessHogScannerException {
+ throw new ChessHogScannerException(
+ "The scanner functional of portal chess24.com is under development!"
+ );
+ }
+
+ @Override
+ public PGNGame scanUrl(String gameUrl) throws ChessHogScannerException {
+ throw new ChessHogScannerException(
+ "The scanner functional of portal chess24.com is under development!"
+ );
+ }
+
+}
import java.util.Base64;
import org.hedgecode.chess.scanner.ChessHogScannerException;
+import org.hedgecode.chess.scanner.Scanner;
import org.hedgecode.chess.scanner.entity.PGNGame;
import org.hedgecode.chess.scanner.entity.PGNTournament;
import org.hedgecode.chess.scanner.format.chessbomb.ArenaFormat;
*
* @author Dmitry Samoshin aka gotty
*/
-public class ChessBombScanner extends AbstractSettingsScanner {
+public class ChessBombScanner extends AbstractSettingsScanner implements Scanner {
private static final String SETTINGS_FILENAME = "chessbomb.settings";
--- /dev/null
+/*
+ * Copyright (c) 2019-2020. Developed by Hedgecode.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.hedgecode.chess.scanner.portal;
+
+import org.hedgecode.chess.scanner.ChessHogScannerException;
+import org.hedgecode.chess.scanner.Scanner;
+import org.hedgecode.chess.scanner.entity.PGNGame;
+import org.hedgecode.chess.scanner.entity.PGNTournament;
+
+/**
+ * ChessComScanner
+ *
+ * @author Dmitry Samoshin aka gotty
+ */
+public class ChessComScanner extends AbstractSettingsScanner implements Scanner {
+
+ private static final String SETTINGS_FILENAME = "chesscom.settings";
+
+ @Override
+ protected String getResourceName() {
+ return SETTINGS_FILENAME;
+ }
+
+ @Override
+ public PGNTournament scanTournament(String tournamentId) throws ChessHogScannerException {
+ throw new ChessHogScannerException(
+ "The scanner functional of portal chess.com is under development!"
+ );
+ }
+
+ @Override
+ public PGNTournament findTournament(String tournamentName) throws ChessHogScannerException {
+ throw new ChessHogScannerException(
+ "The scanner functional of portal chess.com is under development!"
+ );
+ }
+
+ @Override
+ public PGNGame scanGame(String gameId) throws ChessHogScannerException {
+ return scanGame(gameId, null);
+ }
+
+ @Override
+ public PGNGame scanGame(String gameId, String tournamentId) throws ChessHogScannerException {
+ throw new ChessHogScannerException(
+ "The scanner functional of portal chess.com is under development!"
+ );
+ }
+
+ @Override
+ public PGNGame scanUrl(String gameUrl) throws ChessHogScannerException {
+ throw new ChessHogScannerException(
+ "The scanner functional of portal chess.com is under development!"
+ );
+ }
+
+}
import java.util.Map;
import org.hedgecode.chess.scanner.ChessHogScannerException;
+import org.hedgecode.chess.scanner.Scanner;
import org.hedgecode.chess.scanner.entity.PGNGame;
import org.hedgecode.chess.scanner.entity.PGNTournament;
*
* @author Dmitry Samoshin aka gotty
*/
-public class ChessGamesScanner extends AbstractSettingsScanner {
+public class ChessGamesScanner extends AbstractSettingsScanner implements Scanner {
private static final String SETTINGS_FILENAME = "chessgames.settings";
import org.apache.commons.text.StringEscapeUtils;
import org.hedgecode.chess.scanner.ChessHogScannerException;
+import org.hedgecode.chess.scanner.Scanner;
import org.hedgecode.chess.scanner.entity.PGNGame;
import org.hedgecode.chess.scanner.entity.PGNTournament;
import org.hedgecode.chess.scanner.format.lichess.Format;
*
* @author Dmitry Samoshin aka gotty
*/
-public class LiChessScanner extends AbstractSettingsScanner {
+public class LiChessScanner extends AbstractSettingsScanner implements Scanner {
private static final String SETTINGS_FILENAME = "lichess.settings";
--- /dev/null
+{
+}
\ No newline at end of file
--- /dev/null
+{
+}
\ No newline at end of file