audio download preference

This commit is contained in:
Reinaldo Neto 2023-05-11 15:52:48 -03:00
parent ab56ecd010
commit 871dc7f668
2 changed files with 108 additions and 42 deletions

View File

@ -6,12 +6,13 @@ import moment from 'moment';
import { dequal } from 'dequal'; import { dequal } from 'dequal';
import { activateKeepAwake, deactivateKeepAwake } from 'expo-keep-awake'; import { activateKeepAwake, deactivateKeepAwake } from 'expo-keep-awake';
import { Sound } from 'expo-av/build/Audio/Sound'; import { Sound } from 'expo-av/build/Audio/Sound';
import NetInfo, { NetInfoStateType } from '@react-native-community/netinfo';
import Touchable from './Touchable'; import Touchable from './Touchable';
import Markdown from '../markdown'; import Markdown from '../markdown';
import { CustomIcon } from '../CustomIcon'; import { CustomIcon } from '../CustomIcon';
import sharedStyles from '../../views/Styles'; import sharedStyles from '../../views/Styles';
import { themes } from '../../lib/constants'; import { MediaDownloadOption, VIDEO_PREFERENCE_DOWNLOAD, themes } from '../../lib/constants';
import { isAndroid, isIOS } from '../../lib/methods/helpers'; import { isAndroid, isIOS } from '../../lib/methods/helpers';
import MessageContext from './Context'; import MessageContext from './Context';
import ActivityIndicator from '../ActivityIndicator'; import ActivityIndicator from '../ActivityIndicator';
@ -19,9 +20,10 @@ import { withDimensions } from '../../dimensions';
import { TGetCustomEmoji } from '../../definitions/IEmoji'; import { TGetCustomEmoji } from '../../definitions/IEmoji';
import { IAttachment } from '../../definitions'; import { IAttachment } from '../../definitions';
import { TSupportedThemes } from '../../theme'; import { TSupportedThemes } from '../../theme';
import { downloadAudioFile } from '../../lib/methods/audioFile'; import { downloadAudioFile, searchAudioFileAsync } from '../../lib/methods/audioFile';
import EventEmitter from '../../lib/methods/helpers/events'; import EventEmitter from '../../lib/methods/helpers/events';
import { PAUSE_AUDIO } from './constants'; import { PAUSE_AUDIO } from './constants';
import userPreferences from '../../lib/methods/userPreferences';
interface IButton { interface IButton {
loading: boolean; loading: boolean;
@ -29,6 +31,7 @@ interface IButton {
theme: TSupportedThemes; theme: TSupportedThemes;
disabled?: boolean; disabled?: boolean;
onPress: () => void; onPress: () => void;
toDownload: boolean;
} }
interface IMessageAudioProps { interface IMessageAudioProps {
@ -46,6 +49,7 @@ interface IMessageAudioState {
currentTime: number; currentTime: number;
duration: number; duration: number;
paused: boolean; paused: boolean;
toDownload: boolean;
} }
const mode = { const mode = {
@ -90,25 +94,29 @@ const formatTime = (seconds: number) => moment.utc(seconds * 1000).format('mm:ss
const BUTTON_HIT_SLOP = { top: 12, right: 12, bottom: 12, left: 12 }; const BUTTON_HIT_SLOP = { top: 12, right: 12, bottom: 12, left: 12 };
const Button = React.memo(({ loading, paused, onPress, disabled, theme }: IButton) => ( const Button = React.memo(({ loading, paused, onPress, disabled, theme, toDownload }: IButton) => {
<Touchable const customIconName = () => {
style={styles.playPauseButton} if (toDownload) {
disabled={disabled} return 'arrow-down-circle';
onPress={onPress} }
hitSlop={BUTTON_HIT_SLOP} return paused ? 'play-filled' : 'pause-filled';
background={Touchable.SelectableBackgroundBorderless()} };
> return (
{loading ? ( <Touchable
<ActivityIndicator style={[styles.playPauseButton, styles.audioLoading]} /> style={styles.playPauseButton}
) : ( disabled={disabled}
<CustomIcon onPress={onPress}
name={paused ? 'play-filled' : 'pause-filled'} hitSlop={BUTTON_HIT_SLOP}
size={36} background={Touchable.SelectableBackgroundBorderless()}
color={disabled ? themes[theme].tintDisabled : themes[theme].tintColor} >
/> {loading ? (
)} <ActivityIndicator style={[styles.playPauseButton, styles.audioLoading]} />
</Touchable> ) : (
)); <CustomIcon name={customIconName()} size={36} color={disabled ? themes[theme].tintDisabled : themes[theme].tintColor} />
)}
</Touchable>
);
});
Button.displayName = 'MessageAudioButton'; Button.displayName = 'MessageAudioButton';
@ -123,7 +131,8 @@ class MessageAudio extends React.Component<IMessageAudioProps, IMessageAudioStat
loading: false, loading: false,
currentTime: 0, currentTime: 0,
duration: 0, duration: 0,
paused: true paused: true,
toDownload: false
}; };
this.sound = new Audio.Sound(); this.sound = new Audio.Sound();
@ -136,25 +145,49 @@ class MessageAudio extends React.Component<IMessageAudioProps, IMessageAudioStat
}; };
async componentDidMount() { async componentDidMount() {
const { file, messageId } = this.props; this.setState({ loading: true });
const { baseUrl, user } = this.context; await this.handleAutoDownload();
}
getUrl = () => {
const { file } = this.props;
const { baseUrl } = this.context;
let url = file.audio_url; let url = file.audio_url;
if (url && !url.startsWith('http')) { if (url && !url.startsWith('http')) {
url = `${baseUrl}${file.audio_url}`; url = `${baseUrl}${file.audio_url}`;
} }
return url;
};
this.setState({ loading: true }); handleAutoDownload = async () => {
const { messageId } = this.props;
const url = this.getUrl();
try { try {
if (url) { if (url) {
const audio = await downloadAudioFile(`${url}?rc_uid=${user.id}&rc_token=${user.token}`, url, messageId); const fileSearch = await searchAudioFileAsync(url, messageId);
await this.sound.loadAsync({ uri: audio }); if (fileSearch?.file?.exists) {
await this.sound.loadAsync({ uri: fileSearch.file.uri });
return this.setState({ loading: false });
}
const audioDownloadPreference = userPreferences.getString(VIDEO_PREFERENCE_DOWNLOAD);
const netInfoState = await NetInfo.fetch();
const autoDownload =
(audioDownloadPreference === MediaDownloadOption.WIFI && netInfoState.type === NetInfoStateType.wifi) ||
audioDownloadPreference === MediaDownloadOption.WIFI_MOBILE_DATA;
if (autoDownload) {
await this.startDownload();
}
// MediaDownloadOption.NEVER or MediaDownloadOption.WIFI and the mobile is using mobile data
return this.setState({ loading: false, toDownload: true });
} }
} catch { } catch {
// Do nothing // Do nothing
} }
this.setState({ loading: false }); };
}
shouldComponentUpdate(nextProps: IMessageAudioProps, nextState: IMessageAudioState) { shouldComponentUpdate(nextProps: IMessageAudioProps, nextState: IMessageAudioState) {
const { currentTime, duration, paused, loading } = this.state; const { currentTime, duration, paused, loading } = this.state;
@ -247,6 +280,26 @@ class MessageAudio extends React.Component<IMessageAudioProps, IMessageAudioStat
this.setState({ paused: !paused }, this.playPause); this.setState({ paused: !paused }, this.playPause);
}; };
startDownload = async () => {
const { messageId } = this.props;
const { user } = this.context;
this.setState({ loading: true });
const url = this.getUrl();
if (url) {
const fileSearch = await searchAudioFileAsync(url, messageId);
const audio = await downloadAudioFile(`${url}?rc_uid=${user.id}&rc_token=${user.token}`, fileSearch.filePath);
await this.sound.loadAsync({ uri: audio });
return this.setState({ loading: false });
}
};
onPress = () => {
const { toDownload } = this.state;
return toDownload ? this.startDownload() : this.togglePlayPause();
};
playPause = async () => { playPause = async () => {
const { paused } = this.state; const { paused } = this.state;
try { try {
@ -274,7 +327,7 @@ class MessageAudio extends React.Component<IMessageAudioProps, IMessageAudioStat
}; };
render() { render() {
const { loading, paused, currentTime, duration } = this.state; const { loading, paused, currentTime, duration, toDownload } = this.state;
const { file, getCustomEmoji, theme, scale, isReply, style } = this.props; const { file, getCustomEmoji, theme, scale, isReply, style } = this.props;
const { description } = file; const { description } = file;
const { baseUrl, user } = this.context; const { baseUrl, user } = this.context;
@ -305,7 +358,14 @@ class MessageAudio extends React.Component<IMessageAudioProps, IMessageAudioStat
{ backgroundColor: themes[theme].chatComponentBackground, borderColor: themes[theme].borderColor } { backgroundColor: themes[theme].chatComponentBackground, borderColor: themes[theme].borderColor }
]} ]}
> >
<Button disabled={isReply} loading={loading} paused={paused} onPress={this.togglePlayPause} theme={theme} /> <Button
disabled={isReply}
loading={loading}
paused={paused}
toDownload={toDownload}
onPress={this.onPress}
theme={theme}
/>
<Slider <Slider
disabled={isReply} disabled={isReply}
style={styles.slider} style={styles.slider}

View File

@ -26,26 +26,32 @@ const ensureDirAsync = async (dir: string, intermediates = true): Promise<void>
return ensureDirAsync(dir, intermediates); return ensureDirAsync(dir, intermediates);
}; };
export const downloadAudioFile = async (url: string, fileUrl: string, messageId: string): Promise<string> => { export const searchAudioFileAsync = async (fileUrl: string, messageId: string) => {
let path = ''; let file;
let filePath = '';
try { try {
const serverUrl = store.getState().server.server; const serverUrl = store.getState().server.server;
const serverUrlParsed = sanitizeString(serverUrl); const serverUrlParsed = sanitizeString(serverUrl);
const folderPath = `${FileSystem.documentDirectory}audios/${serverUrlParsed}`; const folderPath = `${FileSystem.documentDirectory}audios/${serverUrlParsed}`;
const filename = `${messageId}.${getExtension(fileUrl)}`; const filename = `${messageId}.${getExtension(fileUrl)}`;
const filePath = `${folderPath}/${filename}`; filePath = `${folderPath}/${filename}`;
await ensureDirAsync(folderPath); await ensureDirAsync(folderPath);
const file = await FileSystem.getInfoAsync(filePath); file = await FileSystem.getInfoAsync(filePath);
if (!file.exists) { } catch (e) {
const downloadedFile = await FileSystem.downloadAsync(url, filePath); log(e);
path = downloadedFile.uri; }
} else { return { file, filePath };
path = file.uri; };
}
export const downloadAudioFile = async (url: string, filePath: string) => {
let uri = '';
try {
const downloadedFile = await FileSystem.downloadAsync(url, filePath);
uri = downloadedFile.uri;
} catch (error) { } catch (error) {
log(error); log(error);
} }
return path; return uri;
}; };
export const deleteAllAudioFiles = async (serverUrl: string): Promise<void> => { export const deleteAllAudioFiles = async (serverUrl: string): Promise<void> => {