bitwarden-android/src/Android/Services/DeviceActionService.cs

136 lines
4.2 KiB
C#
Raw Normal View History

using System;
using Android.Content;
using Bit.App.Abstractions;
using Xamarin.Forms;
using Android.Webkit;
using Plugin.CurrentActivity;
using System.IO;
using Android.Support.V4.Content;
2017-07-22 22:38:08 +03:00
using Bit.App;
namespace Bit.Android.Services
{
public class DeviceActionService : IDeviceActionService
{
private readonly IAppSettingsService _appSettingsService;
public DeviceActionService(IAppSettingsService appSettingsService)
{
_appSettingsService = appSettingsService;
}
public void CopyToClipboard(string text)
{
var clipboardManager = (ClipboardManager)Forms.Context.GetSystemService(Context.ClipboardService);
clipboardManager.Text = text;
}
public bool OpenFile(byte[] fileData, string id, string fileName)
{
2017-07-13 16:01:00 +03:00
if(!CanOpenFile(fileName))
{
return false;
}
2017-07-13 19:08:48 +03:00
var extension = MimeTypeMap.GetFileExtensionFromUrl(fileName.Replace(' ', '_').ToLower());
if(extension == null)
{
return false;
}
2017-07-13 19:08:48 +03:00
var mimeType = MimeTypeMap.Singleton.GetMimeTypeFromExtension(extension);
if(mimeType == null)
{
return false;
}
var cachePath = CrossCurrentActivity.Current.Activity.CacheDir;
var filePath = Path.Combine(cachePath.Path, fileName);
2017-07-13 16:01:00 +03:00
File.WriteAllBytes(filePath, fileData);
var file = new Java.IO.File(cachePath, fileName);
2017-07-13 16:01:00 +03:00
if(!file.IsFile)
{
return false;
}
try
{
2017-07-13 16:01:00 +03:00
var intent = new Intent(Intent.ActionView);
var uri = FileProvider.GetUriForFile(CrossCurrentActivity.Current.Activity.ApplicationContext,
"com.x8bit.bitwarden.fileprovider", file);
intent.SetDataAndType(uri, mimeType);
intent.SetFlags(ActivityFlags.GrantReadUriPermission);
CrossCurrentActivity.Current.Activity.StartActivity(intent);
return true;
}
catch { }
return false;
}
2017-07-13 16:01:00 +03:00
public bool CanOpenFile(string fileName)
{
2017-07-13 19:08:48 +03:00
var extension = MimeTypeMap.GetFileExtensionFromUrl(fileName.Replace(' ', '_').ToLower());
2017-07-13 16:01:00 +03:00
if(extension == null)
{
return false;
}
2017-07-13 19:08:48 +03:00
var mimeType = MimeTypeMap.Singleton.GetMimeTypeFromExtension(extension);
2017-07-13 16:01:00 +03:00
if(mimeType == null)
{
return false;
}
var pm = CrossCurrentActivity.Current.Activity.PackageManager;
var intent = new Intent(Intent.ActionView);
intent.SetType(mimeType);
var activities = pm.QueryIntentActivities(intent, global::Android.Content.PM.PackageInfoFlags.MatchDefaultOnly);
return (activities?.Count ?? 0) > 0;
}
2017-07-13 17:51:45 +03:00
public void ClearCache()
{
try
{
DeleteDir(CrossCurrentActivity.Current.Activity.CacheDir);
_appSettingsService.LastCacheClear = DateTime.UtcNow;
2017-07-13 17:51:45 +03:00
}
catch(Exception) { }
}
private bool DeleteDir(Java.IO.File dir)
{
if(dir != null && dir.IsDirectory)
{
var children = dir.List();
for(int i = 0; i < children.Length; i++)
{
var success = DeleteDir(new Java.IO.File(dir, children[i]));
if(!success)
{
return false;
}
}
return dir.Delete();
}
else if(dir != null && dir.IsFile)
{
return dir.Delete();
}
else
{
return false;
}
}
2017-07-15 08:09:06 +03:00
2017-07-22 22:38:08 +03:00
public void SelectFile()
2017-07-15 08:09:06 +03:00
{
2017-07-22 22:38:08 +03:00
var intent = new Intent(Intent.ActionOpenDocument);
intent.AddCategory(Intent.CategoryOpenable);
intent.SetType("*/*");
CrossCurrentActivity.Current.Activity.StartActivityForResult(intent, Constants.SelectFileRequestCode);
2017-07-15 08:09:06 +03:00
}
}
}