#region License Information
/* HeuristicLab
* Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
using System;
using System.Collections.Generic;
using System.Data.Linq;
using System.Linq;
namespace HeuristicLab.Services.Hive.DataAccess.Daos {
public class ProjectPermissionDao : GenericDao {
public ProjectPermissionDao(DataContext dataContext) : base(dataContext) { }
public override ProjectPermission GetById(Guid id) {
throw new NotImplementedException();
}
public IEnumerable GetByProjectId(Guid id) {
return GetByProjectIdGetByIdQuery(DataContext, id);
}
public bool CheckUserGrantedForProject(Guid projectId, IEnumerable userAndGroupIds) {
string paramUserAndGroupIds = string.Join(",", userAndGroupIds.ToList().Select(x => string.Format("'{0}'", x)));
if(!string.IsNullOrWhiteSpace(paramUserAndGroupIds)) {
string queryString = string.Format(CheckUserGrantedForProjectQueryString, projectId, paramUserAndGroupIds);
return DataContext.ExecuteQuery(queryString).First() > 0;
}
return false;
}
public void DeleteByProjectIdAndGrantedUserIds(Guid projectId, IEnumerable grantedUserIds) {
string paramIds = string.Join(",", grantedUserIds.ToList().Select(x => string.Format("'{0}'", x)));
if (!string.IsNullOrWhiteSpace(paramIds)) {
string query = string.Format(DeleteByProjectIdAndGrantedUserIdsQueryString, projectId, paramIds);
DataContext.ExecuteCommand(query);
}
}
public void DeleteByProjectIdsAndGrantedUserIds(IEnumerable projectIds, IEnumerable grantedUserIds) {
string paramProjectIds = string.Join(",", projectIds.ToList().Select(x => string.Format("'{0}'", x)));
string paramUserIds = string.Join(",", grantedUserIds.ToList().Select(x => string.Format("'{0}'", x)));
if (!string.IsNullOrWhiteSpace(paramProjectIds) && !string.IsNullOrWhiteSpace(paramUserIds)) {
string query = string.Format(DeleteByProjectIdsAndGrantedUserIdsQueryString, paramProjectIds, paramUserIds);
DataContext.ExecuteCommand(query);
}
}
#region Compiled queries
private static readonly Func> GetByProjectIdGetByIdQuery =
CompiledQuery.Compile((DataContext db, Guid projectId) =>
from projectPermission in db.GetTable()
where projectPermission.ProjectId == projectId
select projectPermission);
#endregion
#region String queries
private const string DeleteByProjectIdAndGrantedUserIdsQueryString = @"
DELETE FROM [ProjectPermission]
WHERE ProjectId = '{0}'
AND GrantedUserId IN ({1});
";
private const string DeleteByProjectIdsAndGrantedUserIdsQueryString = @"
DELETE FROM [ProjectPermission]
WHERE ProjectId IN ({0})
AND GrantedUserId IN ({1});
";
private const string CheckUserGrantedForProjectQueryString = @"
SELECT COUNT(pp.ProjectId)
FROM [ProjectPermission] pp
WHERE pp.ProjectId = '{0}'
AND pp.GrantedUserId IN ({1})
";
private const string GetGrantedProjectsForUserQueryString = @"
SELECT DISTINCT p.*
FROM [ProjectPermission] pp, [Project] p
WHERE pp.GrantedUserId IN ({0})
AND pp.ProjectId = p.ProjectId
";
#endregion
}
}