Merge pull request #184 from tooot-app/main

Final test of new push system
This commit is contained in:
xmflsct 2021-12-12 22:11:45 +01:00 committed by GitHub
commit fc7e018602
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 10 additions and 28 deletions

View File

@ -59,7 +59,7 @@ const apiGeneral = async <T = unknown>({
})
.catch(error => {
if (sentry) {
Sentry.Native.setExtras(error.response)
Sentry.Native.setExtras(error.response || error.request)
Sentry.Native.captureException(error)
}

View File

@ -57,7 +57,7 @@ const apiTooot = async <T = unknown>({
})
.catch(error => {
if (sentry) {
Sentry.Native.setExtras(error.response)
Sentry.Native.setExtras(error.response || error.request)
Sentry.Native.captureException(error)
}

View File

@ -25,12 +25,8 @@ const pushUseConnect = ({ mode, t, instances, dispatch }: Params) => {
).data
apiTooot({
method: 'post',
service: 'push',
url: 'connect',
body: {
expoToken
},
method: 'get',
url: `push/connect/${expoToken}`,
sentry: true
}).catch(error => {
if (error.status == 410) {
@ -76,7 +72,7 @@ const pushUseConnect = ({ mode, t, instances, dispatch }: Params) => {
const pushEnabled = instances.filter(instance => instance.push.global.value)
if (pushEnabled.length) {
// connect()
connect()
}
}, [instances])
}

View File

@ -1,7 +1,6 @@
import apiTooot from '@api/tooot'
import haptics from '@components/haptics'
import { AxiosError } from 'axios'
import * as Crypto from 'expo-crypto'
import { useQuery, UseQueryOptions } from 'react-query'
type Translations = {
@ -13,7 +12,6 @@ type Translations = {
export type QueryKeyTranslate = [
'Translate',
{
uri: string
source: string
target: string
text: string[]
@ -21,23 +19,11 @@ export type QueryKeyTranslate = [
]
const queryFunction = async ({ queryKey }: { queryKey: QueryKeyTranslate }) => {
const { uri, source, target, text } = queryKey[1]
const uriEncoded = await Crypto.digestStringAsync(
Crypto.CryptoDigestAlgorithm.SHA256,
uri.replace(/https?:\/\//, ''),
{ encoding: Crypto.CryptoEncoding.HEX }
)
const original = await Crypto.digestStringAsync(
Crypto.CryptoDigestAlgorithm.SHA256,
JSON.stringify({ source, text }),
{ encoding: Crypto.CryptoEncoding.HEX }
)
const { source, target, text } = queryKey[1]
const res = await apiTooot<Translations>({
method: 'get',
url: '/translate',
headers: { original },
method: 'post',
url: 'translate',
body: { source, target, text }
})
haptics('Light')

View File

@ -77,7 +77,7 @@ const pushRegister = async (
accountId,
accountFull,
serverKey: res.body.server_key,
auth
auth: instancePush.decode.value === false ? null : auth
})
if (Platform.OS === 'android') {

View File

@ -29,7 +29,7 @@ export const updateInstancePushDecode = createAsyncThunk(
method: 'put',
url: `/push/update-decode/${expoToken}/${instance.url}/${instance.account.id}`,
body: {
auth: disable ? null : instance.push.keys.auth
auth: !disable ? null : instance.push.keys.auth
},
sentry: true
})