DocSpace-client/products/ASC.CRM/Server/ApiModels/RelationshipEventDto.cs
2021-03-13 21:00:08 +03:00

230 lines
8.0 KiB
C#

/*
*
* (c) Copyright Ascensio System Limited 2010-2018
*
* This program is freeware. You can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) version 3 as published by the Free Software Foundation (https://www.gnu.org/copyleft/gpl.html).
* In accordance with Section 7(a) of the GNU GPL its Section 15 shall be amended to the effect that
* Ascensio System SIA expressly excludes the warranty of non-infringement of any third-party rights.
*
* THIS PROGRAM IS DISTRIBUTED WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR
* FITNESS FOR A PARTICULAR PURPOSE. For more details, see GNU GPL at https://www.gnu.org/copyleft/gpl.html
*
* You can contact Ascensio System SIA by email at sales@onlyoffice.com
*
* The interactive user interfaces in modified source and object code versions of ONLYOFFICE must display
* Appropriate Legal Notices, as required under Section 5 of the GNU GPL version 3.
*
* Pursuant to Section 7 § 3(b) of the GNU GPL you must retain the original ONLYOFFICE logo which contains
* relevant author attributions when distributing the software. If the display of the logo in its graphic
* form is not reasonably feasible for technical reasons, you must include the words "Powered by ONLYOFFICE"
* in every copy of the program you distribute.
* Pursuant to Section 7 § 3(e) we decline to grant you any rights under trademark law for use of our trademarks.
*
*/
using ASC.Api.Core;
using ASC.Api.Documents;
using ASC.Common;
using ASC.CRM.Core;
using ASC.CRM.Core.Dao;
using ASC.CRM.Core.Entities;
using ASC.CRM.Core.Enums;
using ASC.Web.Api.Models;
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
namespace ASC.CRM.ApiModels
{
[DataContract(Name = "entity", Namespace = "")]
public class EntityDto
{
public String EntityType { get; set; }
public int EntityId { get; set; }
public String EntityTitle { get; set; }
public static EntityDto GetSample()
{
return new EntityDto
{
EntityId = 123445,
EntityType = "opportunity",
EntityTitle = "Household appliances internet shop"
};
}
}
[Scope]
public class EntityDtoHelper
{
public EntityDtoHelper(DaoFactory daoFactory)
{
DaoFactory = daoFactory;
}
public DaoFactory DaoFactory { get; }
public EntityDto Get(EntityType entityType, int entityID)
{
if (entityID == 0) return null;
var result = new EntityDto
{
EntityId = entityID
};
switch (entityType)
{
case EntityType.Case:
var caseObj = DaoFactory.GetCasesDao().GetByID(entityID);
if (caseObj == null)
return null;
result.EntityType = "case";
result.EntityTitle = caseObj.Title;
break;
case EntityType.Opportunity:
var dealObj = DaoFactory.GetDealDao().GetByID(entityID);
if (dealObj == null)
return null;
result.EntityType = "opportunity";
result.EntityTitle = dealObj.Title;
break;
default:
return null;
}
return result;
}
}
[DataContract(Name = "historyEvent", Namespace = "")]
public class RelationshipEventDto
{
public RelationshipEventDto()
{
}
[DataMember(Name = "id")]
public int Id { get; set; }
public EmployeeWraper CreateBy { get; set; }
[DataMember(IsRequired = true, EmitDefaultValue = false)]
public ApiDateTime Created { get; set; }
[DataMember(IsRequired = true, EmitDefaultValue = false)]
public String Content { get; set; }
[DataMember(IsRequired = true, EmitDefaultValue = false)]
public HistoryCategoryBaseDto Category { get; set; }
public ContactBaseDto Contact { get; set; }
public EntityDto Entity { get; set; }
public bool CanEdit { get; set; }
public IEnumerable<FileWrapper<int>> Files { get; set; }
public static RelationshipEventDto GetSample()
{
return new RelationshipEventDto
{
CanEdit = true,
Category = HistoryCategoryBaseDto.GetSample(),
Entity = EntityDto.GetSample(),
Contact = ContactBaseDto.GetSample(),
Created = ApiDateTime.GetSample(),
CreateBy = EmployeeWraper.GetSample(),
Files = new[] { FileWrapper<int>.GetSample() },
Content = @"Agreed to meet at lunch and discuss the client commercial offer"
};
}
}
[Scope]
public class RelationshipEventDtoHelper
{
public RelationshipEventDtoHelper(
ApiDateTimeHelper apiDateTimeHelper,
EmployeeWraperHelper employeeWraperHelper,
ContactDtoHelper contactBaseDtoHelper,
FileWrapperHelper fileWrapperHelper,
CRMSecurity cRMSecurity,
DaoFactory daoFactory,
EntityDtoHelper entityDtoHelper,
HistoryCategoryDtoHelper historyCategoryDtoHelper)
{
ApiDateTimeHelper = apiDateTimeHelper;
EmployeeWraperHelper = employeeWraperHelper;
CRMSecurity = cRMSecurity;
DaoFactory = daoFactory;
ContactBaseDtoHelper = contactBaseDtoHelper;
FileWrapperHelper = fileWrapperHelper;
EntityDtoHelper = entityDtoHelper;
HistoryCategoryDtoHelper = historyCategoryDtoHelper;
}
public HistoryCategoryDtoHelper HistoryCategoryDtoHelper { get; }
public FileWrapperHelper FileWrapperHelper { get; }
public ContactDtoHelper ContactBaseDtoHelper { get; }
public DaoFactory DaoFactory { get; }
public CRMSecurity CRMSecurity { get; }
public ApiDateTimeHelper ApiDateTimeHelper { get; }
public EmployeeWraperHelper EmployeeWraperHelper { get; }
public EntityDtoHelper EntityDtoHelper { get; }
public RelationshipEventDto Get(RelationshipEvent relationshipEvent)
{
var result = new RelationshipEventDto
{
Id = relationshipEvent.ID,
CreateBy = EmployeeWraperHelper.Get(relationshipEvent.CreateBy),
Created = ApiDateTimeHelper.Get(relationshipEvent.CreateOn),
Content = relationshipEvent.Content,
Files = new List<FileWrapper<int>>(),
CanEdit = CRMSecurity.CanEdit(relationshipEvent)
};
var historyCategory = DaoFactory.GetListItemDao().GetByID(relationshipEvent.CategoryID);
if (historyCategory != null)
{
result.Category = HistoryCategoryDtoHelper.Get(historyCategory);
}
if (relationshipEvent.EntityID > 0)
{
result.Entity = EntityDtoHelper.Get(relationshipEvent.EntityType, relationshipEvent.EntityID);
}
result.Files = DaoFactory.GetRelationshipEventDao().GetFiles(relationshipEvent.ID).ConvertAll(file => FileWrapperHelper.Get<int>(file));
if (relationshipEvent.ContactID > 0)
{
var relativeContact = DaoFactory.GetContactDao().GetByID(relationshipEvent.ContactID);
if (relativeContact != null)
{
result.Contact = ContactBaseDtoHelper.GetContactBaseDto(relativeContact);
}
}
result.CanEdit = CRMSecurity.CanAccessTo(relationshipEvent);
return result;
}
}
}