DocSpace-client/common/ASC.Resource.Manager/ResxManager.cs

166 lines
7.3 KiB
C#
Raw Normal View History

2019-08-13 11:17:18 +00:00
/*
*
* (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 System;
2019-08-15 09:23:59 +00:00
using System.Collections;
2019-08-13 11:17:18 +00:00
using System.Collections.Generic;
2021-02-28 12:40:50 +00:00
using System.ComponentModel.Design;
2019-08-13 11:17:18 +00:00
using System.IO;
using System.Linq;
using System.Resources;
2020-01-23 11:03:38 +00:00
using Microsoft.Extensions.DependencyInjection;
2019-08-13 11:17:18 +00:00
namespace ASC.Resource.Manager
{
public class ResxManager
{
2021-02-09 17:53:49 +00:00
public static bool Export(IServiceProvider serviceProvider, string project, string module, string fName, string language, string exportPath, string key = null)
2019-08-13 11:17:18 +00:00
{
var filter = new ResCurrent
{
Project = new ResProject { Name = project },
Module = new ResModule { Name = module },
2019-08-13 15:17:14 +00:00
Language = new ResCulture { Title = language },
2019-08-15 09:14:10 +00:00
Word = new ResWord() { ResFile = new ResFile() { FileName = fName } }
2019-08-13 11:17:18 +00:00
};
2020-02-03 10:48:06 +00:00
using var scope = serviceProvider.CreateScope();
2020-01-23 11:03:38 +00:00
var resourceData = scope.ServiceProvider.GetService<ResourceData>();
2019-10-10 08:52:21 +00:00
var words = resourceData.GetListResWords(filter, string.Empty).GroupBy(x => x.ResFile.FileID).ToList();
2019-08-13 11:17:18 +00:00
if (!words.Any())
{
Console.WriteLine("Error!!! Can't find appropriate project and module. Possibly wrong names!");
2021-02-09 17:53:49 +00:00
return false;
2019-08-13 11:17:18 +00:00
}
foreach (var fileWords in words)
{
var wordsDictionary = new Dictionary<string, object>();
var firstWord = fileWords.FirstOrDefault();
var fileName = firstWord == null
? module
: Path.GetFileNameWithoutExtension(firstWord.ResFile.FileName);
2019-08-13 13:03:56 +00:00
var zipFileName = Path.Combine(exportPath, $"{fileName}{(language == "Neutral" ? string.Empty : "." + language)}.resx");
2019-08-13 11:17:18 +00:00
var dirName = Path.GetDirectoryName(zipFileName);
if (!Directory.Exists(dirName))
{
Directory.CreateDirectory(dirName);
}
var toAdd = new List<ResWord>();
2021-02-28 12:40:50 +00:00
var toAddFiles = new Dictionary<string,ResXFileRef>();
2019-08-13 11:17:18 +00:00
if (!string.IsNullOrEmpty(key))
{
2019-08-15 09:14:10 +00:00
var keys = key.Split(",").Distinct();
2019-08-13 13:03:56 +00:00
2019-08-13 11:17:18 +00:00
if (File.Exists(zipFileName))
{
using var resXResourceReader = new ResXResourceReader(zipFileName);
2021-02-16 10:24:09 +00:00
resXResourceReader.BasePath = Path.GetDirectoryName(zipFileName);
2021-02-28 12:40:50 +00:00
resXResourceReader.UseResXDataNodes = true;
foreach (var v in resXResourceReader.OfType<DictionaryEntry>())
{
var k = v.Key.ToString();
var val = v.Value as ResXDataNode;
if (keys.Any())
2021-02-09 14:58:35 +00:00
{
2021-02-28 12:40:50 +00:00
if (val.FileRef != null)
{
var fileRef = new ResXFileRef(Path.GetFileName(val.FileRef.FileName), val.FileRef.TypeName);
toAddFiles.Add(k, fileRef);
}
else
{
k = keys.FirstOrDefault(r => r == k);
if (k != null)
{
var word = fileWords.FirstOrDefault(r => r.Title == k);
if (word != null)
{
toAdd.Add(word);
}
}
}
2021-02-09 14:58:35 +00:00
}
2021-02-28 12:40:50 +00:00
else
{
if (val.FileRef != null)
{
var fileRef = new ResXFileRef(Path.GetFileName(val.FileRef.FileName), val.FileRef.TypeName);
toAddFiles.Add(k, fileRef);
}
else
{
toAdd.Add(new ResWord { Title = k, ValueTo = val.GetValue((ITypeResolutionService)null)?.ToString() });
}
}
}
2019-08-13 11:17:18 +00:00
}
2019-08-13 13:03:56 +00:00
foreach (var k in keys)
2019-08-13 11:17:18 +00:00
{
2019-08-13 13:03:56 +00:00
if (!toAdd.Any(r => r.Title == k))
{
var exists = fileWords.FirstOrDefault(r => r.Title == k);
if (exists != null)
{
toAdd.Add(exists);
}
}
2019-08-13 11:17:18 +00:00
}
}
else
{
toAdd.AddRange(fileWords.Where(word => !wordsDictionary.ContainsKey(word.Title)));
}
using var resXResourceWriter = new ResXResourceWriter(zipFileName);
2019-09-24 16:20:21 +00:00
foreach (var word in toAdd.Where(r => r != null && (!string.IsNullOrEmpty(r.ValueTo) || language == "Neutral")).OrderBy(x => x.Title))
2019-08-13 11:17:18 +00:00
{
2019-08-13 13:03:56 +00:00
resXResourceWriter.AddResource(word.Title, word.ValueTo);
2019-08-13 11:17:18 +00:00
}
2021-02-28 12:40:50 +00:00
foreach(var f in toAddFiles)
{
resXResourceWriter.AddResource(new ResXDataNode(f.Key, f.Value));
}
2019-08-13 11:17:18 +00:00
resXResourceWriter.Generate();
resXResourceWriter.Close();
}
2021-02-09 17:53:49 +00:00
return true;
2019-08-13 11:17:18 +00:00
}
}
}