Some refactoring...

This commit is contained in:
Nicolò P 2024-01-12 12:23:44 +01:00
parent 82cde40bee
commit a1b8218ed4
3 changed files with 17 additions and 19 deletions

View File

@ -13,7 +13,15 @@ namespace Txt2Bib.Records
public string ToString(); public string ToString();
} }
public record class ArticleBib : IBib public abstract record ItemType
{
protected static bool IsDoi(string url)
{
return url.Contains("doi");
}
}
public record class Article : ItemType, IBib
{ {
public string Type { get; init; } = "article"; public string Type { get; init; } = "article";
public string[] Author { get; set; } = { "Gianni e Pinotto" }; public string[] Author { get; set; } = { "Gianni e Pinotto" };
@ -64,11 +72,6 @@ namespace Txt2Bib.Records
return ToString(); return ToString();
} }
private bool IsDoi(string url)
{
return url.Contains("doi");
}
public override string ToString() public override string ToString()
{ {
return $"@{Type}{{{Author[0][..5].Replace(". ", "_")}_{Year},\n" + return $"@{Type}{{{Author[0][..5].Replace(". ", "_")}_{Year},\n" +
@ -85,7 +88,7 @@ namespace Txt2Bib.Records
} }
} }
public record class BookBib : IBib public record class Book : ItemType, IBib
{ {
public string Type { get; init; } = "book"; public string Type { get; init; } = "book";
public string[] Author { get; set; } = Array.Empty<string>(); public string[] Author { get; set; } = Array.Empty<string>();
@ -128,15 +131,10 @@ namespace Txt2Bib.Records
return ToString(); return ToString();
} }
private bool IsDoi(string url)
{
return url.Contains("doi");
}
public override string ToString() public override string ToString()
{ {
var label = ""; string label;
var authString = ""; string authString;
if (Author.Length != 0) if (Author.Length != 0)
{ {

View File

@ -15,7 +15,7 @@ namespace Txt2Bib
/// </summary> /// </summary>
public class Text2Bib public class Text2Bib
{ {
private string[] _citTypes = { "J", "B", "C", "P", "?" }; private string[] _citTypes = { "J", "B", "C", "P", "I" };
/// <summary> /// <summary>
/// Generate single .bib file from input text files /// Generate single .bib file from input text files
@ -41,7 +41,7 @@ namespace Txt2Bib
/// <returns></returns> /// <returns></returns>
public string CreateBibTeX(string path) public string CreateBibTeX(string path)
{ {
var reader = File.OpenText(path); using var reader = File.OpenText(path);
byte[] contentBytes = File.ReadAllBytes(path); byte[] contentBytes = File.ReadAllBytes(path);
var content = Encoding.Latin1.GetString(contentBytes); var content = Encoding.Latin1.GetString(contentBytes);
@ -82,8 +82,8 @@ namespace Txt2Bib
{ {
citation = type switch citation = type switch
{ {
"J" => (new ArticleBib()).Convert(lines), "J" => (new Article()).Convert(lines),
"B" => new BookBib().Convert(lines), "B" => new Book().Convert(lines),
//"C" => new ChapterBib(), //"C" => new ChapterBib(),
//"P" => new ConferenceBib(), //"P" => new ConferenceBib(),
_ => "" _ => ""

View File

@ -5,7 +5,7 @@
<TargetFramework>net6.0-windows</TargetFramework> <TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<UseWPF>true</UseWPF> <UseWPF>true</UseWPF>
<Version>0.1.0</Version> <Version>0.1.1</Version>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>