/* This file is part of the dandelion*. dandelion* is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. dandelion* is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the dandelion*. If not, see . */ package com.github.dfa.diaspora_android.util; import android.content.Context; import android.content.Intent; import android.content.res.Resources; import android.net.Uri; import android.os.Build; import android.os.Bundle; import android.os.Environment; import android.support.annotation.RawRes; import android.support.annotation.StringRes; import android.support.design.widget.Snackbar; import android.support.v4.content.ContextCompat; import android.support.v7.app.AlertDialog; import android.text.Html; import android.text.SpannableString; import android.text.TextUtils; import android.text.method.LinkMovementMethod; import android.util.TypedValue; import android.view.View; import android.widget.LinearLayout; import android.widget.ScrollView; import android.widget.TextView; import com.github.dfa.diaspora_android.R; import com.github.dfa.diaspora_android.web.WebHelper; import java.io.BufferedReader; import java.io.File; import java.io.IOException; import java.io.InputStreamReader; import java.text.SimpleDateFormat; import java.util.Arrays; import java.util.Date; import java.util.Locale; public class Helpers { public static int getColorFromRessource(Context context, int ressourceId) { Resources res = context.getResources(); if (Build.VERSION.SDK_INT >= 23) { return res.getColor(ressourceId, context.getTheme()); } else { return res.getColor(ressourceId); } } public static File createImageFile() throws IOException { // Create an image file name String timeStamp = new SimpleDateFormat("dd-MM-yy_HH-mm", Locale.getDefault()).format(new Date()); String imageFileName = "JPEG_" + timeStamp + "_"; AppLog.d(Helpers.class, Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES).getAbsolutePath()); File storageDir = Environment.getExternalStoragePublicDirectory( Environment.DIRECTORY_PICTURES); return new File( imageFileName + /* prefix */ ".jpg", /* suffix */ storageDir.getAbsolutePath() /* directory */ ); } public static Locale getLocaleByAndroidCode(String code) { if (!TextUtils.isEmpty(code)) { return code.contains("-r") ? new Locale(code.substring(0, 2), code.substring(4, 6)) // de-rAT : new Locale(code); // de } return Locale.getDefault(); } public static String readTextfileFromRawRessource(Context context, int rawRessourceId, String linePrefix, String linePostfix) { StringBuilder sb = new StringBuilder(); String line; BufferedReader br = null; linePrefix = linePrefix == null ? "" : linePrefix; linePostfix = linePostfix == null ? "" : linePostfix; try { br = new BufferedReader(new InputStreamReader(context.getResources().openRawResource(rawRessourceId))); while ((line = br.readLine()) != null) { sb.append(linePrefix); sb.append(line); sb.append(linePostfix); sb.append("\n"); } } catch (Exception ignored) { } finally { if (br != null) { try { br.close(); } catch (IOException ignored) { } } } return sb.toString(); } public static String loadMarkdownFromRawForTextView(Context context, @RawRes int rawMdFile, String prepend) { try { return new SimpleMarkdownParser() .parse(context.getResources().openRawResource(rawMdFile), SimpleMarkdownParser.FILTER_ANDROID_TEXTVIEW, prepend) .replaceColor("#000001", ContextCompat.getColor(context, R.color.accent)) .removeMultiNewlines().replaceBulletCharacter("*").getHtml(); } catch (IOException e) { e.printStackTrace(); return ""; } } public static void showDialogWithHtmlTextView(Context context, String html, @StringRes int resTitleId) { LinearLayout layout = new LinearLayout(context); TextView textView = new TextView(context); textView.setMovementMethod(LinkMovementMethod.getInstance()); ScrollView root = new ScrollView(context); int margin = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 20, context.getResources().getDisplayMetrics()); LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams( LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.MATCH_PARENT); layoutParams.setMargins(margin, 0, margin, 0); layout.setLayoutParams(layoutParams); layout.addView(textView); root.addView(layout); textView.setText(new SpannableString(Html.fromHtml(html))); AlertDialog.Builder dialog = new AlertDialog.Builder(context) .setPositiveButton(android.R.string.ok, null) .setTitle(resTitleId) .setView(root); dialog.show(); } public static String colorToHex(int color) { return "#" + Integer.toHexString(color & 0x00ffffff); } public static void printBundle(Bundle savedInstanceState, String k) { if (savedInstanceState != null) { for (String key : savedInstanceState.keySet()) { AppLog.d("SAVED", key + " is a key in the bundle " + k); Object bun = savedInstanceState.get(key); if (bun != null) { if (bun instanceof Bundle) { printBundle((Bundle) bun, k + "." + key); } else if (bun instanceof byte[]) { AppLog.d("SAVED", "Key: " + k + "." + key + ": " + Arrays.toString((byte[]) bun)); } else { AppLog.d("SAVED", "Key: " + k + "." + key + ": " + bun.toString()); } } } } } /** * Show Information if user is offline, returns true if is not connected to internet * * @param context Context * @param anchor A view anchor */ public static boolean showInfoIfUserNotConnectedToInternet(Context context, View anchor) { boolean isOnline = WebHelper.isOnline(context); if (!isOnline) { Snackbar.make(anchor, R.string.no_internet, Snackbar.LENGTH_LONG).show(); } return !isOnline; } /** * Send an Intent that opens url in any browser * * @param context context * @param url url */ public static void openInExternalBrowser(Context context, String url) { Intent openBrowserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url)); openBrowserIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); context.startActivity(openBrowserIntent); } }