diff --git a/src/main.cpp b/src/main.cpp index a87fa45..d3cfc88 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,326 +1,321 @@ /* SnoreToast is capable to invoke Windows 8 toast notifications. Copyright (C) 2013-2019 Hannah von Reth SnoreToast is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. SnoreToast 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with SnoreToast. If not, see . */ #include "snoretoasts.h" #include "toasteventhandler.h" #include "snoretoastactioncenterintegration.h" #include "linkhelper.h" #include #include #include #include #include #include #include #include using namespace Windows::Foundation; void help(const std::wstring &error) { if (!error.empty()) { std::wcerr << error << std::endl; } else { std::wcerr << L"Welcome to SnoreToast " << SnoreToasts::version() << "." << std::endl << L"A command line application which is capable of creating Windows Toast " L"notifications." << std::endl; } std::wcerr << std::endl << L"---- Usage ----" << std::endl << L"SnoreToast [Options]" << std::endl << std::endl << L"---- Options ----" << std::endl << L"[-t] \t| Displayed on the first line of the toast." << std::endl << L"[-m] <message string>\t| Displayed on the remaining lines, wrapped." << std::endl << L"[-b] <button1;button2 string>| Displayed on the bottom line, can list multiple " L"buttons separated by ;" << std::endl << L"[-tb]\t\t\t| Displayed a textbox on the bottom line, only if buttons are not " L"presented." << std::endl << L"[-p] <image URI>\t| Display toast with an image, local files only." << std::endl - << L"[-w] \t\t\t| Wait for toast to expire or activate." << std::endl << L"[-id] <id>\t\t| sets the id for a notification to be able to close it later." << std::endl << L"[-s] <sound URI> \t| Sets the sound of the notifications, for possible values see " L"http://msdn.microsoft.com/en-us/library/windows/apps/hh761492.aspx." << std::endl << L"[-silent] \t\t| Don't play a sound file when showing the notifications." << std::endl << L"[-appID] <App.ID>\t| Don't create a shortcut but use the provided app id." << std::endl << L"[-pipeName] <\\.\\pipe\\pipeName\\>\t| Provide a name pipe which is used for " L"callbacks." << std::endl << L"[-application] <C:\\foo.exe>\t| Provide a application that might be started if " L"the pipe does not exist." << std::endl - << L"-close <id>\t\t| Closes a currently displayed notification, in order to be able " - L"to close a notification the parameter -w must be used to create the notification." + << L"-close <id>\t\t| Closes a currently displayed notification." << std::endl << std::endl << L"-install <name> <application> <appID>| Creates a shortcut <name> in the start " L"menu which point to the executable <application>, appID used for the " L"notifications." << std::endl << std::endl << L"-v \t\t\t| Print the version and copying information." << std::endl << L"-h\t\t\t| Print these instructions. Same as no args." << std::endl << L"Exit Status\t: Exit Code" << std::endl << L"Failed\t\t: " << static_cast<int>(SnoreToastActions::Actions::Error) << std::endl << std::endl << "Success\t\t: " << static_cast<int>(SnoreToastActions::Actions::Clicked) << std::endl << "Hidden\t\t: " << static_cast<int>(SnoreToastActions::Actions::Hidden) << std::endl << "Dismissed\t: " << static_cast<int>(SnoreToastActions::Actions::Dismissed) << std::endl << "TimedOut\t: " << static_cast<int>(SnoreToastActions::Actions::Timedout) << std::endl << "ButtonPressed\t: " << static_cast<int>(SnoreToastActions::Actions::ButtonClicked) << std::endl << "TextEntered\t: " << static_cast<int>(SnoreToastActions::Actions::TextEntered) << std::endl << std::endl << L"---- Image Notes ----" << std::endl << L"Images must be .png with:" << std::endl << L"\tmaximum dimensions of 1024x1024" << std::endl << L"\tsize <= 200kb" << std::endl << L"These limitations are due to the Toast notification system." << std::endl; } void version() { std::wcerr << L"SnoreToast version " << SnoreToasts::version() << std::endl << L"Copyright (C) 2019 Hannah von Reth <vonreth@kde.org>" << std::endl << L"SnoreToast is free software: you can redistribute it and/or modify" << std::endl << L"it under the terms of the GNU Lesser General Public License as published by" << std::endl << L"the Free Software Foundation, either version 3 of the License, or" << std::endl << L"(at your option) any later version." << std::endl; } SnoreToastActions::Actions parse(std::vector<wchar_t *> args) { HRESULT hr = S_OK; std::wstring appID; std::filesystem::path pipe; std::filesystem::path application; std::wstring title; std::wstring body; std::filesystem::path image; std::wstring id; std::wstring sound(L"Notification.Default"); std::wstring buttons; bool silent = false; - bool wait = false; bool closeNotify = false; bool isTextBoxEnabled = false; auto nextArg = [&](std::vector<wchar_t *>::const_iterator &it, const std::wstring &helpText) -> std::wstring { if (it != args.cend()) { return *it++; } else { help(helpText); exit(static_cast<int>(SnoreToastActions::Actions::Error)); } }; auto it = args.begin() + 1; while (it != args.end()) { std::wstring arg(nextArg(it, L"")); std::transform(arg.begin(), arg.end(), arg.begin(), [](int i) -> int { return ::tolower(i); }); if (arg == L"-m") { body = nextArg(it, L"Missing argument to -m.\n" L"Supply argument as -m \"message string\""); } else if (arg == L"-t") { title = nextArg(it, L"Missing argument to -t.\n" L"Supply argument as -t \"bold title string\""); } else if (arg == L"-p") { std::wstring path = nextArg(it, L"Missing argument to -p." L"Supply argument as -p \"image path\""); if (path.substr(0, 8) != L"file:///") { image = L"file:///"; path = _wfullpath(nullptr, path.c_str(), MAX_PATH); } image.append(path); - } else if (arg == L"-w") { - wait = true; } else if (arg == L"-s") { sound = nextArg(it, L"Missing argument to -s.\n" L"Supply argument as -s \"sound name\""); } else if (arg == L"-id") { id = nextArg(it, L"Missing argument to -id.\n" L"Supply argument as -id \"id\""); } else if (arg == L"-silent") { silent = true; } else if (arg == L"-appid") { appID = nextArg(it, L"Missing argument to -appID.\n" L"Supply argument as -appID \"Your.APP.ID\""); } else if (arg == L"-pipename") { pipe = nextArg(it, L"Missing argument to -pipeName.\n" L"Supply argument as -pipeName \"\\.\\pipe\\foo\\\""); } else if (arg == L"-application") { application = nextArg(it, L"Missing argument to -pipeName.\n" L"Supply argument as -applicatzion \"C:\\foo.exe\""); } else if (arg == L"-b") { buttons = nextArg(it, L"Missing argument to -b.\n" L"Supply argument for buttons as -b \"button1;button2\""); } else if (arg == L"-tb") { isTextBoxEnabled = true; } else if (arg == L"-install") { const std::wstring shortcut( nextArg(it, L"Missing argument to -install.\n" L"Supply argument as -install \"path to your shortcut\" \"path to the " L"application the shortcut should point to\" \"App.ID\"")); const std::wstring exe( nextArg(it, L"Missing argument to -install.\n" L"Supply argument as -install \"path to your shortcut\" \"path to the " L"application the shortcut should point to\" \"App.ID\"")); appID = nextArg(it, L"Missing argument to -install.\n" L"Supply argument as -install \"path to your shortcut\" \"path to the " L"application the shortcut should point to\" \"App.ID\""); return SUCCEEDED(LinkHelper::tryCreateShortcut( shortcut, exe, appID, SnoreToastActionCenterIntegration::uuid())) ? SnoreToastActions::Actions::Clicked : SnoreToastActions::Actions::Error; } else if (arg == L"-close") { id = nextArg(it, L"Missing agument to -close" L"Supply argument as -close \"id\""); closeNotify = true; } else if (arg == L"-v") { version(); return SnoreToastActions::Actions::Clicked; } else if (arg == L"-h") { help(L""); return SnoreToastActions::Actions::Clicked; } else { std::wstringstream ws; ws << L"Unknown argument: " << arg << std::endl; help(ws.str()); return SnoreToastActions::Actions::Error; } } if (appID.empty()) { std::wstringstream _appID; _appID << L"Snore.DesktopToasts." << SnoreToasts::version(); appID = _appID.str(); hr = LinkHelper::tryCreateShortcut(std::filesystem::path(L"SnoreToast") / SnoreToasts::version() / L"SnoreToast", appID, SnoreToastActionCenterIntegration::uuid()); if (!SUCCEEDED(hr)) { return SnoreToastActions::Actions::Error; } } if (closeNotify) { if (!id.empty()) { SnoreToasts app(appID); app.setId(id); if (app.closeNotification()) { return SnoreToastActions::Actions::Clicked; } } else { help(L"Close only works if an -id id was provided."); } } else { hr = (title.length() > 0 && body.length() > 0) ? S_OK : E_FAIL; if (SUCCEEDED(hr)) { if (isTextBoxEnabled) { if (pipe.empty()) { std::wcerr << L"TextBox notifications only work if a pipe for the result " L"was provided" << std::endl; return SnoreToastActions::Actions::Error; } } SnoreToasts app(appID); app.setPipeName(pipe); app.setApplication(application); app.setSilent(silent); app.setSound(sound); app.setId(id); app.setButtons(buttons); app.setTextBoxEnabled(isTextBoxEnabled); - app.displayToast(title, body, image, wait); + app.displayToast(title, body, image); return app.userAction(); } else { help(L""); return SnoreToastActions::Actions::Clicked; } } return SnoreToastActions::Actions::Error; } SnoreToastActions::Actions handleEmbedded() { SnoreToasts::waitForCallbackActivation(); return SnoreToastActions::Actions::Clicked; } int WINAPI wWinMain(HINSTANCE, HINSTANCE, wchar_t *, int) { if (AttachConsole(ATTACH_PARENT_PROCESS)) { FILE *dummy; _wfreopen_s(&dummy, L"CONOUT$", L"w", stdout); setvbuf(stdout, nullptr, _IONBF, 0); _wfreopen_s(&dummy, L"CONOUT$", L"w", stderr); setvbuf(stderr, nullptr, _IONBF, 0); std::ios::sync_with_stdio(); } const auto commandLine = GetCommandLineW(); int argc; wchar_t **argv = CommandLineToArgvW(commandLine, &argc); SnoreToastActions::Actions action = SnoreToastActions::Actions::Clicked; HRESULT hr = Initialize(RO_INIT_MULTITHREADED); if (SUCCEEDED(hr)) { if (std::wstring(commandLine).find(L"-Embedding") != std::wstring::npos) { action = handleEmbedded(); } else { action = parse(std::vector<wchar_t *>(argv, argv + argc)); } Uninitialize(); } return static_cast<int>(action); } diff --git a/src/snoretoasts.cpp b/src/snoretoasts.cpp index d2b0a01..ef2c7a9 100644 --- a/src/snoretoasts.cpp +++ b/src/snoretoasts.cpp @@ -1,603 +1,597 @@ /* SnoreToast is capable to invoke Windows 8 toast notifications. Copyright (C) 2013-2019 Hannah von Reth <vonreth@kde.org> SnoreToast is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. SnoreToast 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with SnoreToast. If not, see <http://www.gnu.org/licenses/>. */ #include "snoretoasts.h" #include "toasteventhandler.h" #include "linkhelper.h" #include "utils.h" #include <wrl\wrappers\corewrappers.h> #include <sstream> #include <iostream> using namespace Microsoft::WRL; using namespace ABI::Windows::UI; using namespace ABI::Windows::UI::Notifications; using namespace ABI::Windows::Data::Xml::Dom; using namespace Windows::Foundation; using namespace Wrappers; class SnoreToastsPrivate { public: SnoreToastsPrivate(SnoreToasts *parent, const std::wstring &appID) : m_parent(parent), m_appID(appID), m_id(std::to_wstring(GetCurrentProcessId())) { HRESULT hr = GetActivationFactory( HStringReference(RuntimeClass_Windows_UI_Notifications_ToastNotificationManager) .Get(), &m_toastManager); if (!SUCCEEDED(hr)) { std::wcerr << L"SnoreToasts: Failed to register com Factory, please make sure you " L"correctly initialised with RO_INIT_MULTITHREADED" << std::endl; m_action = SnoreToastActions::Actions::Error; } } SnoreToasts *m_parent; std::wstring m_appID; std::filesystem::path m_pipeName; std::filesystem::path m_application; std::wstring m_title; std::wstring m_body; std::filesystem::path m_image; std::wstring m_sound = L"Notification.Default"; std::wstring m_id; std::wstring m_buttons; bool m_silent = false; - bool m_wait = false; bool m_textbox = false; SnoreToastActions::Actions m_action = SnoreToastActions::Actions::Clicked; ComPtr<IXmlDocument> m_toastXml; ComPtr<IToastNotificationManagerStatics> m_toastManager; ComPtr<IToastNotifier> m_notifier; ComPtr<IToastNotification> m_notification; ComPtr<ToastEventHandler> m_eventHanlder; static HANDLE ctoastEvent() { static HANDLE _event = [] { std::wstringstream eventName; eventName << L"ToastActivationEvent" << GetCurrentProcessId(); return CreateEvent(nullptr, true, false, eventName.str().c_str()); }(); return _event; } ComPtr<IToastNotificationHistory> getHistory() { ComPtr<IToastNotificationManagerStatics2> toastStatics2; if (Utils::checkResult(m_toastManager.As(&toastStatics2))) { ComPtr<IToastNotificationHistory> nativeHistory; Utils::checkResult(toastStatics2->get_History(&nativeHistory)); return nativeHistory; } return {}; } }; SnoreToasts::SnoreToasts(const std::wstring &appID) : d(new SnoreToastsPrivate(this, appID)) { Utils::registerActivator(); } SnoreToasts::~SnoreToasts() { Utils::unregisterActivator(); delete d; } HRESULT SnoreToasts::displayToast(const std::wstring &title, const std::wstring &body, - const std::filesystem::path &image, bool wait) + const std::filesystem::path &image) { // asume that we fail d->m_action = SnoreToastActions::Actions::Error; d->m_title = title; d->m_body = body; d->m_image = image; - d->m_wait = wait; if (!d->m_image.empty()) { ReturnOnErrorHr(d->m_toastManager->GetTemplateContent(ToastTemplateType_ToastImageAndText02, &d->m_toastXml)); } else { ReturnOnErrorHr(d->m_toastManager->GetTemplateContent(ToastTemplateType_ToastText02, &d->m_toastXml)); } ComPtr<ABI::Windows::Data::Xml::Dom::IXmlNodeList> rootList; ReturnOnErrorHr( d->m_toastXml->GetElementsByTagName(HStringReference(L"toast").Get(), &rootList)); ComPtr<IXmlNode> root; ReturnOnErrorHr(rootList->Item(0, &root)); ComPtr<IXmlNamedNodeMap> rootAttributes; ReturnOnErrorHr(root->get_Attributes(&rootAttributes)); const auto data = formatAction(SnoreToastActions::Actions::Clicked); ReturnOnErrorHr(addAttribute(L"launch", rootAttributes.Get(), data)); // Adding buttons if (!d->m_buttons.empty()) { setButtons(root); } else if (d->m_textbox) { setTextBox(root); } ComPtr<ABI::Windows::Data::Xml::Dom::IXmlElement> audioElement; ReturnOnErrorHr(d->m_toastXml->CreateElement(HStringReference(L"audio").Get(), &audioElement)); ComPtr<IXmlNode> audioNodeTmp; ReturnOnErrorHr(audioElement.As(&audioNodeTmp)); ComPtr<IXmlNode> audioNode; ReturnOnErrorHr(root->AppendChild(audioNodeTmp.Get(), &audioNode)); ComPtr<IXmlNamedNodeMap> attributes; ReturnOnErrorHr(audioNode->get_Attributes(&attributes)); ReturnOnErrorHr(addAttribute(L"src", attributes.Get())); ReturnOnErrorHr(addAttribute(L"silent", attributes.Get())); // printXML(); if (!d->m_image.empty()) { ReturnOnErrorHr(setImage()); } ReturnOnErrorHr(setSound()); ReturnOnErrorHr(setTextValues()); printXML(); ReturnOnErrorHr(createToast()); d->m_action = SnoreToastActions::Actions::Clicked; return S_OK; } SnoreToastActions::Actions SnoreToasts::userAction() { if (d->m_eventHanlder.Get()) { HANDLE event = d->m_eventHanlder.Get()->event(); WaitForSingleObject(event, INFINITE); d->m_action = d->m_eventHanlder.Get()->userAction(); // the initial value is SnoreToastActions::Actions::Hidden so if no action happend when we // end up here, a hide was requested if (d->m_action == SnoreToastActions::Actions::Hidden) { d->m_notifier->Hide(d->m_notification.Get()); tLog << L"The application hid the toast using ToastNotifier.hide()"; } CloseHandle(event); } return d->m_action; } bool SnoreToasts::closeNotification() { std::wstringstream eventName; eventName << L"ToastEvent" << d->m_id; HANDLE event = OpenEventW(EVENT_ALL_ACCESS, FALSE, eventName.str().c_str()); if (event) { SetEvent(event); return true; } if (auto history = d->getHistory()) { if (Utils::checkResult(history->RemoveGroupedTagWithId( HStringReference(d->m_id.c_str()).Get(), HStringReference(L"SnoreToast").Get(), HStringReference(d->m_appID.c_str()).Get()))) { return true; } } tLog << "Notification " << d->m_id << " does not exist"; return false; } void SnoreToasts::setSound(const std::wstring &soundFile) { d->m_sound = soundFile; } void SnoreToasts::setSilent(bool silent) { d->m_silent = silent; } void SnoreToasts::setId(const std::wstring &id) { if (!id.empty()) { d->m_id = id; } } std::wstring SnoreToasts::id() const { return d->m_id; } void SnoreToasts::setButtons(const std::wstring &buttons) { d->m_buttons = buttons; } void SnoreToasts::setTextBoxEnabled(bool textBoxEnabled) { d->m_textbox = textBoxEnabled; } // Set the value of the "src" attribute of the "image" node HRESULT SnoreToasts::setImage() { ComPtr<IXmlNodeList> nodeList; ReturnOnErrorHr( d->m_toastXml->GetElementsByTagName(HStringReference(L"image").Get(), &nodeList)); ComPtr<IXmlNode> imageNode; ReturnOnErrorHr(nodeList->Item(0, &imageNode)); ComPtr<IXmlNamedNodeMap> attributes; ReturnOnErrorHr(imageNode->get_Attributes(&attributes)); ComPtr<IXmlNode> srcAttribute; ReturnOnErrorHr(attributes->GetNamedItem(HStringReference(L"src").Get(), &srcAttribute)); return setNodeValueString(HStringReference(d->m_image.wstring().c_str()).Get(), srcAttribute.Get()); } HRESULT SnoreToasts::setSound() { ComPtr<IXmlNodeList> nodeList; ReturnOnErrorHr( d->m_toastXml->GetElementsByTagName(HStringReference(L"audio").Get(), &nodeList)); ComPtr<IXmlNode> audioNode; ReturnOnErrorHr(nodeList->Item(0, &audioNode)); ComPtr<IXmlNamedNodeMap> attributes; ReturnOnErrorHr(audioNode->get_Attributes(&attributes)); ComPtr<IXmlNode> srcAttribute; ReturnOnErrorHr(attributes->GetNamedItem(HStringReference(L"src").Get(), &srcAttribute)); std::wstring sound; if (d->m_sound.find(L"ms-winsoundevent:") == std::wstring::npos) { sound = L"ms-winsoundevent:"; sound.append(d->m_sound); } else { sound = d->m_sound; } ReturnOnErrorHr(setNodeValueString(HStringReference(sound.c_str()).Get(), srcAttribute.Get())); ReturnOnErrorHr(attributes->GetNamedItem(HStringReference(L"silent").Get(), &srcAttribute)); return setNodeValueString(HStringReference(d->m_silent ? L"true" : L"false").Get(), srcAttribute.Get()); } // Set the values of each of the text nodes HRESULT SnoreToasts::setTextValues() { ComPtr<IXmlNodeList> nodeList; ReturnOnErrorHr( d->m_toastXml->GetElementsByTagName(HStringReference(L"text").Get(), &nodeList)); // create the title ComPtr<IXmlNode> textNode; ReturnOnErrorHr(nodeList->Item(0, &textNode)); ReturnOnErrorHr(setNodeValueString(HStringReference(d->m_title.c_str()).Get(), textNode.Get())); ReturnOnErrorHr(nodeList->Item(1, &textNode)); return setNodeValueString(HStringReference(d->m_body.c_str()).Get(), textNode.Get()); } HRESULT SnoreToasts::setButtons(ComPtr<IXmlNode> root) { ComPtr<ABI::Windows::Data::Xml::Dom::IXmlElement> actionsElement; ReturnOnErrorHr( d->m_toastXml->CreateElement(HStringReference(L"actions").Get(), &actionsElement)); ComPtr<IXmlNode> actionsNodeTmp; ReturnOnErrorHr(actionsElement.As(&actionsNodeTmp)); ComPtr<IXmlNode> actionsNode; ReturnOnErrorHr(root->AppendChild(actionsNodeTmp.Get(), &actionsNode)); std::wstring buttonText; std::wstringstream wss(d->m_buttons); while (std::getline(wss, buttonText, L';')) { ReturnOnErrorHr(createNewActionButton(actionsNode, buttonText)); } return S_OK; } HRESULT SnoreToasts::setTextBox(ComPtr<IXmlNode> root) { ComPtr<ABI::Windows::Data::Xml::Dom::IXmlElement> actionsElement; ReturnOnErrorHr( d->m_toastXml->CreateElement(HStringReference(L"actions").Get(), &actionsElement)); ComPtr<IXmlNode> actionsNodeTmp; ReturnOnErrorHr(actionsElement.As(&actionsNodeTmp)); ComPtr<IXmlNode> actionsNode; ReturnOnErrorHr(root->AppendChild(actionsNodeTmp.Get(), &actionsNode)); ComPtr<ABI::Windows::Data::Xml::Dom::IXmlElement> inputElement; ReturnOnErrorHr(d->m_toastXml->CreateElement(HStringReference(L"input").Get(), &inputElement)); ComPtr<IXmlNode> inputNodeTmp; ReturnOnErrorHr(inputElement.As(&inputNodeTmp)); ComPtr<IXmlNode> inputNode; ReturnOnErrorHr(actionsNode->AppendChild(inputNodeTmp.Get(), &inputNode)); ComPtr<IXmlNamedNodeMap> inputAttributes; ReturnOnErrorHr(inputNode->get_Attributes(&inputAttributes)); ReturnOnErrorHr(addAttribute(L"id", inputAttributes.Get(), L"textBox")); ReturnOnErrorHr(addAttribute(L"type", inputAttributes.Get(), L"text")); ReturnOnErrorHr(addAttribute(L"placeHolderContent", inputAttributes.Get(), L"Type a reply")); ComPtr<IXmlElement> actionElement; ReturnOnErrorHr( d->m_toastXml->CreateElement(HStringReference(L"action").Get(), &actionElement)); ComPtr<IXmlNode> actionNodeTmp; ReturnOnErrorHr(actionElement.As(&actionNodeTmp)); ComPtr<IXmlNode> actionNode; ReturnOnErrorHr(actionsNode->AppendChild(actionNodeTmp.Get(), &actionNode)); ComPtr<IXmlNamedNodeMap> actionAttributes; ReturnOnErrorHr(actionNode->get_Attributes(&actionAttributes)); ReturnOnErrorHr(addAttribute(L"content", actionAttributes.Get(), L"Send")); const auto data = formatAction(SnoreToastActions::Actions::ButtonClicked); ReturnOnErrorHr(addAttribute(L"arguments", actionAttributes.Get(), data)); return addAttribute(L"hint-inputId", actionAttributes.Get(), L"textBox"); } HRESULT SnoreToasts::setEventHandler(ComPtr<IToastNotification> toast) { // Register the event handlers EventRegistrationToken activatedToken, dismissedToken, failedToken; ComPtr<ToastEventHandler> eventHandler(new ToastEventHandler(*this)); ReturnOnErrorHr(toast->add_Activated(eventHandler.Get(), &activatedToken)); ReturnOnErrorHr(toast->add_Dismissed(eventHandler.Get(), &dismissedToken)); ReturnOnErrorHr(toast->add_Failed(eventHandler.Get(), &failedToken)); d->m_eventHanlder = eventHandler; return S_OK; } HRESULT SnoreToasts::setNodeValueString(const HSTRING &inputString, IXmlNode *node) { ComPtr<IXmlText> inputText; ReturnOnErrorHr(d->m_toastXml->CreateTextNode(inputString, &inputText)); ComPtr<IXmlNode> inputTextNode; ReturnOnErrorHr(inputText.As(&inputTextNode)); ComPtr<IXmlNode> pAppendedChild; return node->AppendChild(inputTextNode.Get(), &pAppendedChild); } HRESULT SnoreToasts::addAttribute(const std::wstring &name, IXmlNamedNodeMap *attributeMap) { ComPtr<ABI::Windows::Data::Xml::Dom::IXmlAttribute> srcAttribute; HRESULT hr = d->m_toastXml->CreateAttribute(HStringReference(name.c_str()).Get(), &srcAttribute); if (SUCCEEDED(hr)) { ComPtr<IXmlNode> node; hr = srcAttribute.As(&node); if (SUCCEEDED(hr)) { ComPtr<IXmlNode> pNode; hr = attributeMap->SetNamedItem(node.Get(), &pNode); } } return hr; } HRESULT SnoreToasts::addAttribute(const std::wstring &name, IXmlNamedNodeMap *attributeMap, const std::wstring &value) { ComPtr<ABI::Windows::Data::Xml::Dom::IXmlAttribute> srcAttribute; ReturnOnErrorHr( d->m_toastXml->CreateAttribute(HStringReference(name.c_str()).Get(), &srcAttribute)); ComPtr<IXmlNode> node; ReturnOnErrorHr(srcAttribute.As(&node)); ComPtr<IXmlNode> pNode; ReturnOnErrorHr(attributeMap->SetNamedItem(node.Get(), &pNode)); return setNodeValueString(HStringReference(value.c_str()).Get(), node.Get()); } HRESULT SnoreToasts::createNewActionButton(ComPtr<IXmlNode> actionsNode, const std::wstring &value) { ComPtr<ABI::Windows::Data::Xml::Dom::IXmlElement> actionElement; ReturnOnErrorHr( d->m_toastXml->CreateElement(HStringReference(L"action").Get(), &actionElement)); ComPtr<IXmlNode> actionNodeTmp; ReturnOnErrorHr(actionElement.As(&actionNodeTmp)); ComPtr<IXmlNode> actionNode; ReturnOnErrorHr(actionsNode->AppendChild(actionNodeTmp.Get(), &actionNode)); ComPtr<IXmlNamedNodeMap> actionAttributes; ReturnOnErrorHr(actionNode->get_Attributes(&actionAttributes)); ReturnOnErrorHr(addAttribute(L"content", actionAttributes.Get(), value)); const auto data = formatAction(SnoreToastActions::Actions::ButtonClicked, { { L"button", value } }); ReturnOnErrorHr(addAttribute(L"arguments", actionAttributes.Get(), data)); return addAttribute(L"activationType", actionAttributes.Get(), L"foreground"); } void SnoreToasts::printXML() { ComPtr<ABI::Windows::Data::Xml::Dom::IXmlNodeSerializer> s; ComPtr<ABI::Windows::Data::Xml::Dom::IXmlDocument> ss(d->m_toastXml); ss.As(&s); HSTRING string; s->GetXml(&string); PCWSTR str = WindowsGetStringRawBuffer(string, nullptr); tLog << L"------------------------\n\t\t\t" << str << L"\n\t\t" << L"------------------------"; } std::filesystem::path SnoreToasts::pipeName() const { return d->m_pipeName; } void SnoreToasts::setPipeName(const std::filesystem::path &pipeName) { d->m_pipeName = pipeName; } std::filesystem::path SnoreToasts::application() const { return d->m_application; } void SnoreToasts::setApplication(const std::filesystem::path &application) { d->m_application = application; } std::wstring SnoreToasts::formatAction( const SnoreToastActions::Actions &action, const std::vector<std::pair<std::wstring_view, std::wstring_view>> &extraData) const { const auto pipe = d->m_pipeName.wstring(); const auto application = d->m_application.wstring(); std::vector<std::pair<std::wstring_view, std::wstring_view>> data = { { L"action", SnoreToastActions::getActionString(action) }, { L"notificationId", std::wstring_view(d->m_id) }, { L"pipe", std::wstring_view(pipe) }, { L"application", std::wstring_view(application) } }; data.insert(data.end(), extraData.cbegin(), extraData.cend()); return Utils::formatData(data); } // Create and display the toast HRESULT SnoreToasts::createToast() { ReturnOnErrorHr(d->m_toastManager->CreateToastNotifierWithId( HStringReference(d->m_appID.c_str()).Get(), &d->m_notifier)); ComPtr<IToastNotificationFactory> factory; ReturnOnErrorHr(GetActivationFactory( HStringReference(RuntimeClass_Windows_UI_Notifications_ToastNotification).Get(), &factory)); ReturnOnErrorHr(factory->CreateToastNotification(d->m_toastXml.Get(), &d->m_notification)); ComPtr<Notifications::IToastNotification2> toastV2; if (SUCCEEDED(d->m_notification.As(&toastV2))) { ReturnOnErrorHr(toastV2->put_Tag(HStringReference(d->m_id.c_str()).Get())); ReturnOnErrorHr(toastV2->put_Group(HStringReference(L"SnoreToast").Get())); } std::wstring error; NotificationSetting setting; ReturnOnErrorHr(d->m_notifier->get_Setting(&setting)); switch (setting) { + case NotificationSetting_Enabled: + ReturnOnErrorHr(setEventHandler(d->m_notification)); + return d->m_notifier->Show(d->m_notification.Get()); + break; case NotificationSetting_DisabledForApplication: error = L"DisabledForApplication"; break; case NotificationSetting_DisabledForUser: error = L"DisabledForUser"; break; case NotificationSetting_DisabledByGroupPolicy: error = L"DisabledByGroupPolicy"; break; case NotificationSetting_DisabledByManifest: error = L"DisabledByManifest"; break; - case NotificationSetting_Enabled: - if (d->m_wait) { - ReturnOnErrorHr(setEventHandler(d->m_notification)); - } - break; - } - if (!error.empty()) { - std::wstringstream err; - err << L"Notifications are disabled\n" - << L"Reason: " << error << L"Please make sure that the app id is set correctly.\n" - << L"Command Line: " << GetCommandLineW(); - tLog << err.str(); - std::wcerr << err.str() << std::endl; - return S_FALSE; } - return d->m_notifier->Show(d->m_notification.Get()); + std::wstringstream err; + err << L"Notifications are disabled\n" + << L"Reason: " << error << L"Please make sure that the app id is set correctly.\n" + << L"Command Line: " << GetCommandLineW(); + tLog << err.str(); + std::wcerr << err.str() << std::endl; + return S_FALSE; } std::wstring SnoreToasts::version() { static std::wstring ver = [] { std::wstringstream st; st << SNORETOAST_VERSION_MAJOR << L"." << SNORETOAST_VERSION_MINOR << L"." << SNORETOAST_VERSION_PATCH; return st.str(); }(); return ver; } HRESULT SnoreToasts::backgroundCallback(const std::wstring &appUserModelId, const std::wstring &invokedArgs, const std::wstring &msg) { tLog << "CToastNotificationActivationCallback::Activate: " << appUserModelId << " : " << invokedArgs << " : " << msg; const auto dataMap = Utils::splitData(invokedArgs); const auto action = SnoreToastActions::getAction(dataMap.at(L"action")); std::wstring dataString; if (action == SnoreToastActions::Actions::TextEntered) { std::wstringstream sMsg; sMsg << invokedArgs << L"text=" << msg; dataString = sMsg.str(); } else { dataString = invokedArgs; } const auto pipe = dataMap.find(L"pipe"); if (pipe != dataMap.cend()) { if (!Utils::writePipe(pipe->second, dataString)) { const auto app = dataMap.find(L"application"); if (app != dataMap.cend()) { if (Utils::startProcess(app->second)) { Utils::writePipe(pipe->second, dataString, true); } } } } tLog << dataString; if (!SetEvent(SnoreToastsPrivate::ctoastEvent())) { tLog << "SetEvent failed" << GetLastError(); return S_FALSE; } return S_OK; } void SnoreToasts::waitForCallbackActivation() { Utils::registerActivator(); WaitForSingleObject(SnoreToastsPrivate::ctoastEvent(), INFINITE); Utils::unregisterActivator(); } diff --git a/src/snoretoasts.h b/src/snoretoasts.h index 08b325d..dcffe44 100644 --- a/src/snoretoasts.h +++ b/src/snoretoasts.h @@ -1,103 +1,103 @@ /* SnoreToast is capable to invoke Windows 8 toast notifications. Copyright (C) 2013-2019 Hannah von Reth <vonreth@kde.org> SnoreToast is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. SnoreToast 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with SnoreToast. If not, see <http://www.gnu.org/licenses/>. */ #pragma once #include "snoretoastactions.h" #include "libsnoretoast_export.h" #include <sdkddkver.h> // Windows Header Files: #include <windows.h> #include <sal.h> #include <psapi.h> #include <strsafe.h> #include <objbase.h> #include <shobjidl.h> #include <functiondiscoverykeys.h> #include <guiddef.h> #include <shlguid.h> #include <wrl/client.h> #include <wrl/implements.h> #include <windows.ui.notifications.h> #include <filesystem> #include <string> #include <vector> using namespace Microsoft::WRL; using namespace ABI::Windows::Data::Xml::Dom; class LIBSNORETOAST_EXPORT SnoreToasts { public: static std::wstring version(); static void waitForCallbackActivation(); static HRESULT backgroundCallback(const std::wstring &appUserModelId, const std::wstring &invokedArgs, const std::wstring &msg); SnoreToasts(const std::wstring &appID); ~SnoreToasts(); HRESULT displayToast(const std::wstring &title, const std::wstring &body, - const std::filesystem::path &image, bool wait); + const std::filesystem::path &image); SnoreToastActions::Actions userAction(); bool closeNotification(); void setSound(const std::wstring &soundFile); void setSilent(bool silent); void setId(const std::wstring &id); std::wstring id() const; void setButtons(const std::wstring &buttons); void setTextBoxEnabled(bool textBoxEnabled); std::filesystem::path pipeName() const; void setPipeName(const std::filesystem::path &pipeName); std::filesystem::path application() const; void setApplication(const std::filesystem::path &application); std::wstring formatAction(const SnoreToastActions::Actions &action, const std::vector<std::pair<std::wstring_view, std::wstring_view>> &extraData = {}) const; private: HRESULT createToast(); HRESULT setImage(); HRESULT setSound(); HRESULT setTextValues(); HRESULT setButtons(ComPtr<IXmlNode> root); HRESULT setTextBox(ComPtr<IXmlNode> root); HRESULT setEventHandler( Microsoft::WRL::ComPtr<ABI::Windows::UI::Notifications::IToastNotification> toast); HRESULT setNodeValueString(const HSTRING &onputString, ABI::Windows::Data::Xml::Dom::IXmlNode *node); HRESULT addAttribute(const std::wstring &name, ABI::Windows::Data::Xml::Dom::IXmlNamedNodeMap *attributeMap); HRESULT addAttribute(const std::wstring &name, ABI::Windows::Data::Xml::Dom::IXmlNamedNodeMap *attributeMap, const std::wstring &value); HRESULT createNewActionButton(ComPtr<IXmlNode> actionsNode, const std::wstring &value); void printXML(); friend class SnoreToastsPrivate; SnoreToastsPrivate *d; };