{"id":28376148,"url":"https://github.com/ozturkeniss/winformsdotnet","last_synced_at":"2025-09-10T17:37:38.842Z","repository":{"id":280043345,"uuid":"940829660","full_name":"ozturkeniss/WinformsDotnet","owner":"ozturkeniss","description":"A Windows Forms application built with C# .NET and MongoDB, implementing a movie rating system with user authentication, CRUD operations, friend management, and real-time notifications using a document-based database structure.","archived":false,"fork":false,"pushed_at":"2025-02-28T21:56:04.000Z","size":1643,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-26T10:50:24.746Z","etag":null,"topics":["asp-net-core","csharp","mongodb","movie-rating-app","windows-form-application"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ozturkeniss.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-02-28T21:48:56.000Z","updated_at":"2025-05-13T18:27:55.000Z","dependencies_parsed_at":null,"dependency_job_id":"e83449f3-45af-4388-937f-040340d8c355","html_url":"https://github.com/ozturkeniss/WinformsDotnet","commit_stats":null,"previous_names":["kalzimkholodros/winformsdotnet","ozturkeniss/winformsdotnet"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ozturkeniss/WinformsDotnet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozturkeniss%2FWinformsDotnet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozturkeniss%2FWinformsDotnet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozturkeniss%2FWinformsDotnet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozturkeniss%2FWinformsDotnet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ozturkeniss","download_url":"https://codeload.github.com/ozturkeniss/WinformsDotnet/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozturkeniss%2FWinformsDotnet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274496316,"owners_count":25296358,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-10T02:00:12.551Z","response_time":83,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["asp-net-core","csharp","mongodb","movie-rating-app","windows-form-application"],"created_at":"2025-05-30T00:05:37.889Z","updated_at":"2025-09-10T17:37:38.832Z","avatar_url":"https://github.com/ozturkeniss.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"Movie Rating Application\nA Windows Forms application built with C# .NET and MongoDB, implementing a movie rating system with user authentication, CRUD operations, friend management, and real-time notifications using a document-based database structure.\n![Ekran görüntüsü 2025-03-01 004152](https://github.com/user-attachments/assets/72c93d28-3e42-4940-9801-e6bdc7cb81b1)\n\n\n## Features\n\n- **User Authentication**\n  - Login/Register system\n  - Role-based access (Admin/User)\n  - Secure password hashing\n\n- **Movie Management**\n  - Browse movie catalog\n  - View detailed movie information\n  - Rate and comment on movies\n  - Add movies to favorites\n\n- **Social Features**\n  - Send friend requests\n  - Accept/Reject friend requests\n  - Real-time notifications\n  - Gift movies to friends\n\n- **Admin Features**\n  - Manage movie catalog\n  - User management\n  - System monitoring\n \n\n## Technologies Used\n\n- **Frontend:** Windows Forms (.NET)\n- **Backend:** C# .NET\n- **Database:** MongoDB\n- **Authentication:** BCrypt\n- **Image Handling:** Gravatar\n\n1. Clone the repository\n```bash\ngit clone [https://github.com/kalzimkholodros/WinformsDotnet]\n```\n\n2. Install MongoDB on your system\n- Download and install MongoDB Community Server\n- Create a database named \"movieRatingDb\"\n- Create collections: \"users\", \"movies\"\n\n3. Configure MongoDB Connection\n- Update the connection string in `MongoDBService.cs`\n- Default connection: `mongodb://localhost:27017`\n\n4. Run the Application\n- Open the solution in Visual Studio\n- Build and run the project\n\n\n## Database Structure\n\n### Users Collection\n```json\n{\n  \"username\": \"string\",\n  \"password\": \"string (hashed)\",\n  \"role\": \"string\",\n  \"balance\": \"decimal\",\n  \"friends\": \"array\",\n  \"friendRequests\": \"array\",\n  \"notifications\": \"array\",\n  \"favorites\": \"array\",\n  \"ownedMovies\": \"array\",\n  \"receivedGifts\": \"array\"\n}\n\n### Movies Collection\n```json\n{\n  \"title\": \"string\",\n  \"imageUrl\": \"string\",\n  \"description\": \"string\",\n  \"releaseYear\": \"integer\",\n  \"director\": \"string\",\n  \"genre\": \"string\",\n  \"cast\": \"array\",\n  \"price\": \"decimal\",\n  \"isOnSale\": \"boolean\",\n  \"discountRate\": \"decimal\",\n  \"userRatings\": \"array\",\n  \"averageUserRating\": \"double\",\n  \"purchaseCount\": \"integer\"\n}\n\n## Default Users\n\n- **Admin Account**\n  - Username: admin\n  - Password: admin123\n  - Role: admin\n\n- **Test User Account**\n  - Username: user1\n  - Password: admin123\n  - Role: user\n## Acknowledgments\n\n- Movie data and images sourced from IMDB\n- Icons and UI elements from Microsoft Windows Forms\n- Profile pictures handled by Gravatar\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fozturkeniss%2Fwinformsdotnet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fozturkeniss%2Fwinformsdotnet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fozturkeniss%2Fwinformsdotnet/lists"}