building-block-view.tex 7.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. In this section, the context in which Hybrid OSN is located is first considered and then a breakdown into the individual components is carried out. The function of the respective blocks is then described in more detail. Finally, the function of certain components in interaction is explained using the examples of displaying the home timeline and posting a new tweet.
  2. \subsection{Scope and Context}
  3. \label{sec:scope-and-context}
  4. Figure \ref{fig:building-block-view} shows a black box view of which other systems Hybrid OSN communicates with via interfaces. The systems are:
  5. \begin{itemize}
  6. \item Twitter API
  7. \item Gun
  8. \item IPFS via Infura
  9. \item User
  10. \end{itemize}
  11. Infura\footnote{https://infura.io/} is a service that provides access to Ethereum and IPFS via a simple interface. Communication with the API happens using simple HTTP requests. The connection of IPFS in hybrid OSN can thus be carried out in an uncomplicated way. The use of an additional system entails typically an additional risk. However, there is a JavaScript client for IPFS, which can be integrated into hybrid OSN and thus the dependency on Infura would be omitted. At the present time and for the development of the prototype, the decision was made to use Infura for reasons of simplicity. Infura can be used for IPFS free of charge and without registration.
  12. \begin{figure}[h!]
  13. \centering
  14. \includegraphics[width=1.0\textwidth]{building-block-view}
  15. \caption{.}
  16. \label{fig:building-block-view}
  17. \end{figure}
  18. \subsection{White Box View}
  19. \label{sec:white-box}
  20. The used Ionic Framework uses Angular in the core, in the concrete case of hybrid OSN Angular 5.2 is used. Accordingly, the hybrid OSN App is in principle an Angular application. The essential building blocks are components, pages and providers. In the following, these components are described in detail and examples are given of where they are used in hybrid OSN.
  21. \subsubsection{Providers}
  22. \label{providers}
  23. Data access is performed using providers (known as services in Angular). For the external services (Twitter API, P2P database, P2P storage), there is one provider each to handle the communication. In addition, providers are used as helper classes that provide a certain functionality that is used several times. This includes, for example, encryption and decryption and the compilation of aggregated timelines. Providers are injected into components using the constructor. Table \ref{tab:providers} lists all providers used in hybrid OSN and their functional descriptions.
  24. \begin{table}[h!]
  25. \begin{tabularx}{\textwidth}{|l|X|}
  26. \hline
  27. \textbf{Provider} & \textbf{Purpose} \\ \hline
  28. Auth & Manage and perform authentication against the Twitter API. Responsible for login and logout. \\ \hline
  29. Crypto & Provides methods for encryption, decryption, and key generation \\ \hline
  30. Feed & Aggregation of private (P2P) and public (Twitter) tweets to compose a chronological timeline \\ \hline
  31. P2P-Database-Gun & Interface for data exchange with Gun \\ \hline
  32. P2P-Storage-IPFS & Interface for data exchange with IPFS via Infura \\ \hline
  33. Twitter-API & Interface to use the Twitter API using the Twit package \\ \hline
  34. \end{tabularx}
  35. \caption{Providers used in the hybrid OSN app in alphabetical order with their purpose.}
  36. \label{tab:providers}
  37. \end{table}
  38. \subsubsection{Components}
  39. \label{sec:components}
  40. Components are the basic building blocks of a user interface. Figure \ref{fig:component-example} shows an example for the representation of a tweet in hybrid OSN using various components. A component consists of an HTML template, CSS styling and JavaScript logic, whereby the logic is typically limited to a minimum. Components can be used as elements in other components or pages. A component is given the data it is supposed to visualize. Furthermore, components can process events or return them to parent components for handling.
  41. \begin{figure}[h!]
  42. \centering
  43. \includegraphics[width=1.0\textwidth]{component-example}
  44. \caption{Composition of the tweet component from three other components. Several tweet components are in turn combined to form a feed component.}
  45. \label{fig:component-example}
  46. \end{figure}
  47. \subsubsection{Pages}
  48. \label{pages}
  49. Pages are special components that are used as a holistic view. A page is made up of several other components. The data to be displayed is loaded using providers. To be able to navigate between the individual pages within the app, the model of a stack is used (implemented by the NavController). The currently visible page is at the top of the stack. When another page is called, it is pushed onto the stack. Pressing \enquote{Back} removes the top page from the stack and displays the page below it.
  50. Table \ref{tab:pages} lists all pages and their purpose. When the app is opened, it checks whether the user is already logged in. Depending on this, the user starts with the Login Page or the Home Page.
  51. \begin{table}[h!]
  52. \begin{tabularx}{\textwidth}{|l|X|}
  53. \hline
  54. \textbf{Page} & \textbf{Purpose} \\ \hline
  55. About & Information about the app, which can be accessed via the login page to get basic information about the app before logging in \\ \hline
  56. Home & Chronological view of the latest tweets from Twitter and the private network \\ \hline
  57. Login & Authentication against Twitter to use the Twitter API \\ \hline
  58. Profile & Presentation of a user profile consisting of the user data (profile picture, brief description, location, website) and the user timeline \\ \hline
  59. Search & Container page for searching for tweets and users, where tweets are also divided into popular and recent (see Search-Reuslts-Tweets-Tab) \\ \hline
  60. Search-Reuslts-Tweets-Popular & Search results of currently popular tweets for a given keyword \\ \hline
  61. Search-Reuslts-Tweets-Recent & Search results of recent tweets for a given keyword \\ \hline
  62. Search-Reuslts-Tweets-Tab & Container page for the search results for tweets (recent and popular) in tabs \\ \hline
  63. Search-Reuslts-Users & Search results of users for a given keyword \\ \hline
  64. Settings & Configuration of keywords that trigger the private mode and settings regarding encryption \\ \hline
  65. Write-Tweet & Form for writing a tweet \\ \hline
  66. \end{tabularx}
  67. \caption{Pages used in the hybrid OSN app in alphabetical order with their purpose.}
  68. \label{tab:pages}
  69. \end{table}
  70. \subsubsection{Local Storage}
  71. \label{sec:local-storage}
  72. As the name suggests, this is a local storage that the app has access to. With hybrid OSN, this memory is used to store the essential information for usage. These include the Twitter user id, the two tokens for accessing the Twitter API, the keywords that trigger the private mode, and private and public keys for encryption. Logout completely deletes the local storage.