mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-05 03:29:30 +01:00
254 lines
8.1 KiB
Dart
254 lines
8.1 KiB
Dart
//@dart=2.12
|
|
|
|
import 'dart:async';
|
|
import 'dart:io';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:audioplayers/audioplayers.dart';
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
|
import 'package:matrix/matrix.dart';
|
|
import 'package:path_provider/path_provider.dart';
|
|
|
|
import 'package:fluffychat/utils/sentry_controller.dart';
|
|
import '../../../utils/matrix_sdk_extensions.dart/event_extension.dart';
|
|
|
|
class AudioPlayerWidget extends StatefulWidget {
|
|
final Color color;
|
|
final Event event;
|
|
|
|
static String? currentId;
|
|
|
|
static const int wavesCount = 40;
|
|
|
|
const AudioPlayerWidget(this.event, {this.color = Colors.black, Key? key})
|
|
: super(key: key);
|
|
|
|
@override
|
|
_AudioPlayerState createState() => _AudioPlayerState();
|
|
}
|
|
|
|
enum AudioPlayerStatus { notDownloaded, downloading, downloaded }
|
|
|
|
class _AudioPlayerState extends State<AudioPlayerWidget> {
|
|
AudioPlayerStatus status = AudioPlayerStatus.notDownloaded;
|
|
final AudioPlayer audioPlayer = AudioPlayer();
|
|
|
|
StreamSubscription? onAudioPositionChanged;
|
|
StreamSubscription? onDurationChanged;
|
|
StreamSubscription? onPlayerStateChanged;
|
|
StreamSubscription? onPlayerError;
|
|
|
|
String? statusText;
|
|
int currentPosition = 0;
|
|
double maxPosition = 0;
|
|
|
|
File? audioFile;
|
|
|
|
@override
|
|
void dispose() {
|
|
if (audioPlayer.state == PlayerState.PLAYING) {
|
|
audioPlayer.stop();
|
|
}
|
|
onAudioPositionChanged?.cancel();
|
|
onDurationChanged?.cancel();
|
|
onPlayerStateChanged?.cancel();
|
|
onPlayerError?.cancel();
|
|
|
|
super.dispose();
|
|
}
|
|
|
|
Future<void> _downloadAction() async {
|
|
if (status != AudioPlayerStatus.notDownloaded) return;
|
|
setState(() => status = AudioPlayerStatus.downloading);
|
|
try {
|
|
final matrixFile =
|
|
await widget.event.downloadAndDecryptAttachmentCached();
|
|
if (matrixFile == null) throw ('Download failed');
|
|
final tempDir = await getTemporaryDirectory();
|
|
final fileName =
|
|
widget.event.content.tryGet<String>('filename') ?? matrixFile.name;
|
|
final file = File('${tempDir.path}/$fileName');
|
|
await file.writeAsBytes(matrixFile.bytes);
|
|
|
|
setState(() {
|
|
audioFile = file;
|
|
status = AudioPlayerStatus.downloaded;
|
|
});
|
|
_playAction();
|
|
} catch (e, s) {
|
|
Logs().v('Could not download audio file', e, s);
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
|
SnackBar(
|
|
content: Text(e.toString()),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
void _playAction() async {
|
|
if (AudioPlayerWidget.currentId != widget.event.eventId) {
|
|
if (AudioPlayerWidget.currentId != null) {
|
|
if (audioPlayer.state != PlayerState.STOPPED) {
|
|
await audioPlayer.stop();
|
|
setState(() {});
|
|
}
|
|
}
|
|
AudioPlayerWidget.currentId = widget.event.eventId;
|
|
}
|
|
switch (audioPlayer.state) {
|
|
case PlayerState.PLAYING:
|
|
await audioPlayer.pause();
|
|
break;
|
|
case PlayerState.PAUSED:
|
|
await audioPlayer.resume();
|
|
break;
|
|
case PlayerState.STOPPED:
|
|
default:
|
|
onAudioPositionChanged ??=
|
|
audioPlayer.onAudioPositionChanged.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.onDurationChanged.listen((max) =>
|
|
setState(() => maxPosition = max.inMilliseconds.toDouble()));
|
|
onPlayerStateChanged ??=
|
|
audioPlayer.onPlayerStateChanged.listen((_) => setState(() {}));
|
|
onPlayerError ??= audioPlayer.onPlayerError.listen((e) {
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
|
SnackBar(
|
|
content: Text(L10n.of(context)!.oopsSomethingWentWrong),
|
|
),
|
|
);
|
|
SentryController.captureException(e, StackTrace.current);
|
|
});
|
|
|
|
await audioPlayer.play(audioFile!.path);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static const double buttonSize = 36;
|
|
|
|
String? get _durationString {
|
|
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')}';
|
|
}
|
|
|
|
List<int> _getWaveform() {
|
|
final eventWaveForm = widget.event.content
|
|
.tryGetMap<String, dynamic>('org.matrix.msc1767.audio')
|
|
?.tryGetList<int>('waveform');
|
|
if (eventWaveForm == null) {
|
|
return List<int>.filled(AudioPlayerWidget.wavesCount, 500);
|
|
}
|
|
while (eventWaveForm.length < AudioPlayerWidget.wavesCount) {
|
|
for (var i = 0; i < eventWaveForm.length; i = i + 2) {
|
|
eventWaveForm.insert(i, eventWaveForm[i]);
|
|
}
|
|
}
|
|
var i = 0;
|
|
final step = (eventWaveForm.length / AudioPlayerWidget.wavesCount).round();
|
|
while (eventWaveForm.length > AudioPlayerWidget.wavesCount) {
|
|
eventWaveForm.removeAt(i);
|
|
i = (i + step) % AudioPlayerWidget.wavesCount;
|
|
}
|
|
return eventWaveForm.map((i) => i > 1024 ? 1024 : i).toList();
|
|
}
|
|
|
|
late final List<int> waveform;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
waveform = _getWaveform();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final statusText = this.statusText ??= _durationString ?? '00: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(
|
|
audioPlayer.state == PlayerState.PLAYING
|
|
? Icons.pause_outlined
|
|
: Icons.play_arrow_outlined,
|
|
color: widget.color,
|
|
),
|
|
),
|
|
onLongPress: () => widget.event.saveFile(context),
|
|
onTap: () {
|
|
if (status == AudioPlayerStatus.downloaded) {
|
|
_playAction();
|
|
} else {
|
|
_downloadAction();
|
|
}
|
|
},
|
|
),
|
|
),
|
|
const SizedBox(width: 8),
|
|
Expanded(
|
|
child: Row(
|
|
children: [
|
|
for (var i = 0; i < AudioPlayerWidget.wavesCount; i++)
|
|
Expanded(
|
|
child: InkWell(
|
|
onTap: () => audioPlayer.seek(Duration(
|
|
milliseconds:
|
|
(maxPosition / AudioPlayerWidget.wavesCount)
|
|
.round() *
|
|
i)),
|
|
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: 64 * (waveform[i] / 1024)),
|
|
),
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
const SizedBox(width: 8),
|
|
Container(
|
|
alignment: Alignment.centerRight,
|
|
width: 42,
|
|
child: Text(
|
|
statusText,
|
|
style: TextStyle(
|
|
color: widget.color,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|