From 454a6f518c444188cca4c2e351db6641db5f5cc2 Mon Sep 17 00:00:00 2001 From: sgrebnov Date: Tue, 8 Sep 2015 15:25:20 +0300 Subject: [PATCH] CB-9622 Windows Phone 8 Camera Option destinationType:NATIVE_URI is a NO-OP MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • WP8 proxy now supports NATIVE_URI param • Treat NATIVE_URI same way as FILE_URI (similar to Android). This closes #119 --- src/wp/Camera.cs | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/src/wp/Camera.cs b/src/wp/Camera.cs index f4df7fc..264a205 100644 --- a/src/wp/Camera.cs +++ b/src/wp/Camera.cs @@ -46,6 +46,11 @@ namespace WPCordovaClassLib.Cordova.Commands /// private const int FILE_URI = 1; + /// + /// Return native uri + /// + private const int NATIVE_URI = 2; + /// /// Choose image from picture library /// @@ -214,10 +219,17 @@ namespace WPCordovaClassLib.Cordova.Commands return; } - if(cameraOptions.DestinationType != Camera.FILE_URI && cameraOptions.DestinationType != Camera.DATA_URL ) + // Api supports FILE_URI, DATA_URL, NATIVE_URI destination types. + // Treat all other destination types as an error. + switch (cameraOptions.DestinationType) { - DispatchCommandResult(new PluginResult(PluginResult.Status.ERROR, "Incorrect option: destinationType")); - return; + case Camera.FILE_URI: + case Camera.DATA_URL: + case Camera.NATIVE_URI: + break; + default: + DispatchCommandResult(new PluginResult(PluginResult.Status.ERROR, "Incorrect option: destinationType")); + return; } ChooserBase chooserTask = null; @@ -304,7 +316,7 @@ namespace WPCordovaClassLib.Cordova.Commands { imagePathOrContent = GetImageContent(rotImageStream); } - else // FILE_URL + else // FILE_URL or NATIVE_URI (both use the same resultant uri format) { imagePathOrContent = SaveImageToLocalStorage(rotImageStream, Path.GetFileName(e.OriginalFileName)); } @@ -316,7 +328,7 @@ namespace WPCordovaClassLib.Cordova.Commands { imagePathOrContent = GetImageContent(e.ChosenPhoto); } - else // FILE_URL + else // FILE_URL or NATIVE_URI (both use the same resultant uri format) { imagePathOrContent = SaveImageToLocalStorage(e.ChosenPhoto, Path.GetFileName(e.OriginalFileName)); }