mirror of
https://github.com/scratchfoundation/scratchjr.git
synced 2024-11-28 18:15:37 -05:00
Import: don't add library assets to database
This commit is contained in:
parent
4fdfc480fe
commit
032e7b1d91
11 changed files with 83 additions and 1 deletions
|
@ -339,6 +339,11 @@ public class IOManager {
|
||||||
if ("thumbnails".equals(folderName) || "sounds".equals(folderName)) {
|
if ("thumbnails".equals(folderName) || "sounds".equals(folderName)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
if (activity.libraryHasAsset(fileName)) {
|
||||||
|
Log.e(LOG_TAG, "asset for " + fileName + " exists in library");
|
||||||
|
// this is in library assets.
|
||||||
|
continue;
|
||||||
|
}
|
||||||
String table = "characters".equals(folderName) ? "usershapes" : "userbkgs";
|
String table = "characters".equals(folderName) ? "usershapes" : "userbkgs";
|
||||||
String statement = String.format("SELECT id FROM %s WHERE md5 = ?", table);
|
String statement = String.format("SELECT id FROM %s WHERE md5 = ?", table);
|
||||||
JSONArray rows = _databaseManager.query(statement, new String[]{fileName});
|
JSONArray rows = _databaseManager.query(statement, new String[]{fileName});
|
||||||
|
|
|
@ -661,6 +661,11 @@ public class JavaScriptDirectInterface {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@JavascriptInterface
|
||||||
|
public void registerLibraryAssets(String assets) {
|
||||||
|
_activity.registerLibraryAssets(assets.split(","));
|
||||||
|
}
|
||||||
|
|
||||||
@JavascriptInterface
|
@JavascriptInterface
|
||||||
public void sendSjrUsingShareDialog(String fileName, String emailSubject,
|
public void sendSjrUsingShareDialog(String fileName, String emailSubject,
|
||||||
String emailBody, int shareType) {
|
String emailBody, int shareType) {
|
||||||
|
|
|
@ -38,6 +38,7 @@ import com.google.firebase.analytics.FirebaseAnalytics;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
|
import java.util.HashSet;
|
||||||
import java.util.Vector;
|
import java.util.Vector;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -112,6 +113,13 @@ public class ScratchJrActivity
|
||||||
*/
|
*/
|
||||||
private ArrayList<Uri> projectUris = new ArrayList<>();
|
private ArrayList<Uri> projectUris = new ArrayList<>();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This set will contain all the library assets.
|
||||||
|
* We are using set here so that we can find the asset
|
||||||
|
* whether in library in O(1) time.
|
||||||
|
*/
|
||||||
|
private final HashSet<String> assetList = new HashSet<>(200);
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onCreate(Bundle savedInstanceState) {
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
|
@ -657,4 +665,21 @@ public class ScratchJrActivity
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* We record all library assets names when app starts,
|
||||||
|
* so that we can know whether an asset should be marked
|
||||||
|
* as a user created one when importing.
|
||||||
|
* @param assets library asset md5
|
||||||
|
*/
|
||||||
|
public void registerLibraryAssets(String[] assets) {
|
||||||
|
int length = assets.length;
|
||||||
|
for (int i = 0; i < length; i++) {
|
||||||
|
assetList.add(assets[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean libraryHasAsset(String md5) {
|
||||||
|
return assetList.contains(md5);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -342,6 +342,10 @@ NSMutableDictionary *soundtimers;
|
||||||
[fileManager copyItemAtPath:fromPath toPath:toPath error:nil];
|
[fileManager copyItemAtPath:fromPath toPath:toPath error:nil];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ([ScratchJr libraryHasAsset:fileName]) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
NSArray *parts = [path componentsSeparatedByString:@"/"];
|
NSArray *parts = [path componentsSeparatedByString:@"/"];
|
||||||
if (parts.count > 1) {
|
if (parts.count > 1) {
|
||||||
NSString *folder = parts[1];
|
NSString *folder = parts[1];
|
||||||
|
|
|
@ -207,4 +207,10 @@
|
||||||
[request callback:[[UIDevice currentDevice] name]];
|
[request callback:[[UIDevice currentDevice] name]];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (void) registerLibraryAssets: (JsRequest *) request {
|
||||||
|
NSString *assets = request.params[0];
|
||||||
|
[ScratchJr registerLibraryAssets: [assets componentsSeparatedByString:@","]];
|
||||||
|
[request callback:@"1"];
|
||||||
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
|
@ -170,4 +170,7 @@
|
||||||
|
|
||||||
// Imports
|
// Imports
|
||||||
+ (void) receiveProject:(NSURL *) url;
|
+ (void) receiveProject:(NSURL *) url;
|
||||||
|
|
||||||
|
+ (void) registerLibraryAssets: (NSArray<NSString *> *)assets;
|
||||||
|
+ (BOOL) libraryHasAsset: (NSString *)md5;
|
||||||
@end
|
@end
|
||||||
|
|
|
@ -16,6 +16,8 @@ AVCaptureVideoPreviewLayer* captureVideoPreviewLayer;
|
||||||
|
|
||||||
NSString *oncomplete;
|
NSString *oncomplete;
|
||||||
|
|
||||||
|
NSMutableSet *assets;
|
||||||
|
|
||||||
//////////////////////////
|
//////////////////////////
|
||||||
// Init functions
|
// Init functions
|
||||||
/////////////////////////
|
/////////////////////////
|
||||||
|
@ -169,4 +171,17 @@ NSString *oncomplete;
|
||||||
cameraMask = nil;
|
cameraMask = nil;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
+ (void) registerLibraryAssets: (NSArray<NSString *> *)assetArr {
|
||||||
|
if (assets == nil) {
|
||||||
|
assets = [[NSMutableSet alloc] init];
|
||||||
|
}
|
||||||
|
for (NSString* md5 in assetArr) {
|
||||||
|
[assets addObject:md5];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
+ (BOOL) libraryHasAsset:(NSString *)md5 {
|
||||||
|
return [assets containsObject:md5];
|
||||||
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
|
@ -41,7 +41,10 @@ window.onload = () => {
|
||||||
preprocessAndLoadCss('css', 'css/thumbs.css');
|
preprocessAndLoadCss('css', 'css/thumbs.css');
|
||||||
/* For parental gate. These CSS properties should be refactored */
|
/* For parental gate. These CSS properties should be refactored */
|
||||||
preprocessAndLoadCss('css', 'css/editor.css');
|
preprocessAndLoadCss('css', 'css/editor.css');
|
||||||
entryFunction = () => OS.waitForInterface(indexMain);
|
entryFunction = () => OS.waitForInterface(function () {
|
||||||
|
var assets = Object.keys(MediaLib.keys).join(',');
|
||||||
|
OS.registerLibraryAssets(assets, indexMain);
|
||||||
|
});
|
||||||
break;
|
break;
|
||||||
case 'home':
|
case 'home':
|
||||||
// Lobby pages
|
// Lobby pages
|
||||||
|
|
|
@ -254,6 +254,11 @@ export default class Android {
|
||||||
// return 1;
|
// return 1;
|
||||||
// }
|
// }
|
||||||
|
|
||||||
|
static registerLibraryAssets (assets, fcn) {
|
||||||
|
AndroidInterface.registerLibraryAssets(assets);
|
||||||
|
fcn && fcn();
|
||||||
|
}
|
||||||
|
|
||||||
// Name of the device/iPad to display on the sharing dialog page
|
// Name of the device/iPad to display on the sharing dialog page
|
||||||
// fcn is called with the device name as an arg
|
// fcn is called with the device name as an arg
|
||||||
static deviceName (fcn) {
|
static deviceName (fcn) {
|
||||||
|
|
|
@ -247,6 +247,10 @@ export default class OS {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static registerLibraryAssets (assets, fcn) {
|
||||||
|
tabletInterface.registerLibraryAssets(assets, fcn);
|
||||||
|
}
|
||||||
|
|
||||||
// Name of the device/iPad to display on the sharing dialog page
|
// Name of the device/iPad to display on the sharing dialog page
|
||||||
// fcn is called with the device name as an arg
|
// fcn is called with the device name as an arg
|
||||||
static deviceName (fcn) {
|
static deviceName (fcn) {
|
||||||
|
|
|
@ -367,6 +367,13 @@ export default class iOS {
|
||||||
iOS.call('sendSjrUsingShareDialog', fileName, emailSubject, emailBody, shareType);
|
iOS.call('sendSjrUsingShareDialog', fileName, emailSubject, emailBody, shareType);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static registerLibraryAssets (assets, fcn) {
|
||||||
|
(async () => {
|
||||||
|
await iOS.call('registerLibraryAssets', assets);
|
||||||
|
fcn && fcn();
|
||||||
|
})();
|
||||||
|
}
|
||||||
|
|
||||||
// Name of the device/iPad to display on the sharing dialog page
|
// Name of the device/iPad to display on the sharing dialog page
|
||||||
// fcn is called with the device name as an arg
|
// fcn is called with the device name as an arg
|
||||||
static deviceName (fcn) {
|
static deviceName (fcn) {
|
||||||
|
|
Loading…
Reference in a new issue