-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from hoangsonww/movieverse-mobile
Fix: Enhanced mobile app
- Loading branch information
Showing
160 changed files
with
19,244 additions
and
0 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
...1709d9-b4c0-4b2f-87d0-642aa59a89d3/storage_v2/_src_/schema/information_schema.FNRwLQ.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
2 changes: 2 additions & 0 deletions
2
...1709d9-b4c0-4b2f-87d0-642aa59a89d3/storage_v2/_src_/schema/performance_schema.kIw0nw.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
170 changes: 170 additions & 0 deletions
170
MovieVerse-Mobile/platforms/android/CordovaLib/src/org/apache/cordova/AllowList.java
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,170 @@ | ||
/* | ||
Licensed to the Apache Software Foundation (ASF) under one | ||
or more contributor license agreements. See the NOTICE file | ||
distributed with this work for additional information | ||
regarding copyright ownership. The ASF licenses this file | ||
to you under the Apache License, Version 2.0 (the | ||
"License"); you may not use this file except in compliance | ||
with the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, | ||
software distributed under the License is distributed on an | ||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
KIND, either express or implied. See the License for the | ||
specific language governing permissions and limitations | ||
under the License. | ||
*/ | ||
package org.apache.cordova; | ||
|
||
import java.net.MalformedURLException; | ||
import java.util.ArrayList; | ||
import java.util.Iterator; | ||
import java.util.regex.Matcher; | ||
import java.util.regex.Pattern; | ||
|
||
import org.apache.cordova.LOG; | ||
|
||
import android.net.Uri; | ||
|
||
public class AllowList { | ||
private static class URLPattern { | ||
public Pattern scheme; | ||
public Pattern host; | ||
public Integer port; | ||
public Pattern path; | ||
|
||
private String regexFromPattern(String pattern, boolean allowWildcards) { | ||
final String toReplace = "\\.[]{}()^$?+|"; | ||
StringBuilder regex = new StringBuilder(); | ||
for (int i=0; i < pattern.length(); i++) { | ||
char c = pattern.charAt(i); | ||
if (c == '*' && allowWildcards) { | ||
regex.append("."); | ||
} else if (toReplace.indexOf(c) > -1) { | ||
regex.append('\\'); | ||
} | ||
regex.append(c); | ||
} | ||
return regex.toString(); | ||
} | ||
|
||
public URLPattern(String scheme, String host, String port, String path) throws MalformedURLException { | ||
try { | ||
if (scheme == null || "*".equals(scheme)) { | ||
this.scheme = null; | ||
} else { | ||
this.scheme = Pattern.compile(regexFromPattern(scheme, false), Pattern.CASE_INSENSITIVE); | ||
} | ||
if ("*".equals(host)) { | ||
this.host = null; | ||
} else if (host.startsWith("*.")) { | ||
this.host = Pattern.compile("([a-z0-9.-]*\\.)?" + regexFromPattern(host.substring(2), false), Pattern.CASE_INSENSITIVE); | ||
} else { | ||
this.host = Pattern.compile(regexFromPattern(host, false), Pattern.CASE_INSENSITIVE); | ||
} | ||
if (port == null || "*".equals(port)) { | ||
this.port = null; | ||
} else { | ||
this.port = Integer.parseInt(port,10); | ||
} | ||
if (path == null || "/*".equals(path)) { | ||
this.path = null; | ||
} else { | ||
this.path = Pattern.compile(regexFromPattern(path, true)); | ||
} | ||
} catch (NumberFormatException e) { | ||
throw new MalformedURLException("Port must be a number"); | ||
} | ||
} | ||
|
||
public boolean matches(Uri uri) { | ||
try { | ||
return ((scheme == null || scheme.matcher(uri.getScheme()).matches()) && | ||
(host == null || host.matcher(uri.getHost()).matches()) && | ||
(port == null || port.equals(uri.getPort())) && | ||
(path == null || path.matcher(uri.getPath()).matches())); | ||
} catch (Exception e) { | ||
LOG.d(TAG, e.toString()); | ||
return false; | ||
} | ||
} | ||
} | ||
|
||
private ArrayList<URLPattern> allowList; | ||
|
||
public static final String TAG = "CordovaAllowList"; | ||
|
||
public AllowList() { | ||
this.allowList = new ArrayList<URLPattern>(); | ||
} | ||
|
||
/* Match patterns (from http://developer.chrome.com/extensions/match_patterns.html) | ||
* | ||
* <url-pattern> := <scheme>://<host><path> | ||
* <scheme> := '*' | 'http' | 'https' | 'file' | 'ftp' | 'chrome-extension' | ||
* <host> := '*' | '*.' <any char except '/' and '*'>+ | ||
* <path> := '/' <any chars> | ||
* | ||
* We extend this to explicitly allow a port attached to the host, and we allow | ||
* the scheme to be omitted for backwards compatibility. (Also host is not required | ||
* to begin with a "*" or "*.".) | ||
*/ | ||
public void addAllowListEntry(String origin, boolean subdomains) { | ||
if (allowList != null) { | ||
try { | ||
// Unlimited access to network resources | ||
if (origin.compareTo("*") == 0) { | ||
LOG.d(TAG, "Unlimited access to network resources"); | ||
allowList = null; | ||
} | ||
else { // specific access | ||
Pattern parts = Pattern.compile("^((\\*|[A-Za-z-]+):(//)?)?(\\*|((\\*\\.)?[^*/:]+))?(:(\\d+))?(/.*)?"); | ||
Matcher m = parts.matcher(origin); | ||
if (m.matches()) { | ||
String scheme = m.group(2); | ||
String host = m.group(4); | ||
// Special case for two urls which are allowed to have empty hosts | ||
if (("file".equals(scheme) || "content".equals(scheme)) && host == null) host = "*"; | ||
String port = m.group(8); | ||
String path = m.group(9); | ||
if (scheme == null) { | ||
// XXX making it stupid friendly for people who forget to include protocol/SSL | ||
allowList.add(new URLPattern("http", host, port, path)); | ||
allowList.add(new URLPattern("https", host, port, path)); | ||
} else { | ||
allowList.add(new URLPattern(scheme, host, port, path)); | ||
} | ||
} | ||
} | ||
} catch (Exception e) { | ||
LOG.d(TAG, "Failed to add origin %s", origin); | ||
} | ||
} | ||
} | ||
|
||
|
||
/** | ||
* Determine if URL is in approved list of URLs to load. | ||
* | ||
* @param uri | ||
* @return true if wide open or allow listed | ||
*/ | ||
public boolean isUrlAllowListed(String uri) { | ||
// If there is no allowList, then it's wide open | ||
if (allowList == null) return true; | ||
|
||
Uri parsedUri = Uri.parse(uri); | ||
// Look for match in allow list | ||
Iterator<URLPattern> pit = allowList.iterator(); | ||
while (pit.hasNext()) { | ||
URLPattern p = pit.next(); | ||
if (p.matches(parsedUri)) { | ||
return true; | ||
} | ||
} | ||
return false; | ||
} | ||
|
||
} |
69 changes: 69 additions & 0 deletions
69
...Verse-Mobile/platforms/android/CordovaLib/src/org/apache/cordova/AuthenticationToken.java
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,69 @@ | ||
/* | ||
Licensed to the Apache Software Foundation (ASF) under one | ||
or more contributor license agreements. See the NOTICE file | ||
distributed with this work for additional information | ||
regarding copyright ownership. The ASF licenses this file | ||
to you under the Apache License, Version 2.0 (the | ||
"License"); you may not use this file except in compliance | ||
with the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, | ||
software distributed under the License is distributed on an | ||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
KIND, either express or implied. See the License for the | ||
specific language governing permissions and limitations | ||
under the License. | ||
*/ | ||
package org.apache.cordova; | ||
|
||
/** | ||
* The Class AuthenticationToken defines the userName and password to be used for authenticating a web resource | ||
*/ | ||
public class AuthenticationToken { | ||
private String userName; | ||
private String password; | ||
|
||
/** | ||
* Gets the user name. | ||
* | ||
* @return the user name | ||
*/ | ||
public String getUserName() { | ||
return userName; | ||
} | ||
|
||
/** | ||
* Sets the user name. | ||
* | ||
* @param userName | ||
* the new user name | ||
*/ | ||
public void setUserName(String userName) { | ||
this.userName = userName; | ||
} | ||
|
||
/** | ||
* Gets the password. | ||
* | ||
* @return the password | ||
*/ | ||
public String getPassword() { | ||
return password; | ||
} | ||
|
||
/** | ||
* Sets the password. | ||
* | ||
* @param password | ||
* the new password | ||
*/ | ||
public void setPassword(String password) { | ||
this.password = password; | ||
} | ||
|
||
|
||
|
||
|
||
} |
74 changes: 74 additions & 0 deletions
74
MovieVerse-Mobile/platforms/android/CordovaLib/src/org/apache/cordova/BuildHelper.java
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,74 @@ | ||
/* | ||
Licensed to the Apache Software Foundation (ASF) under one | ||
or more contributor license agreements. See the NOTICE file | ||
distributed with this work for additional information | ||
regarding copyright ownership. The ASF licenses this file | ||
to you under the Apache License, Version 2.0 (the | ||
"License"); you may not use this file except in compliance | ||
with the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, | ||
software distributed under the License is distributed on an | ||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
KIND, either express or implied. See the License for the | ||
specific language governing permissions and limitations | ||
under the License. | ||
*/ | ||
|
||
package org.apache.cordova; | ||
|
||
/* | ||
* This is a utility class that allows us to get the BuildConfig variable, which is required | ||
* for the use of different providers. This is not guaranteed to work, and it's better for this | ||
* to be set in the build step in config.xml | ||
* | ||
*/ | ||
|
||
import android.app.Activity; | ||
import android.content.Context; | ||
|
||
import java.lang.reflect.Field; | ||
|
||
|
||
public class BuildHelper { | ||
|
||
|
||
private static String TAG="BuildHelper"; | ||
|
||
/* | ||
* This needs to be implemented if you wish to use the Camera Plugin or other plugins | ||
* that read the Build Configuration. | ||
* | ||
* Thanks to Phil@Medtronic and Graham Borland for finding the answer and posting it to | ||
* StackOverflow. This is annoying as hell! However, this method does not work with | ||
* ProGuard, and you should use the config.xml to define the application_id | ||
* | ||
*/ | ||
|
||
public static Object getBuildConfigValue(Context ctx, String key) | ||
{ | ||
try | ||
{ | ||
String packageName = ctx.getApplicationInfo().packageName; | ||
Class<?> clazz = Class.forName(packageName + ".BuildConfig"); | ||
Field field = clazz.getField(key); | ||
return field.get(null); | ||
} catch (ClassNotFoundException e) { | ||
LOG.d(TAG, "Unable to get the BuildConfig, is this built with ANT?"); | ||
e.printStackTrace(); | ||
} catch (NoSuchFieldException e) { | ||
LOG.d(TAG, key + " is not a valid field. Check your build.gradle"); | ||
} catch (IllegalAccessException e) { | ||
LOG.d(TAG, "Illegal Access Exception: Let's print a stack trace."); | ||
e.printStackTrace(); | ||
} catch (NullPointerException e) { | ||
LOG.d(TAG, "Null Pointer Exception: Let's print a stack trace."); | ||
e.printStackTrace(); | ||
} | ||
|
||
return null; | ||
} | ||
|
||
} |
Oops, something went wrong.