public static void SendRssCache(string catalogCode, string userEmail, string requestId, bool isAutoSubscription) { // Load RSS string rss = FoeServerCatalog.GetRssCache(catalogCode); if (rss == null) { throw new Exception("RSS feed " + catalogCode + " does not exist."); } // Load User info FoeUser user = FoeServerUser.GetUser(userEmail); if (user == null) { throw new Exception("User " + userEmail + " does not exist."); } // Prepare Foe Message /* * string rssBase64 = Convert.ToBase64String(Encoding.UTF8.GetBytes(feed.Rss)); * FoeMessage foeMessage = new FoeMessage(); * foeMessage.Add(new FoeMessageItem("CatalogCode", feed.Code)); * foeMessage.Add(new FoeMessageItem("Rss", rssBase64)); */ FoeDebug.Print("Generated Foe Message."); // Send reply to user try { FoeServerMessage.SendMessage( FoeServerMessage.GetDefaultSmtpServer(), FoeServerRegistry.Get("ProcessorEmail"), userEmail, SubjectGenerator.ReplySubject(RequestType.Content, catalogCode, requestId, FoeServerUser.GetUser(userEmail).UserId), rss); FoeDebug.Print("Sent reply to user."); // Add user to auto-subscription list if (!isAutoSubscription) { FoeServerAutoSubscribe.Add(userEmail, catalogCode, requestId); } else { // If the caller function is just processing AutoSubscription, then // we don't want to recreate the subscription, simply update the // current subscription. FoeServerAutoSubscribe.Update(userEmail, catalogCode, requestId); } FoeDebug.Print("Added user to Auto Subscription."); } catch (Exception except) { FoeDebug.Print("FoeServerCatalog: Error sending email."); FoeDebug.Print(except.ToString()); } }
private void DoFeedAdd() { //FoeDebug.Print("Loading requests..."); bool hasError = false; string message = ""; // Load content requests FoeRequester req = null; FoeServerRequest requestManager = new FoeServerRequest(RequestType.Feed, FoeServerRegistry.Get("ProcessorEmail")); while ((req = requestManager.GetNextRequest()) != null) { //FoeDebug.Print("Processing request from " + req.UserEmail + " with request ID " + req.RequestId); // Check what contents are requested // Get user info FoeUser user = FoeServerUser.GetUser(req.UserEmail); if (user == null) { //FoeDebug.Print("User not registered. Skip this request."); //FoeDebug.Print("---------------------------------------"); // User is not registered, mark this request as "E" (Error) and skip to the next one requestManager.UpdateRequestStatus(req, "E"); FoeServerLog.Add(_processName, FoeServerLog.LogType.Warning, "User " + user.Email + " not registered. Discard content request."); continue; } //FoeDebug.Print("User verified."); // Process request List <CatalogItem> catalogs = FoeServerCatalog.GetCatalog(); // get all the catalogs on server if (catalogs != null) { //FoeDebug.Print("Generated Foe Message."); foreach (CatalogItem catalog in catalogs) { message += catalog.Code + ","; } // Send reply to user try { FoeServerMessage.SendMessage( FoeServerMessage.GetDefaultSmtpServer(), FoeServerRegistry.Get("ProcessorEmail"), req.UserEmail, SubjectGenerator.ReplySubject(RequestType.Catalog, req.RequestId, FoeServerUser.GetUser(req.UserEmail).UserId), message); //FoeDebug.Print("Sent reply to user."); } catch (Exception except) { //FoeDebug.Print("Error sending email."); //FoeDebug.Print(except.ToString()); hasError = true; FoeServerLog.Add(_processName, FoeServerLog.LogType.Error, "Error delivering content to " + user.Email + "\r\n" + except.ToString()); } } // If there is no error, then we'll mark the request as 'C' (Completed). // Otherwise, we'll leave it as 'P' (Pending). if (!hasError) { // mark request as "C" (Completed) requestManager.UpdateRequestStatus(req, "C"); FoeServerLog.Add(_processName, FoeServerLog.LogType.Message, "Sent " + message + "to " + user.Email + " and added user to AutoSubscription."); //FoeDebug.Print("Marked request as 'C' (Completed)."); //FoeDebug.Print("----------------------------------"); } else { //FoeDebug.Print("Leave request as 'P' (Pending)."); //FoeDebug.Print("-------------------------------"); FoeServerLog.Add(_processName, FoeServerLog.LogType.Error, "Error delivering content but error is likely caused by temporary email downtime. " + "Leave status as 'P' (Pending) so process can try again later."); } } // Close all requestManager connections requestManager.Close(); }