126 lines
2.9 KiB
Dart
126 lines
2.9 KiB
Dart
|
import 'package:funkblubber/funkentity.dart';
|
||
|
import 'package:funkblubber/console.dart' as console;
|
||
|
import 'package:funkblubber/parsing/parsing_stage.dart';
|
||
|
|
||
|
enum Action {
|
||
|
download,
|
||
|
upload,
|
||
|
}
|
||
|
|
||
|
class StageResult {
|
||
|
StageResult({required this.result, required this.stage});
|
||
|
final ParseResult result;
|
||
|
final ParsingStage stage;
|
||
|
}
|
||
|
|
||
|
class ParseResult {
|
||
|
ParseResult({
|
||
|
required this.success,
|
||
|
required this.action,
|
||
|
this.object,
|
||
|
this.localPath,
|
||
|
});
|
||
|
|
||
|
final FunkObject? object;
|
||
|
final String? localPath;
|
||
|
final Action action;
|
||
|
final bool success;
|
||
|
}
|
||
|
|
||
|
ParseResult extract(final List<String> args) {
|
||
|
ParseResult result = ParseResult(
|
||
|
success: false,
|
||
|
action: Action.download,
|
||
|
);
|
||
|
|
||
|
if (args.isEmpty) {
|
||
|
console.error('no arguments provided');
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
ParsingStage currentStage = ParsingStage.nothing;
|
||
|
|
||
|
for (final String arg in args) {
|
||
|
switch (currentStage) {
|
||
|
case ParsingStage.nothing:
|
||
|
final stageResult = _onNothingStage(arg, result, currentStage);
|
||
|
currentStage = stageResult.stage;
|
||
|
result = stageResult.result;
|
||
|
break;
|
||
|
default:
|
||
|
console.error('not implemented yet');
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
StageResult _onNothingStage(
|
||
|
final String arg,
|
||
|
final ParseResult previousResult,
|
||
|
final ParsingStage previousStage,
|
||
|
) {
|
||
|
ParsingStage currentStage = previousStage;
|
||
|
ParseResult result = previousResult;
|
||
|
switch (arg) {
|
||
|
case '-A':
|
||
|
case '--artist':
|
||
|
currentStage = ParsingStage.artist;
|
||
|
break;
|
||
|
case '-a':
|
||
|
case '--album':
|
||
|
currentStage = ParsingStage.album;
|
||
|
break;
|
||
|
case '-u':
|
||
|
case '--upload':
|
||
|
currentStage = ParsingStage.upload;
|
||
|
break;
|
||
|
case '-p':
|
||
|
case '--path':
|
||
|
currentStage = ParsingStage.path;
|
||
|
break;
|
||
|
default:
|
||
|
try {
|
||
|
final Uri uri = Uri.parse(arg);
|
||
|
|
||
|
final segments = uri.pathSegments;
|
||
|
for (int i = 0; i < segments.length; ++i) {
|
||
|
switch (segments[i]) {
|
||
|
case 'artists':
|
||
|
result = ParseResult(
|
||
|
action: Action.download,
|
||
|
success: true,
|
||
|
object: FunkObject(
|
||
|
kind: FunkEntity.artist,
|
||
|
id: segments[i + 1],
|
||
|
domain: uri.host,
|
||
|
),
|
||
|
);
|
||
|
++i;
|
||
|
break;
|
||
|
|
||
|
case 'albums':
|
||
|
result = ParseResult(
|
||
|
action: Action.download,
|
||
|
success: true,
|
||
|
object: FunkObject(
|
||
|
kind: FunkEntity.album,
|
||
|
id: segments[i + 1],
|
||
|
domain: uri.host,
|
||
|
),
|
||
|
);
|
||
|
++i;
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
} catch (e) {
|
||
|
console.error(e.toString());
|
||
|
currentStage = ParsingStage.nothing;
|
||
|
}
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
return StageResult(result: result, stage: currentStage);
|
||
|
}
|