Exemplo n.º 1
0
        /// <summary>
        /// Trying to open connection to SQL Server and if error doesn't occure then server is up and running.
        /// </summary>
        public bool CheckIfServerIsRunning()
        {
            using (SqlConnection connection = new SqlConnection(DatabaseConfig.ConnectionString("FileForensiqDB")))
            {
                try
                {
                    connection.Open();

                    return(true);
                }
                catch (Exception ex)
                {
                    ErrorLogger.LogError("Server isn't running: " + ex.Message);
                    return(false);
                }
                finally
                {
                    // Always close connection
                    if (connection.State == ConnectionState.Open)
                    {
                        connection.Close();
                    }
                }
            }
        }
Exemplo n.º 2
0
        /// <summary>
        /// Creates table for cache data and returns bool that indicates if table is created or not.
        /// </summary>
        public bool CreateTable(string tableName)
        {
            using (SqlConnection connection = new SqlConnection(DatabaseConfig.ConnectionString("FileForensiqDB")))
            {
                try
                {
                    connection.Open();

                    sqlTransaction = connection.BeginTransaction();

                    string query = "CREATE TABLE " + tableName +
                                   " (Id int IDENTITY(1,1) PRIMARY KEY, Name varchar(max), " +
                                   "Extension varchar(255), " +
                                   "Size bigint, " +
                                   "NumberOfFiles int, " +
                                   "CreationTime datetime, " +
                                   "LastAccessTime datetime, " +
                                   "LastModificationTime datetime)";

                    sqlCommand = new SqlCommand(query, connection, sqlTransaction);

                    sqlCommand.ExecuteNonQuery();

                    sqlTransaction.Commit();

                    return(true);
                }
                catch (Exception ex)
                {
                    ErrorLogger.LogError("Error while creating database table: " + ex.Message);
                    sqlTransaction.Rollback();

                    if (ex.Message.Contains("There is already an object named"))
                    {
                        return(false);
                    }
                    throw ex;
                }
                finally
                {
                    // Always close connection
                    if (connection.State == ConnectionState.Open)
                    {
                        connection.Close();
                    }
                }
            }
        }
Exemplo n.º 3
0
        /// <summary>
        /// Returns all informations about files for specific types.
        /// </summary>
        public List <CacheModel> GetAllFiles(string tableLetter, List <string> types)
        {
            using (IDbConnection connection = new SqlConnection(DatabaseConfig.ConnectionString("FileForensiqDB")))
            {
                try
                {
                    connection.Open();

                    List <CacheModel> result = new List <CacheModel>();

                    List <string> tableNames = GetAllTableNames(tableLetter, connection);

                    foreach (var table in tableNames)
                    {
                        string query = "";

                        if (types.Any(x => x == "All"))
                        {
                            query = "SELECT * FROM " + table;
                        }
                        else
                        {
                            query = "SELECT * FROM " + table + " WHERE Extension IN @types;";
                        }


                        result.AddRange(connection.Query <CacheModel>(query, new { types }).ToList());
                    }

                    return(result);
                }
                catch (Exception ex)
                {
                    ErrorLogger.LogError("Error while retriving files: " + ex.Message);
                    throw;
                }
                finally
                {
                    // Always close connection
                    if (connection.State == ConnectionState.Open)
                    {
                        connection.Close();
                    }
                }
            }
        }
Exemplo n.º 4
0
        /// <summary>
        /// Returns file information from all tables for specific column.
        /// </summary>
        public List <CacheModel> GetFileColumnHistory(string tableLetter, string fileName)
        {
            using (IDbConnection connection = new SqlConnection(DatabaseConfig.ConnectionString("FileForensiqDB")))
            {
                try
                {
                    connection.Open();

                    List <CacheModel> result = new List <CacheModel>();

                    List <string> tableNames = GetAllTableNames(tableLetter, connection);

                    foreach (var table in tableNames)
                    {
                        string query = "SELECT * FROM " + table + " WHERE Name = @fileName;";

                        var tempResult = connection.Query <CacheModel>(query, new { fileName }).ToList();

                        foreach (var item in tempResult)
                        {
                            item.DateCached = table;
                        }

                        result.AddRange(tempResult);
                    }

                    return(result);
                }
                catch (Exception ex)
                {
                    ErrorLogger.LogError("Error while retriving files: " + ex.Message);
                    throw;
                }
                finally
                {
                    // Always close connection
                    if (connection.State == ConnectionState.Open)
                    {
                        connection.Close();
                    }
                }
            }
        }
Exemplo n.º 5
0
        /// <summary>
        /// Bulk insertion of cache data.
        /// </summary>
        public void InsertCacheData(string tableName, DataTable data)
        {
            using (SqlConnection connection = new SqlConnection(DatabaseConfig.ConnectionString("FileForensiqDB")))
            {
                try
                {
                    connection.Open();

                    sqlTransaction = connection.BeginTransaction();

                    sqlBulkCopy = new SqlBulkCopy(connection, SqlBulkCopyOptions.Default, sqlTransaction);

                    sqlBulkCopy.DestinationTableName = tableName;

                    // Mapping columns from DataTable to table in db
                    sqlBulkCopy.ColumnMappings.Add("Name", "Name");
                    sqlBulkCopy.ColumnMappings.Add("Extension", "Extension");
                    sqlBulkCopy.ColumnMappings.Add("Size", "Size");
                    sqlBulkCopy.ColumnMappings.Add("NumberOfFiles", "NumberOfFiles");
                    sqlBulkCopy.ColumnMappings.Add("CreationTime", "CreationTime");
                    sqlBulkCopy.ColumnMappings.Add("LastAccessTime", "LastAccessTime");
                    sqlBulkCopy.ColumnMappings.Add("LastModificationTime", "LastModificationTime");

                    sqlBulkCopy.WriteToServer(data);

                    sqlTransaction.Commit();
                }
                catch (Exception ex)
                {
                    ErrorLogger.LogError("Error while inserting cache data to database: " + ex.Message);
                    sqlTransaction.Rollback();
                    throw ex;
                }
                finally
                {
                    // Always close connection
                    if (connection.State == ConnectionState.Open)
                    {
                        connection.Close();
                    }
                }
            }
        }
Exemplo n.º 6
0
        /// <summary>
        /// Returns all file types stored in extension column in all tables.
        /// </summary>
        public List <string> GetFileTypes(string tableLetter)
        {
            using (IDbConnection connection = new SqlConnection(DatabaseConfig.ConnectionString("FileForensiqDB")))
            {
                try
                {
                    connection.Open();

                    List <string> tableNames = GetAllTableNames(tableLetter, connection);

                    string query = "SELECT DISTINCT " + tableNames[0] + ".Extension FROM " + tableNames[0];

                    foreach (var table in tableNames.Skip(1).ToList())
                    {
                        query += " LEFT JOIN " + table + " ON " + tableNames[0] + ".Extension = " + table + ".Extension";
                    }

                    query += " ORDER BY " + tableNames[0] + ".Extension";

                    return(connection.Query <string>(query).ToList());
                }
                catch (Exception ex)
                {
                    ErrorLogger.LogError("Error while retriving file types: " + ex.Message);
                    throw;
                }
                finally
                {
                    // Always close connection
                    if (connection.State == ConnectionState.Open)
                    {
                        connection.Close();
                    }
                }
            }
        }
Exemplo n.º 7
0
        /// <summary>
        /// Returns all files deleted in folder for sepcific period of time.
        /// </summary>
        /// <param name="tableLetter">Drive letter.</param>
        /// <param name="folderName">Folder for which deleted files are returned.</param>
        public List <CacheModel> GetDeletedFilesForFolder(string tableLetter, string folderName, List <string> types, DateTime from, DateTime?to = null)
        {
            using (IDbConnection connection = new SqlConnection(DatabaseConfig.ConnectionString("FileForensiqDB")))
            {
                try
                {
                    connection.Open();

                    List <CacheModel> result     = new List <CacheModel>();
                    List <CacheModel> tempResult = new List <CacheModel>();

                    List <string> tableNames = new List <string>();

                    tableNames.AddRange(GetAllTableNames(tableLetter, connection));

                    if (to == null)
                    {
                        var date = tableLetter + "_" + from.ToString("d_M_yyyy");

                        tableNames = tableNames.Where(x => x == date).ToList();
                    }
                    else
                    {
                        var dates = new List <string>();

                        for (var dt = from; dt <= to; dt = dt.AddDays(1))
                        {
                            dates.Add(tableLetter + "_" + dt.ToString("d_M_yyyy"));
                        }

                        tableNames = tableNames.Where(x => dates.Contains(x)).ToList();
                    }

                    foreach (var table in tableNames)
                    {
                        string query = "";

                        if (String.IsNullOrEmpty(folderName))
                        {
                            if (types.Any(x => x == "All"))
                            {
                                query = String.Format("SELECT * FROM {0}", table);
                                var tmpResult = connection.Query <CacheModel>(query).ToList();

                                // Finding files/folders that aren't in data from pervious day that are in tempResult
                                if (tempResult.Count == 0)
                                {
                                    tempResult = tmpResult;
                                }
                                else
                                {
                                    result.AddRange(tempResult.Where(x => tmpResult.All(y => y.Name != x.Name)).ToList());
                                    tempResult.Clear();
                                    tempResult = tmpResult;
                                }
                            }
                            else
                            {
                                query = String.Format("SELECT * FROM {0} WHERE Extension IN {1}", table, "@types");
                                var tmpResult = connection.Query <CacheModel>(query, new { types }).ToList();

                                if (tempResult.Count == 0)
                                {
                                    tempResult = tmpResult;
                                }
                                else
                                {
                                    result.AddRange(tempResult.Where(x => tmpResult.All(y => y.Name != x.Name)).ToList());
                                    tempResult.Clear();
                                    tempResult = tmpResult;
                                }
                            }
                        }
                        else
                        {
                            if (types.Any(x => x == "All"))
                            {
                                query = "SELECT * FROM " + table + " WHERE Name LIKE '%" + folderName + "%'";
                                var tmpResult = connection.Query <CacheModel>(query).ToList();

                                // Finding files/folders that aren't in data from pervious day that are in tempResult
                                if (tempResult.Count == 0)
                                {
                                    tempResult = tmpResult;
                                }
                                else
                                {
                                    result.AddRange(tempResult.Where(x => tmpResult.All(y => y.Name != x.Name)).ToList());
                                    tempResult.Clear();
                                    tempResult = tmpResult;
                                }
                            }
                            else
                            {
                                query = "SELECT * FROM " + table + " WHERE Name LIKE '%" + folderName + "%' AND Extension IN @types";
                                var tmpResult = connection.Query <CacheModel>(query, new { types }).ToList();

                                if (tempResult.Count == 0)
                                {
                                    tempResult = tmpResult;
                                }
                                else
                                {
                                    result.AddRange(tempResult.Where(x => tmpResult.All(y => y.Name != x.Name)).ToList());
                                    tempResult.Clear();
                                    tempResult = tmpResult;
                                }
                            }
                        }
                    }

                    return(result);
                }
                catch (Exception ex)
                {
                    ErrorLogger.LogError("Error while retriving deleted files: " + ex.Message);
                    throw;
                }
                finally
                {
                    // Always close connection
                    if (connection.State == ConnectionState.Open)
                    {
                        connection.Close();
                    }
                }
            }
        }
Exemplo n.º 8
0
        /// <summary>
        /// Returns all files created between specific date.
        /// </summary>
        public List <CacheModel> GetFilesByPeriodOfTime(string tableLetter, string columnName, List <string> types, DateTime from, DateTime?to = null)
        {
            using (IDbConnection connection = new SqlConnection(DatabaseConfig.ConnectionString("FileForensiqDB")))
            {
                try
                {
                    connection.Open();

                    List <CacheModel> result     = new List <CacheModel>();
                    List <string>     tableNames = new List <string>();

                    tableNames.AddRange(GetAllTableNames(tableLetter, connection));

                    foreach (var table in tableNames)
                    {
                        string query = "";

                        if (types.Any(x => x == "All"))
                        {
                            if (to == null)
                            {
                                query = String.Format("SELECT * FROM {0} WHERE Convert(date,{1}) BETWEEN '{2}' AND '{3}'", table, columnName, from.ToString("yyyy/MM/dd"), from.AddHours(24).ToString("yyyy/MM/dd"));
                                result.AddRange(connection.Query <CacheModel>(query, new { types }).ToList());
                            }
                            else
                            {
                                query = String.Format("SELECT * FROM {0} WHERE Convert(date,{1}) BETWEEN '{2}' AND '{3}'", table, columnName, from.ToString("yyyy/MM/dd"), to?.AddHours(24).ToString("yyyy/MM/dd"));
                                result.AddRange(connection.Query <CacheModel>(query, new { types }).ToList());
                            }
                        }
                        else
                        {
                            if (to == null)
                            {
                                query = String.Format("SELECT * FROM {0} WHERE Convert(date,{1}) BETWEEN '{2}' AND '{3}' AND Extension IN {4}", table, columnName, from.ToString("yyyy/MM/dd"), from.AddHours(24).ToString("yyyy/MM/dd"), "@types");
                                result.AddRange(connection.Query <CacheModel>(query, new { types }).ToList());
                            }
                            else
                            {
                                query = String.Format("SELECT * FROM {0} WHERE Convert(date,{1}) BETWEEN '{2}' AND '{3}' AND Extension IN {4}", table, columnName, from.ToString("yyyy/MM/dd"), to?.AddHours(24).ToString("yyyy/MM/dd"), "@types");
                                result.AddRange(connection.Query <CacheModel>(query, new { types }).ToList());
                            }
                        }
                    }

                    return(result);
                }
                catch (Exception ex)
                {
                    ErrorLogger.LogError("Error while retriving files: " + ex.Message);
                    throw;
                }
                finally
                {
                    // Always close connection
                    if (connection.State == ConnectionState.Open)
                    {
                        connection.Close();
                    }
                }
            }
        }