Skip to content

Commit

Permalink
Check 'Package' folder integrity on clone project launch
Browse files Browse the repository at this point in the history
  • Loading branch information
314pies committed Apr 28, 2021
1 parent f3a9c52 commit 1646510
Show file tree
Hide file tree
Showing 2 changed files with 86 additions and 0 deletions.
75 changes: 75 additions & 0 deletions ParrelSync/Editor/ValidateCopiedFoldersIntegrity.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
namespace ParrelSync.NonCore
{
using System.Collections;
using System.Collections.Generic;
using UnityEditor;
using UnityEngine;
using System;
using System.Text;
using System.Security.Cryptography;
using System.IO;
using System.Linq;

[InitializeOnLoad]
public class ValidateCopiedFoldersIntegrity
{
const string SessionStateKey = "ValidateCopiedFoldersIntegrity_Init";
/// <summary>
/// Called once on editor startup.
/// Validate copied folders integrity in clone project
/// </summary>
static ValidateCopiedFoldersIntegrity()
{
if (!SessionState.GetBool(SessionStateKey, false))
{
SessionState.SetBool(SessionStateKey, true);
if (!ClonesManager.IsClone()) { return; }

ValidateFolder("Packages");
}
}

static void ValidateFolder(string folderName)
{
var currentProjectPath = Path.Combine(ClonesManager.GetCurrentProjectPath(), folderName);
var currentFolderHash = CreateMd5ForFolder(currentProjectPath);

var originalProjectPath = Path.Combine(ClonesManager.GetOriginalProjectPath(), folderName);
var originalFolderHash = CreateMd5ForFolder(originalProjectPath);

if (currentFolderHash != originalFolderHash)
{
Debug.Log("ParrelSync: Detected '" + folderName + "' folder changes in the original project. Updating...");
FileUtil.ReplaceDirectory(originalProjectPath, currentProjectPath);
}
}

static string CreateMd5ForFolder(string path)
{
// assuming you want to include nested folders
var files = Directory.GetFiles(path, "*.*", SearchOption.AllDirectories)
.OrderBy(p => p).ToList();

MD5 md5 = MD5.Create();

for (int i = 0; i < files.Count; i++)
{
string file = files[i];

// hash path
string relativePath = file.Substring(path.Length + 1);
byte[] pathBytes = Encoding.UTF8.GetBytes(relativePath.ToLower());
md5.TransformBlock(pathBytes, 0, pathBytes.Length, pathBytes, 0);

// hash contents
byte[] contentBytes = File.ReadAllBytes(file);
if (i == files.Count - 1)
md5.TransformFinalBlock(contentBytes, 0, contentBytes.Length);
else
md5.TransformBlock(contentBytes, 0, contentBytes.Length, contentBytes, 0);
}

return BitConverter.ToString(md5.Hash).Replace("-", "").ToLower();
}
}
}
11 changes: 11 additions & 0 deletions ParrelSync/Editor/ValidateCopiedFoldersIntegrity.cs.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1646510

Please sign in to comment.