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