Commit 412856fc authored by BharathwajShankar's avatar BharathwajShankar
Browse files

LR-278 - minimizing function calls

Showing with 5 additions and 7 deletions
+5 -7
......@@ -236,9 +236,11 @@ public class QRCodeDownloadManagementActor extends BaseActor {
//check if template url contains dail storage base path,if yes then append it with cnameurl and dial bucket name
String templateUrl = (String) listOfMap.get(0).get("url");
if (templateUrl.contains(getConfigValue(DIAL_STORAGE_BASE_PATH_PLACEHOLDER)))
templateUrl = templateUrl.replace(getConfigValue(DIAL_STORAGE_BASE_PATH_PLACEHOLDER),
getConfigValue(CLOUD_STORAGE_CNAME_URL).isEmpty() ? getConfigValue(CLOUD_STORE_BASE_PATH) : getConfigValue(CLOUD_STORAGE_CNAME_URL)
String dailStorageBasePath = getConfigValue(DIAL_STORAGE_BASE_PATH_PLACEHOLDER);
String cnameUrl = getConfigValue(CLOUD_STORAGE_CNAME_URL);
if (templateUrl.contains(dailStorageBasePath))
templateUrl = templateUrl.replace(dailStorageBasePath,
cnameUrl.isEmpty() ? getConfigValue(CLOUD_STORE_BASE_PATH) :cnameUrl
+ "/" + getConfigValue(CLOUD_STORAGE_DIAL_BUCKET_NAME));
return templateUrl;
}
......
......@@ -789,13 +789,9 @@ public final class JsonKey {
public static final String CLOUD_FOLDER_CONTENT = "sunbird_cloud_content_folder";
public static final String CLOUD_STORE_BASE_PATH = "cloud_storage_base_url";
public static final String CLOUD_STORAGE_CNAME_URL= "cloud_storage_cname_url";
public static final String CLOUD_STORAGE_DIAL_BUCKET_NAME = "cloud_storage_dial_bucketname";
public static final String DIAL_STORAGE_BASE_PATH_PLACEHOLDER="DIAL_STORAGE_BASE_PATH";
public static final String CLOUD_STORE_BASE_PATH_PLACEHOLDER = "cloud_store_base_path_placeholder";
public static final String TO_URL = "toUrl";
public static final String TTL = "ttl";
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment