Skip to content

Commit

Permalink
feat: Open cozy-app when offline only if it supports Offline mode
Browse files Browse the repository at this point in the history
When offline, we want to open coz-apps only when they declare to be
compatible with Offline mode

Cozy-app can declare this by setting `offline_support: true` in their
manifest.webapp file

Non compatible cozy-app won't be opened when the Flagship app is
offline, and instead an error message will be displayed
  • Loading branch information
Ldoppea committed Sep 25, 2024
1 parent d411dc6 commit 1cca1f6
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 1 deletion.
48 changes: 48 additions & 0 deletions src/app/domain/offline/isOfflineCompatible.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
import RNFS from 'react-native-fs'

import { getErrorMessage } from 'cozy-intent'
import Minilog from 'cozy-minilog'

import { getCurrentAppConfigurationForFqdnAndSlug } from '/libs/cozyAppBundle/cozyAppBundleConfiguration'
import { getBaseFolderForFqdnAndSlugAndCurrentVersion } from '/libs/httpserver/httpPaths'

export const log = Minilog('IsOfflineCompatible')

export const isOfflineCompatible = async (
fqdn: string,
slug: string
): Promise<boolean> => {
try {
const appConfiguration = await getCurrentAppConfigurationForFqdnAndSlug(
fqdn,
slug
)

if (!appConfiguration) {
return false
}

const basePath = await getBaseFolderForFqdnAndSlugAndCurrentVersion(
fqdn,
slug
)

const manifestPath = basePath + '/manifest.webapp'

if (!(await RNFS.exists(manifestPath))) {
return false
}

const fileContent = await RNFS.readFile(manifestPath)

const manifest = JSON.parse(fileContent) as Record<string, unknown>

return manifest.offline_support === true
} catch (error) {
log.error(
`Could not read manifest for app "${slug}": ${getErrorMessage(error)}.`
)

return false
}
}
14 changes: 13 additions & 1 deletion src/libs/httpserver/httpServerProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import Config from 'react-native-config'
import type CozyClient from 'cozy-client'
import Minilog from 'cozy-minilog'

import { isOfflineCompatible } from '/app/domain/offline/isOfflineCompatible'
import { getErrorMessage } from '/libs/functions/getErrorMessage'
import HttpServer from '/libs/httpserver/HttpServer'
import { fetchAppDataForSlug } from '/libs/httpserver/indexDataFetcher'
Expand Down Expand Up @@ -140,12 +141,23 @@ export const HttpServerProvider = (
)

if (source === 'cache') {
if (slug !== 'home' && slug !== 'mespapiers') {
log.debug(
'App from cache detected, cheking if the app is compatible with offline mode'
)
const isOffflineCompatitble = await isOfflineCompatible(fqdn, slug)

if (!isOffflineCompatitble) {
log.debug(
`App ${slug}' is NOT compatible with offline, abort index generation`
)
return {
html: false,
source: 'offline'
}
}
log.debug(
`App ${slug}' is compatible with offline, continue index generation`
)
}

await setCookie(cookie, client)
Expand Down

0 comments on commit 1cca1f6

Please sign in to comment.