Вы не можете прикрепить файл к уведомлению в DNN. НО, вы можете добавить пользовательские действия уведомления к типу уведомления. Эти действия приводят к добавлению ссылок под уведомлением (например, действие «Отклонить» по умолчанию, чтобы пометить уведомление как «прочитанное»).
Чтобы отправить уведомление, необходимо создать тип уведомления, чтобы связать его с. NotificationTypeAction добавляются к типу. Поэтому всякий раз, когда вы отправляете уведомление определенного типа, действия выполняются вместе с ним.
Вы можете создать действие NotificationType и назвать его «Скачать вложение». Когда пользователь нажимает на ссылку, он вызывает пользовательский API-сервис. Этот сервис может обслуживать файл.
Вот пример кода, в котором я создаю собственный тип с 1 настраиваемым действием:
public void AddNotificationType()
{
var actions = new List<NotificationTypeAction>();
var deskModuleId = DesktopModuleController.GetDesktopModuleByFriendlyName(Constants.DESKTOPMODULE_FRIENDLYNAME).DesktopModuleID;
var objNotificationType = new NotificationType
{
Name = Constants.NOTIFICATION_FILEDOWNLOAD,
Description = "Get File Attachment",
DesktopModuleId = deskModuleId
};
if (NotificationsController.Instance.GetNotificationType(objNotificationType.Name) == null)
{
var objAction = new NotificationTypeAction
{
NameResourceKey = "DownloadAttachment",
DescriptionResourceKey = "DownloadAttachment_Desc",
APICall = "DesktopModules/MyCustomModule/API/mynotification/downloadfile",
Order = 1
};
actions.Add(objAction);
NotificationsController.Instance.CreateNotificationType(objNotificationType);
NotificationsController.Instance.SetNotificationTypeActions(actions, objNotificationType.NotificationTypeId);
}
}
Затем используйте код, подобный следующему, чтобы отправить уведомление:
public void SendNotification(UserInfo userToReceive)
{
// Get the notification type; if it doesn't exist, create it
ModuleController mCtrl = new ModuleController();
var itemAddedNType = NotificationsController.Instance.GetNotificationType(Constants.NOTIFICATION_FILEDOWNLOAD);
if (itemAddedNType == null)
{
AddNotificationType();
itemAddedNType = NotificationsController.Instance.GetNotificationType(Constants.NOTIFICATION_FILEDOWNLOAD);
}
if (itemAddedNType != null)
{
Notification msg = new Notification
{
NotificationTypeID = itemAddedNType.NotificationTypeId,
Subject = "A file is ready to download.",
Body = alertBody,
ExpirationDate = DateTime.MaxValue,
IncludeDismissAction = true,
};
List<UserInfo> sendUsers = new List<UserInfo>();
sendUsers.Add(userToReceive);
NotificationsController.Instance.SendNotification(msg, itemModule.PortalID, null, sendUsers);
}
}
Для получения полного руководства по уведомлениям DNN я настоятельно рекомендую подписаться на DNNHero.com и посмотреть серию из трех частей, в которой приведен пример кода.
https://www.dnnhero.com/Premium/Tutorial/ArticleID/265/DNN-Notifications-Introduction-Part-1-3