/* * * (c) Copyright Ascensio System Limited 2010-2018 * * This program is freeware. You can redistribute it and/or modify it under the terms of the GNU * General Public License (GPL) version 3 as published by the Free Software Foundation (https://www.gnu.org/copyleft/gpl.html). * In accordance with Section 7(a) of the GNU GPL its Section 15 shall be amended to the effect that * Ascensio System SIA expressly excludes the warranty of non-infringement of any third-party rights. * * THIS PROGRAM IS DISTRIBUTED WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR * FITNESS FOR A PARTICULAR PURPOSE. For more details, see GNU GPL at https://www.gnu.org/copyleft/gpl.html * * You can contact Ascensio System SIA by email at sales@onlyoffice.com * * The interactive user interfaces in modified source and object code versions of ONLYOFFICE must display * Appropriate Legal Notices, as required under Section 5 of the GNU GPL version 3. * * Pursuant to Section 7 § 3(b) of the GNU GPL you must retain the original ONLYOFFICE logo which contains * relevant author attributions when distributing the software. If the display of the logo in its graphic * form is not reasonably feasible for technical reasons, you must include the words "Powered by ONLYOFFICE" * in every copy of the program you distribute. * Pursuant to Section 7 § 3(e) we decline to grant you any rights under trademark law for use of our trademarks. * */ using System; using System.IO; using System.Net; using System.Web; using ASC.Common; using ASC.Common.Web; using ASC.Core; using ASC.Core.Common; using ASC.Web.Studio.Core; using Newtonsoft.Json.Linq; namespace ASC.Web.Files.Utils { public class MailMergeTask : IDisposable { internal const string MessageBodyFormat = "id={0}&from={1}&subject={2}&to%5B%5D={3}&body={4}&mimeReplyToId="; public string From; public string Subject; public string To; public string Message; public string AttachTitle; public Stream Attach; public int MessageId; public string StreamId; public MailMergeTask() { MessageId = 0; } public void Dispose() { if (Attach != null) Attach.Dispose(); } } public class MailMergeTaskRunner { public SetupInfo SetupInfo { get; } public SecurityContext SecurityContext { get; } public BaseCommonLinkUtility BaseCommonLinkUtility { get; } //private ApiServer _apiServer; //protected ApiServer Api //{ // get { return _apiServer ?? (_apiServer = new ApiServer()); } //} public MailMergeTaskRunner(SetupInfo setupInfo, SecurityContext securityContext, BaseCommonLinkUtility baseCommonLinkUtility) { SetupInfo = setupInfo; SecurityContext = securityContext; BaseCommonLinkUtility = baseCommonLinkUtility; } public string Run(MailMergeTask mailMergeTask) { if (string.IsNullOrEmpty(mailMergeTask.From)) throw new ArgumentException("From is null"); if (string.IsNullOrEmpty(mailMergeTask.To)) throw new ArgumentException("To is null"); CreateDraftMail(mailMergeTask); var bodySendAttach = AttachToMail(mailMergeTask); return SendMail(mailMergeTask, bodySendAttach); } private void CreateDraftMail(MailMergeTask mailMergeTask) { var apiUrlCreate = string.Format("{0}mail/drafts/save.json", SetupInfo.WebApiBaseUrl); var bodyCreate = string.Format( MailMergeTask.MessageBodyFormat, mailMergeTask.MessageId, HttpUtility.UrlEncode(mailMergeTask.From), HttpUtility.UrlEncode(mailMergeTask.Subject), HttpUtility.UrlEncode(mailMergeTask.To), HttpUtility.UrlEncode(mailMergeTask.Message)); string responseCreateString = null; //TODO: Encoding.UTF8.GetString(Convert.FromBase64String(Api.GetApiResponse(apiUrlCreate, "PUT", bodyCreate))); var responseCreate = JObject.Parse(responseCreateString); if (responseCreate["statusCode"].Value() != (int)HttpStatusCode.OK) { throw new Exception("Create draft failed: " + responseCreate["error"]["message"].Value()); } mailMergeTask.MessageId = responseCreate["response"]["id"].Value(); mailMergeTask.StreamId = responseCreate["response"]["streamId"].Value(); } private string AttachToMail(MailMergeTask mailMergeTask) { if (mailMergeTask.Attach == null) return string.Empty; if (string.IsNullOrEmpty(mailMergeTask.AttachTitle)) mailMergeTask.AttachTitle = "attach.pdf"; var apiUrlAttach = string.Format("{0}mail/messages/attachment/add?id_message={1}&name={2}", SetupInfo.WebApiBaseUrl, mailMergeTask.MessageId, mailMergeTask.AttachTitle); var request = (HttpWebRequest)WebRequest.Create(BaseCommonLinkUtility.GetFullAbsolutePath(apiUrlAttach)); request.Method = "POST"; request.ContentType = MimeMapping.GetMimeMapping(mailMergeTask.AttachTitle); request.ContentLength = mailMergeTask.Attach.Length; request.Headers.Add("Authorization", SecurityContext.AuthenticateMe(SecurityContext.CurrentAccount.ID)); const int bufferSize = 2048; var buffer = new byte[bufferSize]; int readed; while ((readed = mailMergeTask.Attach.Read(buffer, 0, bufferSize)) > 0) { request.GetRequestStream().Write(buffer, 0, readed); } // hack. http://ubuntuforums.org/showthread.php?t=1841740 if (WorkContext.IsMono) { ServicePointManager.ServerCertificateValidationCallback += (s, ce, ca, p) => true; } string responseAttachString; using (var response = request.GetResponse()) using (var stream = response.GetResponseStream()) { if (stream == null) throw new WebException("Could not get an answer"); using (var reader = new StreamReader(stream)) { responseAttachString = reader.ReadToEnd(); } } var responseAttach = JObject.Parse(responseAttachString); if (responseAttach["statusCode"].Value() != (int)HttpStatusCode.Created) { throw new Exception("Attach failed: " + responseAttach["error"]["message"].Value()); } var bodySendAttach = "&attachments%5B0%5D%5BfileId%5D=" + HttpUtility.UrlEncode(responseAttach["response"]["fileId"].Value()) + "&attachments%5B0%5D%5BfileName%5D=" + HttpUtility.UrlEncode(responseAttach["response"]["fileName"].Value()) + "&attachments%5B0%5D%5Bsize%5D=" + HttpUtility.UrlEncode(responseAttach["response"]["size"].Value()) + "&attachments%5B0%5D%5BcontentType%5D=" + HttpUtility.UrlEncode(responseAttach["response"]["contentType"].Value()) + "&attachments%5B0%5D%5BfileNumber%5D=" + HttpUtility.UrlEncode(responseAttach["response"]["fileNumber"].Value()) + "&attachments%5B0%5D%5BstoredName%5D=" + HttpUtility.UrlEncode(responseAttach["response"]["storedName"].Value()) + "&attachments%5B0%5D%5BstreamId%5D=" + HttpUtility.UrlEncode(responseAttach["response"]["streamId"].Value()) ; return bodySendAttach; } private string SendMail(MailMergeTask mailMergeTask, string bodySendAttach) { var apiUrlSend = string.Format("{0}mail/messages/send.json", SetupInfo.WebApiBaseUrl); var bodySend = string.Format( MailMergeTask.MessageBodyFormat, mailMergeTask.MessageId, HttpUtility.UrlEncode(mailMergeTask.From), HttpUtility.UrlEncode(mailMergeTask.Subject), HttpUtility.UrlEncode(mailMergeTask.To), HttpUtility.UrlEncode(mailMergeTask.Message)); bodySend += bodySendAttach; string responseSendString = null;//TODO: Encoding.UTF8.GetString(Convert.FromBase64String(Api.GetApiResponse(apiUrlSend, "PUT", bodySend))); var responseSend = JObject.Parse(responseSendString); if (responseSend["statusCode"].Value() != (int)HttpStatusCode.OK) { throw new Exception("Create draft failed: " + responseSend["error"]["message"].Value()); } return responseSend["response"].Value(); } } public static class MailMergeTaskRunnerExtension { public static DIHelper AddMailMergeTaskRunnerService(this DIHelper services) { services.TryAddScoped(); return services .AddSetupInfo() .AddSecurityContextService() .AddBaseCommonLinkUtilityService(); } } }