-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(getDownloadFileName): handle server bundles
The 2anki server can send a zip file with multiple APKG files or one APKG file.
- Loading branch information
Showing
3 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { isServerBundle } from './isServerBundle'; | ||
|
||
describe('isBundle', () => { | ||
test('server bundle name', () => { | ||
expect( | ||
isServerBundle('Your decks-62a104dc-2c91-4ce8-837e-d2379e523693.zip') | ||
).toBe(true); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/** | ||
* isServerBundle returns true if the filename is a server bundle. | ||
* The 2anki server can send a zip file with multiple APKG files or one APKG file. | ||
* @param filename The filename to check. | ||
* @returns boolean | ||
*/ | ||
export const isServerBundle = (filename: string) => | ||
filename.startsWith('Your decks') || filename.endsWith('.zip'); |