Skip to content

cschweig2/Library.Solution

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Library Catalog

Practice Project

Project Started 01.11.2021 | Last Updated 01.13.2021

By Chelsea Becker and Danielle Thompson

Description

A C#/.NET/MVC program designed to catalog a library's books and let patrons check them out.

MySQL Designer Schema

Library-Schema.png

Specifications

User Story # User Story Actualized
1 "As a librarian, I want to create, read, update, delete, and list books in the catalog, so that we can keep track of our inventory." True
2 "As a librarian, I want to enter multiple authors for a book, so that I can include accurate information in my catalog." True
3 "As a patron, I want to check a book out, so that I can take it home with me." Partially - librarian ("administrator") can check a patron out.
4 As a user, I want to know when a book that has been checked out is due, so that I know when it is due. True

Setup/Installation Requirements

Installing .NET Core Framework for Windows(10+) Users

  1. Download the 64-bit .NET Core SDK (Software Development Kit) by following this link: https://dotnet.microsoft.com/download/thank-you/dotnet-sdk-2.2.203-windows-x64-installer.
    1a. Follow prompts to begin your download. The download will be a .exe file. Click to install when it is finished downloading.
  2. After clicking the downloaded .exe file, follow the prompts in the installer and use suggested default settings.
  3. You can confirm a successful installation by opening a command line terminal and running the command $ dotnet --version, which should return a version number.

Installing .NET Core Framework for Mac Users

  1. Download the .NET Core SDK by following this link: https://dotnet.microsoft.com/download/thank-you/dotnet-sdk-2.2.106-macos-x64-installer.
    1a. Follow prompts to begin your download. The download will be a .pkg file. Click to install when it is finished downloading.
  2. After clicking the downloaded .pkg file, follow the prompts in the installer and use suggested default settings.
  3. You can confirm a successful installation by opening a command line terminal and running the command $ dotnet --version, which should return a version number.

Installing MySQL Workbench

  1. Download and install the version of MySQL Workbench suitable for your machine.

View locally/Project Setup

Clone

  1. Follow above steps to install .NET Core.
  2. Open web browser and go to https://github.com/cschweig2/Library.Solution.
  3. After clicking the green "code" button, you can copy the URL for the repository.
  4. Open a terminal window, such as Command Prompt or Git Bash.
    4a. Type in this command: "git clone", followed by the URL you just copied. The full command should look like this: "git clone https://github.com/cschweig2/Library.Solution".
  5. View the code on your favorite text editor, such as Visual Studio Code.

Download

  1. Click here to view project repository.
  2. Click "Clone or download" to find the "Download ZIP" option.
  3. Click "Download ZIP" and extract files.
  4. Open the project in a text editor by clicking on any file in the project folder.

Import Database in MySQL Workbench

  1. Open MySQL Workbench and enter your password to open a server.
  2. From the top navigation bar, follow: Server > Data Import._
  3. Select the option Import from Self-Contained File._
  4. Click the ... button to navigate to the project file folder Library and select library.sql.
  5. Set Default Target Schema or create new schema.
  6. Select the schema objects you would like to import
  7. To finalize, click Start Import._

Import Database with SQL Schema

Open MySQL Workbench and paste the following Schema Create Statement to replicate the database and its tables.

DROP TABLE IF EXISTS `__efmigrationshistory`;
CREATE TABLE `__efmigrationshistory` (
  `MigrationId` varchar(95) NOT NULL,
  `ProductVersion` varchar(32) NOT NULL,
  PRIMARY KEY (`MigrationId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

DROP TABLE IF EXISTS `aspnetroleclaims`;
CREATE TABLE `aspnetroleclaims` (
  `Id` int NOT NULL AUTO_INCREMENT,
  `RoleId` varchar(255) NOT NULL,
  `ClaimType` longtext,
  `ClaimValue` longtext,
  PRIMARY KEY (`Id`),
  KEY `IX_AspNetRoleClaims_RoleId` (`RoleId`),
  CONSTRAINT `FK_AspNetRoleClaims_AspNetRoles_RoleId` FOREIGN KEY (`RoleId`) REFERENCES `aspnetroles` (`Id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

DROP TABLE IF EXISTS `aspnetroles`;
CREATE TABLE `aspnetroles` (
  `Id` varchar(255) NOT NULL,
  `Name` varchar(256) DEFAULT NULL,
  `NormalizedName` varchar(256) DEFAULT NULL,
  `ConcurrencyStamp` longtext,
  PRIMARY KEY (`Id`),
  UNIQUE KEY `RoleNameIndex` (`NormalizedName`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

DROP TABLE IF EXISTS `aspnetuserclaims`;
CREATE TABLE `aspnetuserclaims` (
  `Id` int NOT NULL AUTO_INCREMENT,
  `UserId` varchar(255) NOT NULL,
  `ClaimType` longtext,
  `ClaimValue` longtext,
  PRIMARY KEY (`Id`),
  KEY `IX_AspNetUserClaims_UserId` (`UserId`),
  CONSTRAINT `FK_AspNetUserClaims_AspNetUsers_UserId` FOREIGN KEY (`UserId`) REFERENCES `aspnetusers` (`Id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

DROP TABLE IF EXISTS `aspnetuserlogins`;
CREATE TABLE `aspnetuserlogins` (
  `LoginProvider` varchar(255) NOT NULL,
  `ProviderKey` varchar(255) NOT NULL,
  `ProviderDisplayName` longtext,
  `UserId` varchar(255) NOT NULL,
  PRIMARY KEY (`LoginProvider`,`ProviderKey`),
  KEY `IX_AspNetUserLogins_UserId` (`UserId`),
  CONSTRAINT `FK_AspNetUserLogins_AspNetUsers_UserId` FOREIGN KEY (`UserId`) REFERENCES `aspnetusers` (`Id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

DROP TABLE IF EXISTS `aspnetuserroles`;
CREATE TABLE `aspnetuserroles` (
  `UserId` varchar(255) NOT NULL,
  `RoleId` varchar(255) NOT NULL,
  PRIMARY KEY (`UserId`,`RoleId`),
  KEY `IX_AspNetUserRoles_RoleId` (`RoleId`),
  CONSTRAINT `FK_AspNetUserRoles_AspNetRoles_RoleId` FOREIGN KEY (`RoleId`) REFERENCES `aspnetroles` (`Id`) ON DELETE CASCADE,
  CONSTRAINT `FK_AspNetUserRoles_AspNetUsers_UserId` FOREIGN KEY (`UserId`) REFERENCES `aspnetusers` (`Id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

DROP TABLE IF EXISTS `aspnetusers`;
CREATE TABLE `aspnetusers` (
  `Id` varchar(255) NOT NULL,
  `UserName` varchar(256) DEFAULT NULL,
  `NormalizedUserName` varchar(256) DEFAULT NULL,
  `Email` varchar(256) DEFAULT NULL,
  `NormalizedEmail` varchar(256) DEFAULT NULL,
  `EmailConfirmed` bit(1) NOT NULL,
  `PasswordHash` longtext,
  `SecurityStamp` longtext,
  `ConcurrencyStamp` longtext,
  `PhoneNumber` longtext,
  `PhoneNumberConfirmed` bit(1) NOT NULL,
  `TwoFactorEnabled` bit(1) NOT NULL,
  `LockoutEnd` datetime(6) DEFAULT NULL,
  `LockoutEnabled` bit(1) NOT NULL,
  `AccessFailedCount` int NOT NULL,
  PRIMARY KEY (`Id`),
  UNIQUE KEY `UserNameIndex` (`NormalizedUserName`),
  KEY `EmailIndex` (`NormalizedEmail`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

DROP TABLE IF EXISTS `aspnetusertokens`;
CREATE TABLE `aspnetusertokens` (
  `UserId` varchar(255) NOT NULL,
  `LoginProvider` varchar(255) NOT NULL,
  `Name` varchar(255) NOT NULL,
  `Value` longtext,
  PRIMARY KEY (`UserId`,`LoginProvider`,`Name`),
  CONSTRAINT `FK_AspNetUserTokens_AspNetUsers_UserId` FOREIGN KEY (`UserId`) REFERENCES `aspnetusers` (`Id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

DROP TABLE IF EXISTS `authorbook`;
CREATE TABLE `authorbook` (
  `AuthorBookID` int NOT NULL AUTO_INCREMENT,
  `AuthorId` int DEFAULT NULL,
  `BookId` int DEFAULT NULL,
  PRIMARY KEY (`AuthorBookID`),
  KEY `IX_AuthorBook_AuthorId` (`AuthorId`),
  KEY `IX_AuthorBook_BookId` (`BookId`),
  CONSTRAINT `FK_AuthorBook_Authors_AuthorId` FOREIGN KEY (`AuthorId`) REFERENCES `authors` (`AuthorId`) ON DELETE RESTRICT,
  CONSTRAINT `FK_AuthorBook_Books_BookId` FOREIGN KEY (`BookId`) REFERENCES `books` (`BookId`) ON DELETE RESTRICT
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

DROP TABLE IF EXISTS `authors`;
CREATE TABLE `authors` (
  `AuthorId` int NOT NULL AUTO_INCREMENT,
  `AuthorName` longtext,
  PRIMARY KEY (`AuthorId`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

DROP TABLE IF EXISTS `bookpatron`;
CREATE TABLE `bookpatron` (
  `BookPatronId` int NOT NULL AUTO_INCREMENT,
  `BookId` int DEFAULT NULL,
  `PatronId` int DEFAULT NULL,
  PRIMARY KEY (`BookPatronId`),
  KEY `IX_BookPatron_BookId` (`BookId`),
  KEY `IX_BookPatron_PatronId` (`PatronId`),
  CONSTRAINT `FK_BookPatron_Books_BookId` FOREIGN KEY (`BookId`) REFERENCES `books` (`BookId`) ON DELETE RESTRICT,
  CONSTRAINT `FK_BookPatron_Patrons_PatronId` FOREIGN KEY (`PatronId`) REFERENCES `patrons` (`PatronId`) ON DELETE RESTRICT
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

DROP TABLE IF EXISTS `books`;
CREATE TABLE `books` (
  `BookId` int NOT NULL AUTO_INCREMENT,
  `CheckedOut` bit(1) NOT NULL,
  `DueDate` datetime(6) NOT NULL,
  `Overdue` bit(1) NOT NULL,
  `UserId` varchar(255) DEFAULT NULL,
  `CopyId` int DEFAULT NULL,
  `Title` longtext,
  PRIMARY KEY (`BookId`),
  KEY `IX_Books_CopyId` (`CopyId`),
  KEY `IX_Books_UserId` (`UserId`),
  CONSTRAINT `FK_Books_AspNetUsers_UserId` FOREIGN KEY (`UserId`) REFERENCES `aspnetusers` (`Id`) ON DELETE RESTRICT,
  CONSTRAINT `FK_Books_Copies_CopyId` FOREIGN KEY (`CopyId`) REFERENCES `copies` (`CopyId`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

DROP TABLE IF EXISTS `checkout`;
CREATE TABLE `checkout` (
  `CheckoutId` int NOT NULL AUTO_INCREMENT,
  `PatronId` int DEFAULT NULL,
  `BookId` int DEFAULT NULL,
  PRIMARY KEY (`CheckoutId`),
  KEY `IX_Checkout_CopyId` (`BookId`),
  KEY `IX_Checkout_PatronId` (`PatronId`),
  CONSTRAINT `FK_Checkout_Copies_CopyId` FOREIGN KEY (`BookId`) REFERENCES `copies` (`CopyId`) ON DELETE RESTRICT,
  CONSTRAINT `FK_Checkout_Patrons_PatronId` FOREIGN KEY (`PatronId`) REFERENCES `patrons` (`PatronId`) ON DELETE RESTRICT
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

DROP TABLE IF EXISTS `copies`;
CREATE TABLE `copies` (
  `CopyId` int NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`CopyId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

DROP TABLE IF EXISTS `patrons`;
CREATE TABLE `patrons` (
  `PatronId` int NOT NULL AUTO_INCREMENT,
  `PatronName` longtext,
  PRIMARY KEY (`PatronId`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

Final Steps

  1. Navigate to the Library folder and enter "dotnet restore" in the command line to install packages. 2.After packages are installed in each of these folders, you may use "dotnet run" to both run and build the program.

Known Bugs

No known bugs at this time. Report any found bugs, or request features here.

Stretch Goals

  • Search feature for books by author or title.
  • Finish and add Overdue status to views based on checked out status.
  • Add copies model back into project so user can know how many copies of a book are on the shelf. Would need to tie copies into checked out property, & tie into Patrons (two more join relationships). (Find good examples of checkouts here)
  • Disallow for duplicate Patrons in patrons list, Authors in authors list, and Titles in books list - with a slight tweak to books by only adding a new copy to an existing book.
  • Be able to have librarian/administrator see a list of overdue books, so they can call up the patron who checked them out and tell them to bring them back.
  • Calling a logged-in user's name in the welcome message, not their user name (email, currently).
  • Add multiple user types to the authorization settings - i.e. an administrator log in, and a patron log in.

(Notes: For copies - if AuthorId and BookId in database are equal to new entry, increment id by 1 for the copy.)

Support and contact details

If you run into any issues, you can contact the creators at chelraebecker@gmail.com & danithompson74@gmail.com, or make contributions to the code on GitHub via forking and creating a new branch.

Contributors

Author GitHub Profile Contact Email
Chelsea Becker https://github.com/cschweig2 chelraebecker@gmail.com
Danielle Thompson https://github.com/dani-t-codes/ danithompson74@gmail.com

Technologies Used

VS Code
C# 7.3.0
.NET Core 2.2.0
ASP.NET Core MVC
Entity Framework Core 2.2.6
MySQL Workbench 8.0 for Windows

Legal

This software is licensed under the MIT license.

Copyright (c) 2020 Chelsea Becker and Danielle Thompson

About

C#/.NET/MVC practice project.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published