kristinatrajkovski
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
      • Invitee
    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Versions and GitHub Sync Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
Invitee
Publish Note

Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

Your note will be visible on your profile and discoverable by anyone.
Your note is now live.
This note is visible on your profile and discoverable online.
Everyone on the web can find and read all notes of this public team.
See published notes
Unpublish note
Please check the box to agree to the Community Guidelines.
View profile
Engagement control
Commenting
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
  • Everyone
Suggest edit
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
Emoji Reply
Enable
Import from Dropbox Google Drive Gist Clipboard
   owned this note    owned this note      
Published Linked with GitHub
Subscribed
  • Any changes
    Be notified of any changes
  • Mention me
    Be notified of mention me
  • Unsubscribe
Subscribe
# 1. Class Diagrams _by Kristina, Mutti, Berkay, Yigit Kaan, Ozgur, Eray, Ceylin, Taha, Emin_ ```mermaid classDiagram class User { -user_id: int -username: string -password: string -profilePicture: Image -Routes: Route[] -Followers: User[] -Following: User[] +login(username: String, password: String): boolean +signup(username: String, email: String, password: String): boolean +logout() +deleteProfile() +forgotPassword() +getUserId() : int +getUsername() : string +getPassword() : string +getName() : string +getRoutes() : Route[] +setUsername(username: String) +setPassword(password: String) +setName(name: String) +search(query:string) +view_results():WikiResult[], Route[] } class HomePage { +search(query: string) } class FeedPage { +displayFeed(routes: Route[]) +search(query: string) } class UserPage{ -Profile: ProfileController -visibility: Boolean +displayProfile(user: User) +displayProfilePic(user: User) +displayFollowing(user: User) +displayFollowers(user: User) +updateProfilePicture(img: Image) +followUser(userToFollow: User) +unfollowUser(userToUnfollow: User) +changeVisibility(user: User) } class ResultPage { +displayResults(result: WikiResult[]) +displayDetails(result:WikiResult) +displayRelatedRoutes(result:Route[]) } class RouteCreationPage{ +displayOnSidebar(result: WikiResult[]) +displayOnMap(result: WikiResult[]) } class RouteDetailsPage{ -Route: RouteDetailsController +displayProfilePic(user: User) +displayWikiData(result: WikiResult[]) +displayTitle(route: Route) +displayDescription(route: Route) +displayPhotos(route: Route) +displayRating(route: Route) +displayLikes(route: Route) +displayComments(route: Route) +displayMapView(route: Route) } class WikiResult { -itemID: string -name: string -description: string -photo: string -inceptionYear: int -longitude: float -latitude: float -top_5_nearby: WikiResult[] -top_5_period: WikiResult[] } class PrivateDatabase { -userData:UserData -route:Route +fetchRelatedRoutes(): Route +fetchFollowers(): User[] +fetchFollowing(): User[] +fetchProfileData(user:User): String[][] +updateTable(table: String, value: String) } class WikidataAPI { +search(query: string): WikiResult[] +getDetails(WikiResult): WikiResult } class PageController{ -wikidataAPI: WikidataAPI -privateDatabase: PrivateDatabase +search(query: string): WikiResult[] +addPOI(result: WikiResult) +addDescription(description: string) +saveRoute(route: Route) +rateRoute(route: Route) +likeRoute(route: Route) +commentRoute(route: Route) +shareRoute(route: Route) +updateRoute(route: Route) +fetchFeed(user: User): Route[] } class POI{ -name: string -poi_id: int -photo: string } class Route { -route_id: int -title: string -description: string -photos: string[] -rating: number -likes: number -comments: string[] -saves: number -pois: POI[] -duration: int[] -duration_between: int[] -mapView: string +getTitle(): string +getDescription(): string +getPhotos(): string[] +getRating(): number +getLikes(): number +getComments(): string[] +getSaves(): number +getPOIs(): POI[] +getMapView(): string } class LoginPage { +displayLoginPage() } class SignupPage { +displaySignupPage() } class AuthenticationController { -privateDatabase: PrivateDatabase -rememberMe: boolean +login(username: String, password: String): boolean +signup(username: String, email: String, password: String): boolean +forgotPassword(email: String): boolean +setRememberMe(enabled: boolean): void +isRememberMeEnabled(): rememberMe } class GmailAuthenticationController { -privateDatabase: PrivateDatabase -gmailToken: String -isGmailTokenValid(gmailToken: String): boolean +signInWithGmail(gmailToken: String): boolean } class LoginController { -authenticationController: AuthenticationController -gmailAuthenticationController: GmailAuthenticationController } class SignupController { -authenticationController: AuthenticationController -isCredentialsValid(username: String, password: String): boolean -gmailAuthenticationController: GmailAuthenticationController } User --> PageController PageController --> LoginPage : displays_login_page PageController --> SignupPage : displays_signup_page PageController --> HomePage : searches PageController --> ResultPage: views results PageController --> UserPage : views_profile PageController --> FeedPage : views_feed PageController --> RouteCreationPage : creates_route PageController --> RouteDetailsPage : views_route UserPage -- UserPage : take_action LoginPage -- LoginController : contains login controller SignupPage -- SignupController : contains signup controller LoginController -- AuthenticationController : authenticates SignupController -- AuthenticationController : authenticates LoginController -- GmailAuthenticationController : authenticates Gmail SignupController -- GmailAuthenticationController : authenticates Gmail PageController --> WikidataAPI : fetch_wiki_results PageController --> PrivateDatabase : fetch_data PrivateDatabase --> User : contains_details AuthenticationController --> PrivateDatabase: get_data GmailAuthenticationController --> PrivateDatabase: get_data WikidataAPI --> WikiResult : contains details PrivateDatabase --> Route : contains details Route --> POI : includes ``` # 2. Use Case Diagrams ## 2.1 Search Result and Feed Diagrams _by Kristina, Mutti_ ```mermaid flowchart User --> InitiateSearch; InitiateSearch --> RetrieveSearchResults; RetrieveSearchResults -. "include" .-> DisplaySearchResults; DisplaySearchResults --> ViewDetails; ViewDetails-. "extend" .-> Save; ViewDetails-. "extend" .-> Like; ViewDetails-. "extend" .-> Comment; ViewDetails-. "extend" .-> Reroute; ViewDetails -. "extend" .-> ViewRelatedResults; ViewRelatedResults --> RetrieveSearchResults; User --> ViewFeed ViewFeed -. "include" .-> DisplayFeedResults DisplayFeedResults -. "extend" .-> Like DisplayFeedResults -. "extend" .-> Comment DisplayFeedResults -. "extend" .-> Save DisplayFeedResults -. "extend" .-> Reroute ``` ## 2.2 Profile Diagrams _by Emin_ ### 2.2.1 Profile ```mermaid flowchart User --> DeleteAccount; User --> SeeProfilePicture; User --> ListQuestions; User --> ListComments; User --> ListBookmarks; User --> EditProfileInfo; EditQuestions -."extend".-> ListQuestions; DeleteQuestions -."extend".-> ListQuestions; EditComments -."extend".-> ListComments; DeleteComments -."extend".-> ListComments; Unbookmark -."extend".-> ListBookmarks; EditPassword -."extend".-> EditProfileInfo; EditName -."extend".-> EditProfileInfo; EditProfilePicture -."extend".-> EditProfileInfo; RemovePicture -."extend".-> EditProfilePicture; ``` ### 2.2.1 Other Users' Profile ```mermaid flowchart User --> Follow; User --> Unfollow; User --> RemoveFollower; User --> DisplayProfilePic; User --> DisplayFollowers; User --> DisplayFollowing; ``` ## 2.3 Route Creation _by Burak_ ```mermaid flowchart User --> CreateRoute; CreateRoute --> InitiateSearch; InitiateSearch--> RetrieveSearchResults; RetrieveSearchResults -. "include" .-> DisplaySearchResults; DisplaySearchResults-. "extend" .-> ViewDetails; DisplaySearchResults-. "extend" .-> AddToRoute; CreateRoute-. "extend" .-> SaveAsDraft; CreateRoute-. "extend" .-> Save; ``` ## 2.4 Signup and Login ```mermaid flowchart User --> SignUp; RegisteredUser --> Login; RegisteredUser --> Logout; ``` ## 2.5 Route Details _by Emin_ ```mermaid flowchart User -. "includes" .-> DisplayWikiData User -. "includes" .-> DisplayComments User -. "includes" .-> DisplayLikes User -. "includes" .-> DisplayRoute User -. "extends" .-> ViewProfilePage DisplayRoute -. "extends" .-> Reroute DisplayRoute -. "extends" .-> OpenMaps DisplayRoute -. "extends" .-> Like DisplayRoute -. "extends" .-> Comment DisplayRoute -. "extends" .-> Save DisplayRoute -. "extends" .-> Share ``` # 3. Sequence Diagrams ## 3.1 Search Result Diagram _By Kristina_ ```mermaid sequenceDiagram participant User participant PageController participant Database participant WikidataAPI participant ResultController participant ResultPage User->>PageController: search(query) PageController->>PageController: search(query) par SearchDatabase PageController->>Database: search(query) Database->>Database: search(query) Database-->>Database: RouteResults Database->>ResultController: fetchRelatedRoutes(RouteResults) end par SearchWikidata PageController->>WikidataAPI: search(query) WikidataAPI->>WikidataAPI: search(query) WikidataAPI-->>WikidataAPI: WikiResults WikidataAPI->>PageController: fetchResults(WikiResults) end PageController->>ResultPage: displayResults(WikiResults), displayRelatedRoutes(RouteResults) ResultPage-->>User: status User->>ResultPage: view_all_results ResultPage-->>User: displayed results ``` ## 3.2 Feed Diagram _by Mutti, Eray_ ```mermaid sequenceDiagram participant User participant PageController participant Database participant FeedPage User->>PageController: viewFeed() PageController->>Database: getFollowing(User) Database-->>PageController: FollowingUsers PageController->>Database: fetchFeed(FollowingUsers) Database-->>PageController: FeedRoutes PageController->>FeedPage: displayFeed(FeedRoutes) FeedPage-->>User: displayFeedResults ``` ## 3.3 ^Follow(er|ing) Display Diagram _by Ozgur, Yigit Kagan_ ```mermaid sequenceDiagram participant User participant UserPage participant UserFollows participant PrivateDatabase participant UserData User ->> UserPage: viewProfile(User) alt UserPage ->> UserFollows: displayFollowers(User) UserFollows ->> PrivateDatabase: getFollowers(User) PrivateDatabase ->> UserData: fetchFollowers(User) UserData-->> UserPage:Followers end alt UserPage ->> UserFollows: displayFollowing(User) UserFollows ->> PrivateDatabase: getFollowing(User) PrivateDatabase ->> UserData: fetchFollowing(User) UserData-->> UserPage:Following end UserPage-->> User: status ``` Following Display Diagram is quite similar. ## 3.3.1 Display Profile _by Ozgur, Yigit Kagan_ ```mermaid sequenceDiagram participant User participant UserPage participant PageController participant PrivateDatabase User ->> UserPage: viewProfile() alt DisplayProfile UserPage ->> UserPage : displayProfile() UserPage ->> PrivateDatabase: fetchProfileData(User) PrivateDatabase -->> UserPage: ProfileData UserPage -->> User: status end alt EditProfile UserPage ->> PrivateDatabase: updateTable(Table, Value) PrivateDatabase -->> UserPage: status end alt EditPfp UserPage ->> PageController: updateProfilePicture() PageController ->> PrivateDatabase: updateTable(ProfilePicture, image) PrivateDatabase -->> PageController: status PageController -->> UserPage: status end ``` ## 3.3.2 Follow/Unfollow _by Ozgur, Yigit Kagan_ ```mermaid sequenceDiagram participant User participant UserPage participant PageController participant PrivateDatabase User ->> UserPage: viewProfile() UserPage ->> PageController: take_action(User) alt Follow PageController->>PrivateDatabase: follow(User) end alt Unfollow PageController->>PrivateDatabase: unfollow(User) end PrivateDatabase-->>PageController: status PageController-->>UserPage: status ``` ## 3.4 Route Creation Diagram _by Burak_ ```mermaid sequenceDiagram participant User participant RouteCreationPage participant PageController participant Database participant SearchResults User->>RouteCreationPage: CreateRoute() RouteCreationPage->>PageController: search(query) PageController->>Database:FetchDestination(query) SearchResults->>User:ViewResults Database->>Database:search(query) Database->>PageController:Destinations PageController->>SearchResults:Destinations SearchResults-->>User:DisplayResults User-->>RouteCreationPage:Save(query) RouteCreationPage-->>Database:Insert(query) ``` ## 3.5 SignUp and Login _by Taha & Ceylin_ ```mermaid sequenceDiagram participant User participant UserInterface participant Database alt SignUp User->>UserInterface:EnterSignUpCredentials() UserInterface-->Database:SignUpValidate() end alt Login User-->UserInterface:EnterLoginCredentials() UserInterface-->Database:LoginValidate() end alt Logout User-->UserInterface:Logout() UserInterface-->Database:setUserNull() end ``` ## 3.6 Route Details _by Emin_ ```mermaid sequenceDiagram participant User participant RoutePage participant PageController participant PrivateDatabase User ->> RoutePage: viewRoute(RouteId) RoutePage ->> PageController: take_action(RouteId) alt Comment PageController->>PrivateDatabase: comment(RouteId) end alt Like PageController->>PrivateDatabase: like(RouteId) end alt Save PageController->>PrivateDatabase: save(RouteId) end alt Share PageController->>PrivateDatabase: share(RouteId) PrivateDatabase-->>PageController: shareLink end PrivateDatabase-->>PageController: status PageController-->>RoutePage: status RoutePage ->> PageController: take_action(RouteId, object) alt Reroute PageController->>PrivateDatabase: update(RouteId, object) end PrivateDatabase-->>PageController: status PageController-->>RoutePage: status ``` ------------------------------------------

Import from clipboard

Paste your markdown or webpage here...

Advanced permission required

Your current role can only read. Ask the system administrator to acquire write and comment permission.

This team is disabled

Sorry, this team is disabled. You can't edit this note.

This note is locked

Sorry, only owner can edit this note.

Reach the limit

Sorry, you've reached the max length this note can be.
Please reduce the content or divide it to more notes, thank you!

Import from Gist

Import from Snippet

or

Export to Snippet

Are you sure?

Do you really want to delete this note?
All users will lose their connection.

Create a note from template

Create a note from template

Oops...
This template has been removed or transferred.
Upgrade
All
  • All
  • Team
No template.

Create a template

Upgrade

Delete template

Do you really want to delete this template?
Turn this template into a regular note and keep its content, versions, and comments.

This page need refresh

You have an incompatible client version.
Refresh to update.
New version available!
See releases notes here
Refresh to enjoy new features.
Your user state has changed.
Refresh to load new user state.

Sign in

Forgot password

or

By clicking below, you agree to our terms of service.

Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
Wallet ( )
Connect another wallet

New to HackMD? Sign up

Help

  • English
  • 中文
  • Français
  • Deutsch
  • 日本語
  • Español
  • Català
  • Ελληνικά
  • Português
  • italiano
  • Türkçe
  • Русский
  • Nederlands
  • hrvatski jezik
  • język polski
  • Українська
  • हिन्दी
  • svenska
  • Esperanto
  • dansk

Documents

Help & Tutorial

How to use Book mode

Slide Example

API Docs

Edit in VSCode

Install browser extension

Contacts

Feedback

Discord

Send us email

Resources

Releases

Pricing

Blog

Policy

Terms

Privacy

Cheatsheet

Syntax Example Reference
# Header Header 基本排版
- Unordered List
  • Unordered List
1. Ordered List
  1. Ordered List
- [ ] Todo List
  • Todo List
> Blockquote
Blockquote
**Bold font** Bold font
*Italics font* Italics font
~~Strikethrough~~ Strikethrough
19^th^ 19th
H~2~O H2O
++Inserted text++ Inserted text
==Marked text== Marked text
[link text](https:// "title") Link
![image alt](https:// "title") Image
`Code` Code 在筆記中貼入程式碼
```javascript
var i = 0;
```
var i = 0;
:smile: :smile: Emoji list
{%youtube youtube_id %} Externals
$L^aT_eX$ LaTeX
:::info
This is a alert area.
:::

This is a alert area.

Versions and GitHub Sync
Get Full History Access

  • Edit version name
  • Delete

revision author avatar     named on  

More Less

Note content is identical to the latest version.
Compare
    Choose a version
    No search result
    Version not found
Sign in to link this note to GitHub
Learn more
This note is not linked with GitHub
 

Feedback

Submission failed, please try again

Thanks for your support.

On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

Please give us some advice and help us improve HackMD.

 

Thanks for your feedback

Remove version name

Do you want to remove this version name and description?

Transfer ownership

Transfer to
    Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

      Link with GitHub

      Please authorize HackMD on GitHub
      • Please sign in to GitHub and install the HackMD app on your GitHub repo.
      • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
      Learn more  Sign in to GitHub

      Push the note to GitHub Push to GitHub Pull a file from GitHub

        Authorize again
       

      Choose which file to push to

      Select repo
      Refresh Authorize more repos
      Select branch
      Select file
      Select branch
      Choose version(s) to push
      • Save a new version and push
      • Choose from existing versions
      Include title and tags
      Available push count

      Pull from GitHub

       
      File from GitHub
      File from HackMD

      GitHub Link Settings

      File linked

      Linked by
      File path
      Last synced branch
      Available push count

      Danger Zone

      Unlink
      You will no longer receive notification when GitHub file changes after unlink.

      Syncing

      Push failed

      Push successfully