2020-03-15 11:27:51 +01:00
|
|
|
import 'dart:async';
|
2021-04-30 17:22:29 +02:00
|
|
|
import 'dart:io';
|
2020-03-15 11:27:51 +01:00
|
|
|
|
|
|
|
import 'package:flutter/material.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
|
2021-02-13 13:27:44 +01:00
|
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
2022-03-13 07:54:44 +01:00
|
|
|
import 'package:just_audio/just_audio.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
import 'package:matrix/matrix.dart';
|
|
|
|
import 'package:path_provider/path_provider.dart';
|
|
|
|
|
2022-01-28 18:41:24 +01:00
|
|
|
import 'package:fluffychat/utils/localized_exception_extension.dart';
|
2021-10-26 18:50:34 +02:00
|
|
|
import 'package:fluffychat/utils/sentry_controller.dart';
|
2021-11-09 21:32:16 +01:00
|
|
|
import '../../../utils/matrix_sdk_extensions.dart/event_extension.dart';
|
2020-03-15 11:27:51 +01:00
|
|
|
|
2021-04-30 17:22:29 +02:00
|
|
|
class AudioPlayerWidget extends StatefulWidget {
|
2020-03-15 11:27:51 +01:00
|
|
|
final Color color;
|
2020-03-29 20:13:25 +02:00
|
|
|
final Event event;
|
2020-03-15 11:27:51 +01:00
|
|
|
|
2022-01-01 14:17:31 +01:00
|
|
|
static String? currentId;
|
2020-03-15 14:15:45 +01:00
|
|
|
|
2022-01-01 22:08:19 +01:00
|
|
|
static const int wavesCount = 40;
|
|
|
|
|
2022-01-01 14:17:31 +01:00
|
|
|
const AudioPlayerWidget(this.event, {this.color = Colors.black, Key? key})
|
2020-03-15 11:27:51 +01:00
|
|
|
: super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
_AudioPlayerState createState() => _AudioPlayerState();
|
|
|
|
}
|
|
|
|
|
2021-04-14 10:37:15 +02:00
|
|
|
enum AudioPlayerStatus { notDownloaded, downloading, downloaded }
|
2020-03-15 11:27:51 +01:00
|
|
|
|
2021-04-30 17:22:29 +02:00
|
|
|
class _AudioPlayerState extends State<AudioPlayerWidget> {
|
2021-04-14 10:37:15 +02:00
|
|
|
AudioPlayerStatus status = AudioPlayerStatus.notDownloaded;
|
2021-04-30 17:22:29 +02:00
|
|
|
final AudioPlayer audioPlayer = AudioPlayer();
|
2020-03-15 11:27:51 +01:00
|
|
|
|
2022-01-01 14:17:31 +01:00
|
|
|
StreamSubscription? onAudioPositionChanged;
|
|
|
|
StreamSubscription? onDurationChanged;
|
|
|
|
StreamSubscription? onPlayerStateChanged;
|
|
|
|
StreamSubscription? onPlayerError;
|
2020-03-15 11:27:51 +01:00
|
|
|
|
2022-01-01 14:17:31 +01:00
|
|
|
String? statusText;
|
|
|
|
int currentPosition = 0;
|
2020-03-15 11:27:51 +01:00
|
|
|
double maxPosition = 0;
|
|
|
|
|
2022-01-01 14:17:31 +01:00
|
|
|
File? audioFile;
|
2021-04-30 17:22:29 +02:00
|
|
|
|
2020-03-15 11:27:51 +01:00
|
|
|
@override
|
|
|
|
void dispose() {
|
2022-03-13 07:54:44 +01:00
|
|
|
if (audioPlayer.playerState.playing) {
|
2021-04-30 17:22:29 +02:00
|
|
|
audioPlayer.stop();
|
2021-01-23 11:17:34 +01:00
|
|
|
}
|
2021-04-30 17:22:29 +02:00
|
|
|
onAudioPositionChanged?.cancel();
|
|
|
|
onDurationChanged?.cancel();
|
|
|
|
onPlayerStateChanged?.cancel();
|
|
|
|
onPlayerError?.cancel();
|
|
|
|
|
2020-03-15 11:27:51 +01:00
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
|
2020-05-13 15:58:59 +02:00
|
|
|
Future<void> _downloadAction() async {
|
2021-04-14 10:37:15 +02:00
|
|
|
if (status != AudioPlayerStatus.notDownloaded) return;
|
|
|
|
setState(() => status = AudioPlayerStatus.downloading);
|
2020-12-25 09:58:34 +01:00
|
|
|
try {
|
|
|
|
final matrixFile =
|
|
|
|
await widget.event.downloadAndDecryptAttachmentCached();
|
2022-01-01 14:17:31 +01:00
|
|
|
if (matrixFile == null) throw ('Download failed');
|
2021-04-30 17:22:29 +02:00
|
|
|
final tempDir = await getTemporaryDirectory();
|
2022-01-28 20:43:59 +01:00
|
|
|
final fileName = Uri.encodeComponent(
|
2022-01-29 08:04:48 +01:00
|
|
|
widget.event.attachmentOrThumbnailMxcUrl()!.pathSegments.last);
|
|
|
|
final file = File('${tempDir.path}/${fileName}_${matrixFile.name}');
|
2021-04-30 17:22:29 +02:00
|
|
|
await file.writeAsBytes(matrixFile.bytes);
|
|
|
|
|
2020-12-25 09:58:34 +01:00
|
|
|
setState(() {
|
2021-04-30 17:22:29 +02:00
|
|
|
audioFile = file;
|
2021-04-14 10:37:15 +02:00
|
|
|
status = AudioPlayerStatus.downloaded;
|
2020-12-25 09:58:34 +01:00
|
|
|
});
|
|
|
|
_playAction();
|
|
|
|
} catch (e, s) {
|
|
|
|
Logs().v('Could not download audio file', e, s);
|
2021-05-23 13:11:55 +02:00
|
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
2021-04-03 13:09:20 +02:00
|
|
|
SnackBar(
|
2022-01-28 18:41:24 +01:00
|
|
|
content: Text(e.toLocalizedString(context)),
|
2021-04-03 13:09:20 +02:00
|
|
|
),
|
|
|
|
);
|
2020-12-25 09:58:34 +01:00
|
|
|
}
|
2020-03-15 11:27:51 +01:00
|
|
|
}
|
|
|
|
|
2020-05-13 15:58:59 +02:00
|
|
|
void _playAction() async {
|
2021-04-30 17:22:29 +02:00
|
|
|
if (AudioPlayerWidget.currentId != widget.event.eventId) {
|
|
|
|
if (AudioPlayerWidget.currentId != null) {
|
2022-03-13 07:54:44 +01:00
|
|
|
if (audioPlayer.playerState.playing) {
|
2021-04-30 17:22:29 +02:00
|
|
|
await audioPlayer.stop();
|
2022-01-01 14:17:31 +01:00
|
|
|
setState(() {});
|
2020-03-15 12:00:25 +01:00
|
|
|
}
|
|
|
|
}
|
2021-04-30 17:22:29 +02:00
|
|
|
AudioPlayerWidget.currentId = widget.event.eventId;
|
2020-03-15 12:00:25 +01:00
|
|
|
}
|
2022-03-13 07:54:44 +01:00
|
|
|
if (audioPlayer.playerState.playing) {
|
|
|
|
await audioPlayer.pause();
|
|
|
|
return;
|
|
|
|
} else if (audioPlayer.position != Duration.zero) {
|
|
|
|
await audioPlayer.play();
|
|
|
|
return;
|
2020-03-15 11:27:51 +01:00
|
|
|
}
|
2022-03-13 07:54:44 +01:00
|
|
|
|
|
|
|
onAudioPositionChanged ??= audioPlayer.positionStream.listen((state) {
|
|
|
|
setState(() {
|
|
|
|
statusText =
|
|
|
|
'${state.inMinutes.toString().padLeft(2, '0')}:${(state.inSeconds % 60).toString().padLeft(2, '0')}';
|
|
|
|
currentPosition = ((state.inMilliseconds.toDouble() / maxPosition) *
|
|
|
|
AudioPlayerWidget.wavesCount)
|
|
|
|
.round();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
onDurationChanged ??= audioPlayer.durationStream.listen((max) => max == null
|
|
|
|
? null
|
|
|
|
: setState(() => maxPosition = max.inMilliseconds.toDouble()));
|
|
|
|
onPlayerStateChanged ??=
|
|
|
|
audioPlayer.playingStream.listen((_) => setState(() {}));
|
|
|
|
audioPlayer.setFilePath(audioFile!.path);
|
|
|
|
audioPlayer.play().catchError((e, s) {
|
|
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
|
|
|
SnackBar(
|
|
|
|
content: Text(L10n.of(context)!.oopsSomethingWentWrong),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
SentryController.captureException(e, s);
|
|
|
|
});
|
2020-03-15 11:27:51 +01:00
|
|
|
}
|
|
|
|
|
2021-10-27 16:53:31 +02:00
|
|
|
static const double buttonSize = 36;
|
|
|
|
|
2022-01-01 14:17:31 +01:00
|
|
|
String? get _durationString {
|
2021-10-27 16:53:31 +02:00
|
|
|
final durationInt = widget.event.content
|
|
|
|
.tryGetMap<String, dynamic>('info')
|
|
|
|
?.tryGet<int>('duration');
|
|
|
|
if (durationInt == null) return null;
|
|
|
|
final duration = Duration(milliseconds: durationInt);
|
|
|
|
return '${duration.inMinutes.toString().padLeft(2, '0')}:${(duration.inSeconds % 60).toString().padLeft(2, '0')}';
|
|
|
|
}
|
|
|
|
|
2022-01-01 16:23:17 +01:00
|
|
|
List<int> _getWaveform() {
|
2022-01-01 14:17:31 +01:00
|
|
|
final eventWaveForm = widget.event.content
|
|
|
|
.tryGetMap<String, dynamic>('org.matrix.msc1767.audio')
|
|
|
|
?.tryGetList<int>('waveform');
|
|
|
|
if (eventWaveForm == null) {
|
2022-01-01 22:08:19 +01:00
|
|
|
return List<int>.filled(AudioPlayerWidget.wavesCount, 500);
|
2022-01-01 14:17:31 +01:00
|
|
|
}
|
2022-01-01 22:08:19 +01:00
|
|
|
while (eventWaveForm.length < AudioPlayerWidget.wavesCount) {
|
2022-01-01 14:17:31 +01:00
|
|
|
for (var i = 0; i < eventWaveForm.length; i = i + 2) {
|
|
|
|
eventWaveForm.insert(i, eventWaveForm[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var i = 0;
|
2022-01-01 22:08:19 +01:00
|
|
|
final step = (eventWaveForm.length / AudioPlayerWidget.wavesCount).round();
|
|
|
|
while (eventWaveForm.length > AudioPlayerWidget.wavesCount) {
|
2022-01-01 14:17:31 +01:00
|
|
|
eventWaveForm.removeAt(i);
|
2022-01-01 22:08:19 +01:00
|
|
|
i = (i + step) % AudioPlayerWidget.wavesCount;
|
2022-01-01 14:17:31 +01:00
|
|
|
}
|
2022-01-02 10:11:55 +01:00
|
|
|
return eventWaveForm.map((i) => i > 1024 ? 1024 : i).toList();
|
2022-01-01 14:17:31 +01:00
|
|
|
}
|
|
|
|
|
2022-01-01 16:23:17 +01:00
|
|
|
late final List<int> waveform;
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
|
|
|
waveform = _getWaveform();
|
|
|
|
}
|
|
|
|
|
2020-03-15 11:27:51 +01:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2022-01-01 14:17:31 +01:00
|
|
|
final statusText = this.statusText ??= _durationString ?? '00:00';
|
2021-10-27 16:53:31 +02:00
|
|
|
return Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 6.0),
|
|
|
|
child: Row(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: <Widget>[
|
|
|
|
SizedBox(
|
|
|
|
width: buttonSize,
|
|
|
|
height: buttonSize,
|
|
|
|
child: status == AudioPlayerStatus.downloading
|
|
|
|
? CircularProgressIndicator(strokeWidth: 2, color: widget.color)
|
|
|
|
: InkWell(
|
|
|
|
borderRadius: BorderRadius.circular(64),
|
|
|
|
child: Material(
|
|
|
|
color: widget.color.withAlpha(64),
|
|
|
|
borderRadius: BorderRadius.circular(64),
|
|
|
|
child: Icon(
|
2022-03-13 07:54:44 +01:00
|
|
|
audioPlayer.playerState.playing
|
2021-10-27 16:53:31 +02:00
|
|
|
? Icons.pause_outlined
|
|
|
|
: Icons.play_arrow_outlined,
|
|
|
|
color: widget.color,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
onLongPress: () => widget.event.saveFile(context),
|
|
|
|
onTap: () {
|
|
|
|
if (status == AudioPlayerStatus.downloaded) {
|
|
|
|
_playAction();
|
|
|
|
} else {
|
|
|
|
_downloadAction();
|
|
|
|
}
|
|
|
|
},
|
2020-03-15 11:27:51 +01:00
|
|
|
),
|
2020-03-15 11:47:35 +01:00
|
|
|
),
|
2022-01-01 14:17:31 +01:00
|
|
|
const SizedBox(width: 8),
|
2021-10-27 16:53:31 +02:00
|
|
|
Expanded(
|
2022-01-01 14:17:31 +01:00
|
|
|
child: Row(
|
|
|
|
children: [
|
2022-01-01 22:08:19 +01:00
|
|
|
for (var i = 0; i < AudioPlayerWidget.wavesCount; i++)
|
2022-01-01 14:17:31 +01:00
|
|
|
Expanded(
|
|
|
|
child: InkWell(
|
|
|
|
onTap: () => audioPlayer.seek(Duration(
|
2022-01-01 22:08:19 +01:00
|
|
|
milliseconds:
|
|
|
|
(maxPosition / AudioPlayerWidget.wavesCount)
|
|
|
|
.round() *
|
|
|
|
i)),
|
2022-03-28 20:13:20 +02:00
|
|
|
child: Container(
|
|
|
|
height: 32,
|
|
|
|
alignment: Alignment.center,
|
|
|
|
child: Opacity(
|
|
|
|
opacity: currentPosition > i ? 1 : 0.5,
|
|
|
|
child: Container(
|
|
|
|
margin: const EdgeInsets.symmetric(horizontal: 1),
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
color: widget.color,
|
|
|
|
borderRadius: BorderRadius.circular(64),
|
|
|
|
),
|
|
|
|
height: 32 * (waveform[i] / 1024)),
|
|
|
|
),
|
2022-01-01 14:17:31 +01:00
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
],
|
2021-10-27 16:53:31 +02:00
|
|
|
),
|
2020-03-15 11:27:51 +01:00
|
|
|
),
|
2022-01-01 14:17:31 +01:00
|
|
|
const SizedBox(width: 8),
|
|
|
|
Container(
|
|
|
|
alignment: Alignment.centerRight,
|
|
|
|
width: 42,
|
|
|
|
child: Text(
|
|
|
|
statusText,
|
|
|
|
style: TextStyle(
|
|
|
|
color: widget.color,
|
|
|
|
),
|
2021-10-27 16:53:31 +02:00
|
|
|
),
|
2021-07-18 11:34:47 +02:00
|
|
|
),
|
2021-10-27 16:53:31 +02:00
|
|
|
],
|
|
|
|
),
|
2020-03-15 11:27:51 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|