2019-07-04 17:14:17 +02:00
|
|
|
using Ryujinx.Common;
|
2020-02-02 04:24:17 +01:00
|
|
|
using Ryujinx.HLE.HOS.Services.Account.Acc;
|
2019-09-19 02:45:11 +02:00
|
|
|
using Ryujinx.HLE.HOS.Services.Friend.ServiceCreator;
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Friend
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2021-04-08 00:42:06 +02:00
|
|
|
[Service("friend:a", FriendServicePermissionLevel.Administrator)]
|
2019-07-10 17:59:54 +02:00
|
|
|
[Service("friend:m", FriendServicePermissionLevel.Manager)]
|
|
|
|
[Service("friend:s", FriendServicePermissionLevel.System)]
|
|
|
|
[Service("friend:u", FriendServicePermissionLevel.User)]
|
2021-04-08 00:42:06 +02:00
|
|
|
[Service("friend:v", FriendServicePermissionLevel.Viewer)]
|
2018-04-06 06:01:52 +02:00
|
|
|
class IServiceCreator : IpcService
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2019-07-04 17:14:17 +02:00
|
|
|
private FriendServicePermissionLevel _permissionLevel;
|
|
|
|
|
2019-07-10 17:59:54 +02:00
|
|
|
public IServiceCreator(ServiceCtx context, FriendServicePermissionLevel permissionLevel)
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2019-07-04 17:14:17 +02:00
|
|
|
_permissionLevel = permissionLevel;
|
2018-02-10 01:14:55 +01:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(0)]
|
2019-06-17 01:08:32 +02:00
|
|
|
// CreateFriendService() -> object<nn::friends::detail::ipc::IFriendService>
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode CreateFriendService(ServiceCtx context)
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2019-07-04 17:14:17 +02:00
|
|
|
MakeObject(context, new IFriendService(_permissionLevel));
|
2018-02-25 05:34:16 +01:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-02-10 01:14:55 +01:00
|
|
|
}
|
2019-06-17 01:08:32 +02:00
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(1)] // 2.0.0+
|
2020-02-02 04:24:17 +01:00
|
|
|
// CreateNotificationService(nn::account::Uid userId) -> object<nn::friends::detail::ipc::INotificationService>
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode CreateNotificationService(ServiceCtx context)
|
2019-06-17 01:08:32 +02:00
|
|
|
{
|
2020-02-02 04:24:17 +01:00
|
|
|
UserId userId = context.RequestData.ReadStruct<UserId>();
|
2019-06-17 01:08:32 +02:00
|
|
|
|
2019-06-27 14:05:30 +02:00
|
|
|
if (userId.IsNull)
|
|
|
|
{
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.InvalidArgument;
|
2019-06-27 14:05:30 +02:00
|
|
|
}
|
|
|
|
|
2019-07-04 17:14:17 +02:00
|
|
|
MakeObject(context, new INotificationService(context, userId, _permissionLevel));
|
2019-06-17 01:08:32 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2019-06-17 01:08:32 +02:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(2)] // 4.0.0+
|
2019-06-17 01:08:32 +02:00
|
|
|
// CreateDaemonSuspendSessionService() -> object<nn::friends::detail::ipc::IDaemonSuspendSessionService>
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode CreateDaemonSuspendSessionService(ServiceCtx context)
|
2019-06-17 01:08:32 +02:00
|
|
|
{
|
2019-07-04 17:14:17 +02:00
|
|
|
MakeObject(context, new IDaemonSuspendSessionService(_permissionLevel));
|
2019-06-17 01:08:32 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2019-06-17 01:08:32 +02:00
|
|
|
}
|
2018-02-10 01:14:55 +01:00
|
|
|
}
|
2019-07-12 03:13:43 +02:00
|
|
|
}
|