2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-30 08:10:25 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include <string>
|
2014-03-16 01:13:06 +00:00
|
|
|
#include <vector>
|
2013-04-30 08:10:25 +00:00
|
|
|
|
2015-02-11 06:55:44 +00:00
|
|
|
#include "atom/common/native_mate_converters/image_converter.h"
|
2014-06-05 03:43:45 +00:00
|
|
|
#include "atom/common/native_mate_converters/string16_converter.h"
|
2015-07-07 05:17:33 +00:00
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2015-06-10 04:12:37 +00:00
|
|
|
#include "native_mate/arguments.h"
|
2014-04-16 07:31:59 +00:00
|
|
|
#include "native_mate/dictionary.h"
|
2015-02-11 06:55:44 +00:00
|
|
|
#include "third_party/skia/include/core/SkBitmap.h"
|
2013-04-30 08:10:25 +00:00
|
|
|
#include "ui/base/clipboard/clipboard.h"
|
2014-06-28 14:33:00 +00:00
|
|
|
#include "ui/base/clipboard/scoped_clipboard_writer.h"
|
2015-02-11 06:55:44 +00:00
|
|
|
#include "ui/gfx/image/image.h"
|
2013-12-11 07:48:19 +00:00
|
|
|
|
2014-04-17 05:45:14 +00:00
|
|
|
#include "atom/common/node_includes.h"
|
2013-04-30 08:10:25 +00:00
|
|
|
|
2014-04-15 07:50:00 +00:00
|
|
|
namespace {
|
2013-04-30 08:10:25 +00:00
|
|
|
|
2015-06-10 04:12:37 +00:00
|
|
|
ui::ClipboardType GetClipboardType(mate::Arguments* args) {
|
|
|
|
std::string type;
|
|
|
|
if (args->GetNext(&type) && type == "selection")
|
|
|
|
return ui::CLIPBOARD_TYPE_SELECTION;
|
|
|
|
else
|
|
|
|
return ui::CLIPBOARD_TYPE_COPY_PASTE;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<base::string16> AvailableFormats(mate::Arguments* args) {
|
2015-05-22 09:29:11 +00:00
|
|
|
std::vector<base::string16> format_types;
|
|
|
|
bool ignore;
|
2013-04-30 08:10:25 +00:00
|
|
|
ui::Clipboard* clipboard = ui::Clipboard::GetForCurrentThread();
|
2015-06-10 04:12:37 +00:00
|
|
|
clipboard->ReadAvailableTypes(GetClipboardType(args), &format_types, &ignore);
|
2015-05-22 09:29:11 +00:00
|
|
|
return format_types;
|
2013-04-30 08:10:25 +00:00
|
|
|
}
|
|
|
|
|
2015-06-10 04:12:37 +00:00
|
|
|
bool Has(const std::string& format_string, mate::Arguments* args) {
|
2015-05-27 08:05:51 +00:00
|
|
|
ui::Clipboard* clipboard = ui::Clipboard::GetForCurrentThread();
|
|
|
|
ui::Clipboard::FormatType format(ui::Clipboard::GetFormatType(format_string));
|
2015-06-10 04:12:37 +00:00
|
|
|
return clipboard->IsFormatAvailable(format, GetClipboardType(args));
|
2015-05-27 08:05:51 +00:00
|
|
|
}
|
|
|
|
|
2014-06-05 06:48:12 +00:00
|
|
|
std::string Read(const std::string& format_string,
|
2015-06-10 04:12:37 +00:00
|
|
|
mate::Arguments* args) {
|
2013-04-30 08:10:25 +00:00
|
|
|
ui::Clipboard* clipboard = ui::Clipboard::GetForCurrentThread();
|
|
|
|
ui::Clipboard::FormatType format(ui::Clipboard::GetFormatType(format_string));
|
|
|
|
|
|
|
|
std::string data;
|
|
|
|
clipboard->ReadData(format, &data);
|
2014-04-15 07:50:00 +00:00
|
|
|
return data;
|
2013-04-30 08:10:25 +00:00
|
|
|
}
|
|
|
|
|
2015-07-07 05:17:33 +00:00
|
|
|
void Write(const mate::Dictionary& data,
|
|
|
|
mate::Arguments* args) {
|
|
|
|
ui::ScopedClipboardWriter writer(GetClipboardType(args));
|
2016-06-24 22:14:28 +00:00
|
|
|
base::string16 text, html, bookmark;
|
2015-07-07 05:17:33 +00:00
|
|
|
gfx::Image image;
|
|
|
|
|
2016-06-24 22:14:28 +00:00
|
|
|
if (data.Get("text", &text)) {
|
2015-07-07 05:17:33 +00:00
|
|
|
writer.WriteText(text);
|
|
|
|
|
2016-06-24 22:14:28 +00:00
|
|
|
if (data.Get("bookmark", &bookmark))
|
|
|
|
writer.WriteBookmark(bookmark, base::UTF16ToUTF8(text));
|
|
|
|
}
|
|
|
|
|
2016-02-04 18:38:47 +00:00
|
|
|
if (data.Get("rtf", &text)) {
|
|
|
|
std::string rtf = base::UTF16ToUTF8(text);
|
|
|
|
writer.WriteRTF(rtf);
|
|
|
|
}
|
|
|
|
|
2015-07-07 05:17:33 +00:00
|
|
|
if (data.Get("html", &html))
|
|
|
|
writer.WriteHTML(html, std::string());
|
|
|
|
|
|
|
|
if (data.Get("image", &image))
|
|
|
|
writer.WriteImage(image.AsBitmap());
|
|
|
|
}
|
|
|
|
|
2015-06-10 04:12:37 +00:00
|
|
|
base::string16 ReadText(mate::Arguments* args) {
|
2014-06-28 14:33:00 +00:00
|
|
|
base::string16 data;
|
2015-07-07 05:17:33 +00:00
|
|
|
ui::Clipboard* clipboard = ui::Clipboard::GetForCurrentThread();
|
|
|
|
auto type = GetClipboardType(args);
|
|
|
|
if (clipboard->IsFormatAvailable(
|
|
|
|
ui::Clipboard::GetPlainTextWFormatType(), type)) {
|
|
|
|
clipboard->ReadText(type, &data);
|
|
|
|
} else if (clipboard->IsFormatAvailable(
|
|
|
|
ui::Clipboard::GetPlainTextFormatType(), type)) {
|
|
|
|
std::string result;
|
|
|
|
clipboard->ReadAsciiText(type, &result);
|
|
|
|
data = base::ASCIIToUTF16(result);
|
|
|
|
}
|
2014-04-15 07:50:00 +00:00
|
|
|
return data;
|
2013-04-30 08:10:25 +00:00
|
|
|
}
|
|
|
|
|
2015-06-10 04:12:37 +00:00
|
|
|
void WriteText(const base::string16& text, mate::Arguments* args) {
|
|
|
|
ui::ScopedClipboardWriter writer(GetClipboardType(args));
|
2014-06-28 14:33:00 +00:00
|
|
|
writer.WriteText(text);
|
2013-04-30 08:10:25 +00:00
|
|
|
}
|
|
|
|
|
2016-02-05 08:06:21 +00:00
|
|
|
base::string16 ReadRtf(mate::Arguments* args) {
|
|
|
|
std::string data;
|
|
|
|
ui::Clipboard* clipboard = ui::Clipboard::GetForCurrentThread();
|
|
|
|
clipboard->ReadRTF(GetClipboardType(args), &data);
|
|
|
|
return base::UTF8ToUTF16(data);
|
|
|
|
}
|
|
|
|
|
2016-02-04 18:38:47 +00:00
|
|
|
void WriteRtf(const std::string& text, mate::Arguments* args) {
|
|
|
|
ui::ScopedClipboardWriter writer(GetClipboardType(args));
|
|
|
|
writer.WriteRTF(text);
|
|
|
|
}
|
|
|
|
|
2015-06-10 04:12:37 +00:00
|
|
|
base::string16 ReadHtml(mate::Arguments* args) {
|
2015-05-22 09:29:11 +00:00
|
|
|
base::string16 data;
|
|
|
|
base::string16 html;
|
|
|
|
std::string url;
|
2016-03-08 04:40:10 +00:00
|
|
|
uint32_t start;
|
|
|
|
uint32_t end;
|
2015-06-10 04:12:37 +00:00
|
|
|
ui::Clipboard* clipboard = ui::Clipboard::GetForCurrentThread();
|
|
|
|
clipboard->ReadHTML(GetClipboardType(args), &html, &url, &start, &end);
|
2015-05-22 09:29:11 +00:00
|
|
|
data = html.substr(start, end - start);
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2015-06-10 04:12:37 +00:00
|
|
|
void WriteHtml(const base::string16& html, mate::Arguments* args) {
|
|
|
|
ui::ScopedClipboardWriter writer(GetClipboardType(args));
|
2015-05-22 09:29:11 +00:00
|
|
|
writer.WriteHTML(html, std::string());
|
|
|
|
}
|
|
|
|
|
2016-06-24 22:08:12 +00:00
|
|
|
v8::Local<v8::Value> ReadBookmark(mate::Arguments* args) {
|
|
|
|
base::string16 title;
|
|
|
|
std::string url;
|
|
|
|
mate::Dictionary dict = mate::Dictionary::CreateEmpty(args->isolate());
|
|
|
|
ui::Clipboard* clipboard = ui::Clipboard::GetForCurrentThread();
|
|
|
|
clipboard->ReadBookmark(&title, &url);
|
|
|
|
dict.Set("title", title);
|
|
|
|
dict.Set("url", url);
|
|
|
|
return dict.GetHandle();
|
|
|
|
}
|
|
|
|
|
|
|
|
void WriteBookmark(const base::string16& title, const std::string& url,
|
|
|
|
mate::Arguments* args) {
|
|
|
|
ui::ScopedClipboardWriter writer(GetClipboardType(args));
|
|
|
|
writer.WriteBookmark(title, url);
|
|
|
|
}
|
|
|
|
|
2015-06-10 04:12:37 +00:00
|
|
|
gfx::Image ReadImage(mate::Arguments* args) {
|
|
|
|
ui::Clipboard* clipboard = ui::Clipboard::GetForCurrentThread();
|
|
|
|
SkBitmap bitmap = clipboard->ReadImage(GetClipboardType(args));
|
2015-02-11 06:55:44 +00:00
|
|
|
return gfx::Image::CreateFrom1xBitmap(bitmap);
|
|
|
|
}
|
|
|
|
|
2015-06-10 04:12:37 +00:00
|
|
|
void WriteImage(const gfx::Image& image, mate::Arguments* args) {
|
|
|
|
ui::ScopedClipboardWriter writer(GetClipboardType(args));
|
2015-03-26 04:54:15 +00:00
|
|
|
writer.WriteImage(image.AsBitmap());
|
|
|
|
}
|
|
|
|
|
2015-06-10 04:12:37 +00:00
|
|
|
void Clear(mate::Arguments* args) {
|
|
|
|
ui::Clipboard::GetForCurrentThread()->Clear(GetClipboardType(args));
|
2013-04-30 08:10:25 +00:00
|
|
|
}
|
|
|
|
|
2015-05-22 11:11:22 +00:00
|
|
|
void Initialize(v8::Local<v8::Object> exports, v8::Local<v8::Value> unused,
|
|
|
|
v8::Local<v8::Context> context, void* priv) {
|
2014-06-29 12:48:44 +00:00
|
|
|
mate::Dictionary dict(context->GetIsolate(), exports);
|
2015-06-10 04:12:37 +00:00
|
|
|
dict.SetMethod("availableFormats", &AvailableFormats);
|
|
|
|
dict.SetMethod("has", &Has);
|
|
|
|
dict.SetMethod("read", &Read);
|
2015-07-07 05:17:33 +00:00
|
|
|
dict.SetMethod("write", &Write);
|
2015-06-10 04:12:37 +00:00
|
|
|
dict.SetMethod("readText", &ReadText);
|
|
|
|
dict.SetMethod("writeText", &WriteText);
|
2016-05-26 21:23:20 +00:00
|
|
|
dict.SetMethod("readRTF", &ReadRtf);
|
|
|
|
dict.SetMethod("writeRTF", &WriteRtf);
|
|
|
|
dict.SetMethod("readHTML", &ReadHtml);
|
|
|
|
dict.SetMethod("writeHTML", &WriteHtml);
|
2016-06-24 22:08:12 +00:00
|
|
|
dict.SetMethod("readBookmark", &ReadBookmark);
|
|
|
|
dict.SetMethod("writeBookmark", &WriteBookmark);
|
2016-05-26 21:23:20 +00:00
|
|
|
dict.SetMethod("readImage", &ReadImage);
|
|
|
|
dict.SetMethod("writeImage", &WriteImage);
|
|
|
|
dict.SetMethod("clear", &Clear);
|
|
|
|
|
2016-05-26 21:28:33 +00:00
|
|
|
// TODO(kevinsawicki): Remove in 2.0, deprecate before then with warnings
|
2016-02-05 08:06:21 +00:00
|
|
|
dict.SetMethod("readRtf", &ReadRtf);
|
2016-02-04 18:38:47 +00:00
|
|
|
dict.SetMethod("writeRtf", &WriteRtf);
|
2015-06-10 04:12:37 +00:00
|
|
|
dict.SetMethod("readHtml", &ReadHtml);
|
|
|
|
dict.SetMethod("writeHtml", &WriteHtml);
|
2013-04-30 08:10:25 +00:00
|
|
|
}
|
|
|
|
|
2014-04-15 07:50:00 +00:00
|
|
|
} // namespace
|
2013-04-30 08:10:25 +00:00
|
|
|
|
2014-06-29 12:48:44 +00:00
|
|
|
NODE_MODULE_CONTEXT_AWARE_BUILTIN(atom_common_clipboard, Initialize)
|