Compare commits
138 Commits
Author | SHA1 | Date | |
---|---|---|---|
698d5ec3b7 | |||
e87c942cb8 | |||
f7860a9799 | |||
c519eb0e99 | |||
8314b98f81 | |||
194cf1ddcc | |||
7da6478699 | |||
4f2bbba782 | |||
9eb25f6c9e | |||
f74b00446c | |||
beb7e6ec34 | |||
2eafc042ad | |||
74954bc51d | |||
6a03120225 | |||
21504573b4 | |||
fabd912fba | |||
00b42855b6 | |||
ef272360fb | |||
026a5011d4 | |||
aa4206af0e | |||
7788465272 | |||
3066dfd805 | |||
34303163bc | |||
e7fbcd4fa0 | |||
7c22969de1 | |||
6623bc0113 | |||
146b5201b5 | |||
b021fbde59 | |||
ec046b81a7 | |||
aea497154a | |||
dc736d53b4 | |||
5957b33779 | |||
bafdce56ad | |||
42a2d404e4 | |||
11b2379d98 | |||
c0657a2e9e | |||
646dcb91c5 | |||
ad961f3039 | |||
c16f743b07 | |||
8e13f6ef9b | |||
95bcdea69b | |||
0d6fe4a232 | |||
ced4519412 | |||
ef8b7718b1 | |||
b4762dc463 | |||
9851cce382 | |||
a1460a98fd | |||
1a553a296f | |||
f5bd6b0d58 | |||
78a4946e8b | |||
702ee956a2 | |||
200a7d2d65 | |||
79edc09710 | |||
77255df4be | |||
277133fa1a | |||
abd0e08566 | |||
561d8dbc70 | |||
c973ffd3ba | |||
368de7dedc | |||
e56514629f | |||
7a8a25c4c0 | |||
5d36d3a6bb | |||
0ef35fd31f | |||
c1c22c195d | |||
111d8d8e3c | |||
b0a24e4fc0 | |||
694b9b8991 | |||
fada347aa5 | |||
f37ea9f0e7 | |||
59911925c2 | |||
58fd59beb1 | |||
eb09d77251 | |||
42b9178d96 | |||
45516311f5 | |||
04cfa7366f | |||
4234ab84a9 | |||
b8c05d1014 | |||
91ec9aa0a4 | |||
565e920f1b | |||
5d24adfa75 | |||
1dc94c0027 | |||
ebae2f4ec9 | |||
7099edc591 | |||
de973d6bda | |||
993a491d24 | |||
631efff7ae | |||
a3d1ac2ce4 | |||
4484c21757 | |||
87cd3ef33f | |||
163f4a3d3f | |||
a84256dc03 | |||
cf82066976 | |||
e248c9cedd | |||
90a2fea7d6 | |||
d17b02092e | |||
c70eb7793e | |||
e3a1d2b9cf | |||
e68ebdf76d | |||
949cf58eef | |||
0816defb95 | |||
a076a1c933 | |||
40c95a541d | |||
2d04d7b8d5 | |||
94e0feac68 | |||
cd9e974c40 | |||
11700f75d9 | |||
0439a7beaa | |||
608b195ba9 | |||
8cb5fd64dd | |||
ef317a86ed | |||
19ada83d0b | |||
6ecf66ea2a | |||
65ba16c07c | |||
aee7c12c44 | |||
125956eb3e | |||
954224401d | |||
d268de3e12 | |||
39cfb4603b | |||
15a70abf67 | |||
5cb69291f5 | |||
cf582b2e98 | |||
82e159a083 | |||
2aff139982 | |||
6c7adb6193 | |||
bb2cd1c85a | |||
9d92c48ab7 | |||
dbed4ea527 | |||
8d149b5e2b | |||
27f1ec5d8a | |||
c361143ba2 | |||
069006145a | |||
3e3395aff9 | |||
a2687eacbc | |||
0f2c8c856c | |||
ec4dbf2a51 | |||
3d34aa5e80 | |||
c45bd70711 | |||
9f876e6020 |
4
.env
4
.env
@ -5,12 +5,12 @@ REDIS_HOST=localhost
|
|||||||
REDIS_PORT=6379
|
REDIS_PORT=6379
|
||||||
|
|
||||||
# POSTGRES
|
# POSTGRES
|
||||||
|
POSTGRES_DB=ghostfolio-db
|
||||||
POSTGRES_USER=user
|
POSTGRES_USER=user
|
||||||
POSTGRES_PASSWORD=password
|
POSTGRES_PASSWORD=password
|
||||||
POSTGRES_DB=ghostfolio-db
|
|
||||||
|
|
||||||
ACCESS_TOKEN_SALT=GHOSTFOLIO
|
ACCESS_TOKEN_SALT=GHOSTFOLIO
|
||||||
ALPHA_VANTAGE_API_KEY=
|
ALPHA_VANTAGE_API_KEY=
|
||||||
DATABASE_URL=postgresql://user:password@localhost:5432/ghostfolio-db?sslmode=prefer
|
DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@localhost:5432/${POSTGRES_DB}?sslmode=prefer
|
||||||
JWT_SECRET_KEY=123456
|
JWT_SECRET_KEY=123456
|
||||||
PORT=3333
|
PORT=3333
|
||||||
|
11
.travis.yml
Normal file
11
.travis.yml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
language: node_js
|
||||||
|
git:
|
||||||
|
depth: false
|
||||||
|
node_js:
|
||||||
|
- 14
|
||||||
|
before_script:
|
||||||
|
- yarn
|
||||||
|
script:
|
||||||
|
- yarn format:check
|
||||||
|
- yarn test
|
||||||
|
- yarn build:all
|
335
CHANGELOG.md
335
CHANGELOG.md
@ -5,6 +5,323 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## 1.15.0 - 14.06.2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added a counter column to the transactions table
|
||||||
|
- Added a label to indicate the default account in the accounts table
|
||||||
|
- Added an option to limit the items in pie charts
|
||||||
|
- Added sign in with fingerprint
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Cleaned up the analysis page with an unused chart module
|
||||||
|
- Improved the cell alignment in the users table of the admin control panel
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed the last activity column of users in the admin control panel
|
||||||
|
|
||||||
|
## 1.14.0 - 09.06.2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added a connect or create symbol profile model logic on creating a new transaction
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Improved the global heat map to visualize investments by country
|
||||||
|
|
||||||
|
## 1.13.0 - 08.06.2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added a global heat map to visualize investments by country
|
||||||
|
|
||||||
|
## 1.12.0 - 06.06.2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added a symbol profile model with additional data
|
||||||
|
- Added new pie charts: Investments by continent and country
|
||||||
|
|
||||||
|
## 1.11.0 - 05.06.2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added a dedicated page for the account registration
|
||||||
|
- Rendered the average buy prices in the position detail chart (useful for recurring transactions)
|
||||||
|
- Introduced the initial prisma migration
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Changed the buttons to links (`<a>`) on the tools page
|
||||||
|
- Upgraded `prisma` from version `2.20.1` to `2.24.1`
|
||||||
|
|
||||||
|
## 1.10.1 - 02.06.2021
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed an optional type in the user interface
|
||||||
|
|
||||||
|
## 1.10.0 - 02.06.2021
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Moved the tools to a sub path (`/tools`)
|
||||||
|
- Extended the pricing page and aligned with the subscription model
|
||||||
|
|
||||||
|
## 1.9.0 - 01.06.2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added the year labels to the investment chart on the x-axis
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Respected the data source attribute of the transactions model in the data management for historical data
|
||||||
|
- Prettified the generic scraper symbols in the transaction filtering component
|
||||||
|
- Changed to the strict mode of distance formatting between two given dates
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed the sorting in various tables
|
||||||
|
- Made the order of the rules in the _X-ray_ section consistent
|
||||||
|
|
||||||
|
## 1.8.0 - 24.05.2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added a section for _Analysis_, _X-ray_ and upcoming tools
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Introduced a user service implemented as an observable store (single source of truth for state)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed the performance chart by considering the investment
|
||||||
|
- Fixed missing header of public pages (_About_, _Pricing_, _Resources_)
|
||||||
|
|
||||||
|
## 1.7.0 - 22.05.2021
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Hid footer on mobile (except on landing page)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed the internal navigation of the _Zen Mode_ in combination with a query parameter
|
||||||
|
|
||||||
|
## 1.6.0 - 22.05.2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added an index in the users table of the admin control panel
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Improved the alignment in the users table of the admin control panel
|
||||||
|
|
||||||
|
## 1.5.0 - 22.05.2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added _Zen Mode_: the distraction-free view
|
||||||
|
|
||||||
|
## 1.4.0 - 20.05.2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added filtering by year in the transaction filtering component
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Renamed _Ghostfolio Account_ to _My Ghostfolio_
|
||||||
|
- Hid unknown exchange in the position overview
|
||||||
|
- Disable the base currency selector for the demo user
|
||||||
|
- Refactored the portfolio unit tests to work without database
|
||||||
|
- Refactored the search functionality of the data management (aligned with data source)
|
||||||
|
- Renamed shared helper to `@ghostfolio/common/helper`
|
||||||
|
- Moved shared interfaces to `@ghostfolio/common/interfaces`
|
||||||
|
- Moved shared types to `@ghostfolio/common/types`
|
||||||
|
|
||||||
|
## 1.3.0 - 15.05.2021
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Refactored the active menu item state by parsing the current url
|
||||||
|
- Used a desaturated background color for unknown types in pie charts
|
||||||
|
- Renamed the columns _Initial Share_ and _Current Share_ to _Initial Allocation_ and _Current Allocation_ in the positions table
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed the link to the pricing page
|
||||||
|
|
||||||
|
## 1.2.1 - 14.05.2021
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Updated the sitemap
|
||||||
|
|
||||||
|
## 1.2.0 - 14.05.2021
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Harmonized the style of various tables
|
||||||
|
- Keep the color per type when switching between _Initial_ and _Current_ in pie charts
|
||||||
|
- Upgraded `chart.js` from version `3.0.2` to `3.2.1`
|
||||||
|
- Moved the pricing section to a dedicated page
|
||||||
|
- Improved the style of the transaction filtering component
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed the tooltips when switching between _Initial_ and _Current_ in pie charts
|
||||||
|
|
||||||
|
## 1.1.0 - 11.05.2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added a button to fetch the current market price in the create or edit transaction dialog
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Improved the transaction filtering with multi filter support
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed the filtering by account name in the transactions table
|
||||||
|
- Fixed the active menu item state when a modal has opened
|
||||||
|
|
||||||
|
## 1.0.0 - 05.05.2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added the functionality to clone a transaction
|
||||||
|
- Added a _Google Play_ badge on the landing page
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Changed to maskable icons
|
||||||
|
|
||||||
|
## 0.99.0 - 03.05.2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added support for deleting users in the admin control panel
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Eliminated the platform attribute from the transaction model
|
||||||
|
|
||||||
|
## 0.98.0 - 02.05.2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added the logic to create and update accounts
|
||||||
|
|
||||||
|
## 0.97.0 - 01.05.2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added an account page as a preparation for the multi accounts support
|
||||||
|
|
||||||
|
## 0.96.0 - 30.04.2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added the absolute change to the position detail dialog
|
||||||
|
- Added the number of transactions to the position detail dialog
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Harmonized the slogan to "Open Source Portfolio Tracker"
|
||||||
|
|
||||||
|
## 0.95.0 - 28.04.2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added a data source attribute to the transactions model
|
||||||
|
|
||||||
|
## 0.94.0 - 27.04.2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added the generic scraper symbols to the symbol lookup results
|
||||||
|
|
||||||
|
## 0.93.0 - 26.04.2021
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Improved the users table styling of the admin control panel
|
||||||
|
- Improved the background colors in the dark mode
|
||||||
|
|
||||||
|
## 0.92.0 - 25.04.2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Prepared further for multi accounts support: store account for new transactions
|
||||||
|
- Added a horizontal scrollbar to the users table of the admin control panel
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed an issue in the header with outdated data
|
||||||
|
- Fixed an issue on the about page with outdated data
|
||||||
|
|
||||||
|
## 0.91.0 - 25.04.2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Extended the support for feature flags to simplify the initial project setup
|
||||||
|
- Prepared for multi accounts support
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Improved the styling of the rules in the _X-ray_ section
|
||||||
|
|
||||||
|
## 0.90.0 - 22.04.2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added the symbol logo to the position detail dialog
|
||||||
|
- Introduced a third option for the market state: `delayed` (besides `open` and `closed`)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Improved the users table of the admin control panel
|
||||||
|
|
||||||
|
## 0.89.0 - 21.04.2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added a prettifier (pipe) for generic scraper symbols
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed the text truncation in buttons of the admin control panel
|
||||||
|
|
||||||
|
## 0.88.0 - 20.04.2021
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Reverted the restoring of the scroll position when opening a new page
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed the frozen screen if the token has expired
|
||||||
|
- Fixed some issues in the generic scraper
|
||||||
|
|
||||||
|
## 0.87.0 - 19.04.2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added a generic scraper
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed an issue in the users table of the admin control panel with missing data
|
||||||
|
|
||||||
## 0.86.1 - 18.04.2021
|
## 0.86.1 - 18.04.2021
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
@ -18,7 +335,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
- Changed the about page for the new license
|
- Changed the about page for the new license
|
||||||
- Optimized the data management for historical data
|
- Optimized the data management for historical data
|
||||||
- Optimized the exchange rate service
|
- Optimized the exchange rate service
|
||||||
- Improved the user table in the admin control panel
|
- Improved the users table of the admin control panel
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
@ -53,7 +370,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Fixed an issue in the portfolio update on deleting a transaction
|
- Fixed an issue in the portfolio update on deleting a transaction
|
||||||
- Fixed an issue in the _X-Ray_ section (missing redirection on logout)
|
- Fixed an issue in the _X-ray_ section (missing redirection on logout)
|
||||||
|
|
||||||
## 0.82.0 - 10.04.2021
|
## 0.82.0 - 10.04.2021
|
||||||
|
|
||||||
@ -126,7 +443,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Grouped the _X-Ray_ section visually in _Currency Cluster Risk_ and _Platform Cluster Risk_
|
- Grouped the _X-ray_ section visually in _Currency Cluster Risk_ and _Platform Cluster Risk_
|
||||||
|
|
||||||
## 0.76.0 - 02.04.2021
|
## 0.76.0 - 02.04.2021
|
||||||
|
|
||||||
@ -138,7 +455,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Fixed an issue in the _X-Ray_ section (empty portfolio)
|
- Fixed an issue in the _X-ray_ section (empty portfolio)
|
||||||
|
|
||||||
## 0.75.0 - 01.04.2021
|
## 0.75.0 - 01.04.2021
|
||||||
|
|
||||||
@ -151,7 +468,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Added a _Create Account_ message in the _Live Demo_
|
- Added a _Create Account_ message in the _Live Demo_
|
||||||
- Added skeleton loaders to the _X-Ray_ section
|
- Added skeleton loaders to the _X-ray_ section
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
@ -167,7 +484,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Improved the intro text in the _X-Ray_ section
|
- Improved the intro text in the _X-ray_ section
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
@ -183,7 +500,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Added an intro text to the _X-Ray_ section
|
- Added an intro text to the _X-ray_ section
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
@ -202,7 +519,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Improved the styling in the _X-Ray_ section
|
- Improved the styling in the _X-ray_ section
|
||||||
|
|
||||||
## 0.70.0 - 27.03.2021
|
## 0.70.0 - 27.03.2021
|
||||||
|
|
||||||
@ -210,7 +527,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
- Added the current _Fear & Greed Index_ as text
|
- Added the current _Fear & Greed Index_ as text
|
||||||
- Extended the landing page text: _Ghostfolio_ empowers busy folks...
|
- Extended the landing page text: _Ghostfolio_ empowers busy folks...
|
||||||
- Added the first static portfolio analysis rule in the brand new _X-Ray_ section
|
- Added the first static portfolio analysis rule in the brand new _X-ray_ section
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
51
README.md
51
README.md
@ -7,13 +7,15 @@
|
|||||||
<a href="https://ghostfol.io"><strong>Live Demo</strong></a>
|
<a href="https://ghostfol.io"><strong>Live Demo</strong></a>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
|
<img src="https://img.shields.io/badge/contributions-welcome-orange.svg"/>
|
||||||
|
<a href="https://travis-ci.org/github/ghostfolio/ghostfolio" rel="nofollow">
|
||||||
|
<img src="https://travis-ci.org/ghostfolio/ghostfolio.svg?branch=main" alt="Build Status"/></a>
|
||||||
<a href="https://www.gnu.org/licenses/agpl-3.0" rel="nofollow">
|
<a href="https://www.gnu.org/licenses/agpl-3.0" rel="nofollow">
|
||||||
<img src="https://img.shields.io/badge/License-AGPL%20v3-blue.svg" alt="License: AGPL v3">
|
<img src="https://img.shields.io/badge/License-AGPL%20v3-blue.svg" alt="License: AGPL v3"/></a>
|
||||||
</a>
|
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
**Ghostfolio** is an open source portfolio tracker. The software empowers busy folks to have a sharp look of their financial assets and to make solid, data-driven investment decisions by evaluating automated static portfolio analysis rules.
|
**Ghostfolio** is an open source portfolio tracker based on web technology. The software empowers busy folks to have a sharp look of their financial assets and to make solid, data-driven investment decisions by evaluating automated static portfolio analysis rules.
|
||||||
|
|
||||||
## Why Ghostfolio?
|
## Why Ghostfolio?
|
||||||
|
|
||||||
@ -40,51 +42,60 @@ Ghostfolio is for you if you are...
|
|||||||
## Features
|
## Features
|
||||||
|
|
||||||
- ✅ Create, update and delete transactions
|
- ✅ Create, update and delete transactions
|
||||||
|
- ✅ Multi account management
|
||||||
- ✅ Portfolio performance (`Today`, `YTD`, `1Y`, `5Y`, `Max`)
|
- ✅ Portfolio performance (`Today`, `YTD`, `1Y`, `5Y`, `Max`)
|
||||||
- ✅ Various charts
|
- ✅ Various charts
|
||||||
- ✅ Static analysis to identify potential risks in your portfolio
|
- ✅ Static analysis to identify potential risks in your portfolio
|
||||||
- ✅ Dark Mode
|
- ✅ Dark Mode
|
||||||
|
- ✅ Zen Mode
|
||||||
|
- ✅ Mobile-first design
|
||||||
|
|
||||||
## Technology
|
## Technology Stack
|
||||||
|
|
||||||
Ghostfolio is a modern web application written in [TypeScript](https://www.typescriptlang.org) and organized as an [Nx](https://nx.dev) workspace.
|
Ghostfolio is a modern web application written in [TypeScript](https://www.typescriptlang.org) and organized as an [Nx](https://nx.dev) workspace.
|
||||||
|
|
||||||
### Frontend
|
|
||||||
|
|
||||||
The frontend is built with [Angular](https://angular.io).
|
|
||||||
|
|
||||||
### Backend
|
### Backend
|
||||||
|
|
||||||
The backend is based on [NestJS](https://nestjs.com) using [PostgreSQL](https://www.postgresql.org) as a database and [Redis](https://redis.io) for caching.
|
The backend is based on [NestJS](https://nestjs.com) using [PostgreSQL](https://www.postgresql.org) as a database together with [Prisma](https://www.prisma.io) and [Redis](https://redis.io) for caching.
|
||||||
|
|
||||||
|
### Frontend
|
||||||
|
|
||||||
|
The frontend is built with [Angular](https://angular.io) and uses [Angular Material](https://material.angular.io) with utility classes from [Bootstrap](https://getbootstrap.com).
|
||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
|
|
||||||
### Prerequisites
|
### Prerequisites
|
||||||
|
|
||||||
- [Node.js](https://nodejs.org/en/download)
|
- [Node.js](https://nodejs.org/en/download) (version 14+)
|
||||||
- [Yarn](https://yarnpkg.com/en/docs/install)
|
- [Yarn](https://yarnpkg.com/en/docs/install)
|
||||||
- [Docker](https://www.docker.com/products/docker-desktop)
|
- [Docker](https://www.docker.com/products/docker-desktop)
|
||||||
|
|
||||||
### Setup
|
### Setup
|
||||||
|
|
||||||
1. Run `yarn install`
|
1. Run `yarn install`
|
||||||
2. Run `cd docker`
|
1. Run `cd docker`
|
||||||
3. Run `docker compose build`
|
1. Run `docker compose up -d` to start [PostgreSQL](https://www.postgresql.org) and [Redis](https://redis.io)
|
||||||
4. Run `docker compose up -d` to start [PostgreSQL](https://www.postgresql.org) and [Redis](https://redis.io)
|
1. Run `cd -` to go back to the project root directory
|
||||||
5. Run `yarn setup:database` to initialize the database schema and populate your database with (example) data
|
1. Run `yarn setup:database` to initialize the database schema and populate your database with (example) data
|
||||||
6. Start server and client (see _Development_)
|
1. Start server and client (see [_Development_](#Development))
|
||||||
7. Login as _Admin_ with the following _Security Token_: `ae76872ae8f3419c6d6f64bf51888ecbcc703927a342d815fafe486acdb938da07d0cf44fca211a0be74a423238f535362d390a41e81e633a9ce668a6e31cdf9`
|
1. Login as _Admin_ with the following _Security Token_: `ae76872ae8f3419c6d6f64bf51888ecbcc703927a342d815fafe486acdb938da07d0cf44fca211a0be74a423238f535362d390a41e81e633a9ce668a6e31cdf9`
|
||||||
|
1. Go to the _Admin Control Panel_ and press _Gather All Data_ to fetch historical data
|
||||||
|
1. Press _Sign out_ and check out the _Live Demo_
|
||||||
|
|
||||||
## Development
|
## Development
|
||||||
|
|
||||||
|
Please make sure you have completed the instructions from [_Setup_](#Setup)
|
||||||
|
|
||||||
### Start server
|
### Start server
|
||||||
|
|
||||||
- Debug: Run `yarn watch:server` and click "Launch Program" in _Visual Studio Code_
|
<ol type="a">
|
||||||
- Serve: Run `yarn start:server`
|
<li>Debug: Run <code>yarn watch:server</code> and click "Launch Program" in <i>Visual Studio Code</i></li>
|
||||||
|
<li>Serve: Run <code>yarn start:server</code></li>
|
||||||
|
</ol>
|
||||||
|
|
||||||
### Start client
|
### Start client
|
||||||
|
|
||||||
- Run `yarn start:client`
|
Run `yarn start:client`
|
||||||
|
|
||||||
## Testing
|
## Testing
|
||||||
|
|
||||||
@ -92,4 +103,6 @@ Run `yarn test`
|
|||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
© 2021 [Ghostfolio](https://ghostfol.io)
|
||||||
|
|
||||||
Licensed under the [AGPLv3 License](https://www.gnu.org/licenses/agpl-3.0.html).
|
Licensed under the [AGPLv3 License](https://www.gnu.org/licenses/agpl-3.0.html).
|
||||||
|
12
angular.json
12
angular.json
@ -208,22 +208,22 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"helper": {
|
"common": {
|
||||||
"root": "libs/helper",
|
"root": "libs/common",
|
||||||
"sourceRoot": "libs/helper/src",
|
"sourceRoot": "libs/common/src",
|
||||||
"projectType": "library",
|
"projectType": "library",
|
||||||
"architect": {
|
"architect": {
|
||||||
"lint": {
|
"lint": {
|
||||||
"builder": "@nrwl/linter:eslint",
|
"builder": "@nrwl/linter:eslint",
|
||||||
"options": {
|
"options": {
|
||||||
"lintFilePatterns": ["libs/helper/**/*.ts"]
|
"lintFilePatterns": ["libs/common/**/*.ts"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"test": {
|
"test": {
|
||||||
"builder": "@nrwl/jest:jest",
|
"builder": "@nrwl/jest:jest",
|
||||||
"outputs": ["coverage/libs/helper"],
|
"outputs": ["coverage/libs/common"],
|
||||||
"options": {
|
"options": {
|
||||||
"jestConfig": "libs/helper/jest.config.js",
|
"jestConfig": "libs/common/jest.config.js",
|
||||||
"passWithNoTests": true
|
"passWithNoTests": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
|
import { Access } from '@ghostfolio/common/interfaces';
|
||||||
|
import { RequestWithUser } from '@ghostfolio/common/types';
|
||||||
import { Controller, Get, Inject, UseGuards } from '@nestjs/common';
|
import { Controller, Get, Inject, UseGuards } from '@nestjs/common';
|
||||||
import { REQUEST } from '@nestjs/core';
|
import { REQUEST } from '@nestjs/core';
|
||||||
import { AuthGuard } from '@nestjs/passport';
|
import { AuthGuard } from '@nestjs/passport';
|
||||||
import { RequestWithUser } from 'apps/api/src/app/interfaces/request-with-user.type';
|
|
||||||
|
|
||||||
import { AccessService } from './access.service';
|
import { AccessService } from './access.service';
|
||||||
import { Access } from './interfaces/access.interface';
|
|
||||||
|
|
||||||
@Controller('access')
|
@Controller('access')
|
||||||
export class AccessController {
|
export class AccessController {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service';
|
||||||
import { Module } from '@nestjs/common';
|
import { Module } from '@nestjs/common';
|
||||||
|
|
||||||
import { PrismaService } from '../../services/prisma.service';
|
|
||||||
import { AccessController } from './access.controller';
|
import { AccessController } from './access.controller';
|
||||||
import { AccessService } from './access.service';
|
import { AccessService } from './access.service';
|
||||||
|
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service';
|
||||||
|
import { AccessWithGranteeUser } from '@ghostfolio/common/types';
|
||||||
import { Injectable } from '@nestjs/common';
|
import { Injectable } from '@nestjs/common';
|
||||||
import { Prisma } from '@prisma/client';
|
import { Prisma } from '@prisma/client';
|
||||||
|
|
||||||
import { PrismaService } from '../../services/prisma.service';
|
|
||||||
import { AccessWithGranteeUser } from './interfaces/access-with-grantee-user.type';
|
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class AccessService {
|
export class AccessService {
|
||||||
public constructor(private prisma: PrismaService) {}
|
public constructor(private prisma: PrismaService) {}
|
||||||
|
241
apps/api/src/app/account/account.controller.ts
Normal file
241
apps/api/src/app/account/account.controller.ts
Normal file
@ -0,0 +1,241 @@
|
|||||||
|
import { nullifyValuesInObjects } from '@ghostfolio/api/helper/object.helper';
|
||||||
|
import { ImpersonationService } from '@ghostfolio/api/services/impersonation.service';
|
||||||
|
import {
|
||||||
|
getPermissions,
|
||||||
|
hasPermission,
|
||||||
|
permissions
|
||||||
|
} from '@ghostfolio/common/permissions';
|
||||||
|
import { RequestWithUser } from '@ghostfolio/common/types';
|
||||||
|
import {
|
||||||
|
Body,
|
||||||
|
Controller,
|
||||||
|
Delete,
|
||||||
|
Get,
|
||||||
|
Headers,
|
||||||
|
HttpException,
|
||||||
|
Inject,
|
||||||
|
Param,
|
||||||
|
Post,
|
||||||
|
Put,
|
||||||
|
UseGuards
|
||||||
|
} from '@nestjs/common';
|
||||||
|
import { REQUEST } from '@nestjs/core';
|
||||||
|
import { AuthGuard } from '@nestjs/passport';
|
||||||
|
import { Account as AccountModel } from '@prisma/client';
|
||||||
|
import { StatusCodes, getReasonPhrase } from 'http-status-codes';
|
||||||
|
|
||||||
|
import { AccountService } from './account.service';
|
||||||
|
import { CreateAccountDto } from './create-account.dto';
|
||||||
|
import { UpdateAccountDto } from './update-account.dto';
|
||||||
|
|
||||||
|
@Controller('account')
|
||||||
|
export class AccountController {
|
||||||
|
public constructor(
|
||||||
|
private readonly accountService: AccountService,
|
||||||
|
private readonly impersonationService: ImpersonationService,
|
||||||
|
@Inject(REQUEST) private readonly request: RequestWithUser
|
||||||
|
) {}
|
||||||
|
|
||||||
|
@Delete(':id')
|
||||||
|
@UseGuards(AuthGuard('jwt'))
|
||||||
|
public async deleteAccount(@Param('id') id: string): Promise<AccountModel> {
|
||||||
|
if (
|
||||||
|
!hasPermission(
|
||||||
|
getPermissions(this.request.user.role),
|
||||||
|
permissions.deleteAccount
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
throw new HttpException(
|
||||||
|
getReasonPhrase(StatusCodes.FORBIDDEN),
|
||||||
|
StatusCodes.FORBIDDEN
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const account = await this.accountService.accountWithOrders(
|
||||||
|
{
|
||||||
|
id_userId: {
|
||||||
|
id,
|
||||||
|
userId: this.request.user.id
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ Order: true }
|
||||||
|
);
|
||||||
|
|
||||||
|
if (account?.isDefault || account?.Order.length > 0) {
|
||||||
|
throw new HttpException(
|
||||||
|
getReasonPhrase(StatusCodes.FORBIDDEN),
|
||||||
|
StatusCodes.FORBIDDEN
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.accountService.deleteAccount(
|
||||||
|
{
|
||||||
|
id_userId: {
|
||||||
|
id,
|
||||||
|
userId: this.request.user.id
|
||||||
|
}
|
||||||
|
},
|
||||||
|
this.request.user.id
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Get()
|
||||||
|
@UseGuards(AuthGuard('jwt'))
|
||||||
|
public async getAllAccounts(
|
||||||
|
@Headers('impersonation-id') impersonationId
|
||||||
|
): Promise<AccountModel[]> {
|
||||||
|
const impersonationUserId = await this.impersonationService.validateImpersonationId(
|
||||||
|
impersonationId,
|
||||||
|
this.request.user.id
|
||||||
|
);
|
||||||
|
|
||||||
|
let accounts = await this.accountService.accounts({
|
||||||
|
include: { Order: true, Platform: true },
|
||||||
|
orderBy: { name: 'asc' },
|
||||||
|
where: { userId: impersonationUserId || this.request.user.id }
|
||||||
|
});
|
||||||
|
|
||||||
|
if (
|
||||||
|
impersonationUserId &&
|
||||||
|
!hasPermission(
|
||||||
|
getPermissions(this.request.user.role),
|
||||||
|
permissions.readForeignPortfolio
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
accounts = nullifyValuesInObjects(accounts, [
|
||||||
|
'fee',
|
||||||
|
'quantity',
|
||||||
|
'unitPrice'
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
return accounts;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Get(':id')
|
||||||
|
@UseGuards(AuthGuard('jwt'))
|
||||||
|
public async getAccountById(@Param('id') id: string): Promise<AccountModel> {
|
||||||
|
return this.accountService.account({
|
||||||
|
id_userId: {
|
||||||
|
id,
|
||||||
|
userId: this.request.user.id
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@Post()
|
||||||
|
@UseGuards(AuthGuard('jwt'))
|
||||||
|
public async createAccount(
|
||||||
|
@Body() data: CreateAccountDto
|
||||||
|
): Promise<AccountModel> {
|
||||||
|
if (
|
||||||
|
!hasPermission(
|
||||||
|
getPermissions(this.request.user.role),
|
||||||
|
permissions.createAccount
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
throw new HttpException(
|
||||||
|
getReasonPhrase(StatusCodes.FORBIDDEN),
|
||||||
|
StatusCodes.FORBIDDEN
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (data.platformId) {
|
||||||
|
const platformId = data.platformId;
|
||||||
|
delete data.platformId;
|
||||||
|
|
||||||
|
return this.accountService.createAccount(
|
||||||
|
{
|
||||||
|
...data,
|
||||||
|
Platform: { connect: { id: platformId } },
|
||||||
|
User: { connect: { id: this.request.user.id } }
|
||||||
|
},
|
||||||
|
this.request.user.id
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
delete data.platformId;
|
||||||
|
|
||||||
|
return this.accountService.createAccount(
|
||||||
|
{
|
||||||
|
...data,
|
||||||
|
User: { connect: { id: this.request.user.id } }
|
||||||
|
},
|
||||||
|
this.request.user.id
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Put(':id')
|
||||||
|
@UseGuards(AuthGuard('jwt'))
|
||||||
|
public async update(@Param('id') id: string, @Body() data: UpdateAccountDto) {
|
||||||
|
if (
|
||||||
|
!hasPermission(
|
||||||
|
getPermissions(this.request.user.role),
|
||||||
|
permissions.updateAccount
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
throw new HttpException(
|
||||||
|
getReasonPhrase(StatusCodes.FORBIDDEN),
|
||||||
|
StatusCodes.FORBIDDEN
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const originalAccount = await this.accountService.account({
|
||||||
|
id_userId: {
|
||||||
|
id,
|
||||||
|
userId: this.request.user.id
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!originalAccount) {
|
||||||
|
throw new HttpException(
|
||||||
|
getReasonPhrase(StatusCodes.FORBIDDEN),
|
||||||
|
StatusCodes.FORBIDDEN
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (data.platformId) {
|
||||||
|
const platformId = data.platformId;
|
||||||
|
delete data.platformId;
|
||||||
|
|
||||||
|
return this.accountService.updateAccount(
|
||||||
|
{
|
||||||
|
data: {
|
||||||
|
...data,
|
||||||
|
Platform: { connect: { id: platformId } },
|
||||||
|
User: { connect: { id: this.request.user.id } }
|
||||||
|
},
|
||||||
|
where: {
|
||||||
|
id_userId: {
|
||||||
|
id,
|
||||||
|
userId: this.request.user.id
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
this.request.user.id
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
// platformId is null, remove it
|
||||||
|
delete data.platformId;
|
||||||
|
|
||||||
|
return this.accountService.updateAccount(
|
||||||
|
{
|
||||||
|
data: {
|
||||||
|
...data,
|
||||||
|
Platform: originalAccount.platformId
|
||||||
|
? { disconnect: true }
|
||||||
|
: undefined,
|
||||||
|
User: { connect: { id: this.request.user.id } }
|
||||||
|
},
|
||||||
|
where: {
|
||||||
|
id_userId: {
|
||||||
|
id,
|
||||||
|
userId: this.request.user.id
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
this.request.user.id
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
30
apps/api/src/app/account/account.module.ts
Normal file
30
apps/api/src/app/account/account.module.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration.service';
|
||||||
|
import { DataProviderService } from '@ghostfolio/api/services/data-provider.service';
|
||||||
|
import { AlphaVantageService } from '@ghostfolio/api/services/data-provider/alpha-vantage/alpha-vantage.service';
|
||||||
|
import { GhostfolioScraperApiService } from '@ghostfolio/api/services/data-provider/ghostfolio-scraper-api/ghostfolio-scraper-api.service';
|
||||||
|
import { RakutenRapidApiService } from '@ghostfolio/api/services/data-provider/rakuten-rapid-api/rakuten-rapid-api.service';
|
||||||
|
import { YahooFinanceService } from '@ghostfolio/api/services/data-provider/yahoo-finance/yahoo-finance.service';
|
||||||
|
import { ImpersonationService } from '@ghostfolio/api/services/impersonation.service';
|
||||||
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service';
|
||||||
|
import { Module } from '@nestjs/common';
|
||||||
|
|
||||||
|
import { RedisCacheModule } from '../redis-cache/redis-cache.module';
|
||||||
|
import { AccountController } from './account.controller';
|
||||||
|
import { AccountService } from './account.service';
|
||||||
|
|
||||||
|
@Module({
|
||||||
|
imports: [RedisCacheModule],
|
||||||
|
controllers: [AccountController],
|
||||||
|
providers: [
|
||||||
|
AccountService,
|
||||||
|
AlphaVantageService,
|
||||||
|
ConfigurationService,
|
||||||
|
DataProviderService,
|
||||||
|
GhostfolioScraperApiService,
|
||||||
|
ImpersonationService,
|
||||||
|
PrismaService,
|
||||||
|
RakutenRapidApiService,
|
||||||
|
YahooFinanceService
|
||||||
|
]
|
||||||
|
})
|
||||||
|
export class AccountModule {}
|
89
apps/api/src/app/account/account.service.ts
Normal file
89
apps/api/src/app/account/account.service.ts
Normal file
@ -0,0 +1,89 @@
|
|||||||
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service';
|
||||||
|
import { Injectable } from '@nestjs/common';
|
||||||
|
import { Account, Order, Prisma } from '@prisma/client';
|
||||||
|
|
||||||
|
import { RedisCacheService } from '../redis-cache/redis-cache.service';
|
||||||
|
|
||||||
|
@Injectable()
|
||||||
|
export class AccountService {
|
||||||
|
public constructor(
|
||||||
|
private readonly redisCacheService: RedisCacheService,
|
||||||
|
private prisma: PrismaService
|
||||||
|
) {}
|
||||||
|
|
||||||
|
public async account(
|
||||||
|
accountWhereUniqueInput: Prisma.AccountWhereUniqueInput
|
||||||
|
): Promise<Account | null> {
|
||||||
|
return this.prisma.account.findUnique({
|
||||||
|
where: accountWhereUniqueInput
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public async accountWithOrders(
|
||||||
|
accountWhereUniqueInput: Prisma.AccountWhereUniqueInput,
|
||||||
|
accountInclude: Prisma.AccountInclude
|
||||||
|
): Promise<
|
||||||
|
Account & {
|
||||||
|
Order?: Order[];
|
||||||
|
}
|
||||||
|
> {
|
||||||
|
return this.prisma.account.findUnique({
|
||||||
|
include: accountInclude,
|
||||||
|
where: accountWhereUniqueInput
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public async accounts(params: {
|
||||||
|
include?: Prisma.AccountInclude;
|
||||||
|
skip?: number;
|
||||||
|
take?: number;
|
||||||
|
cursor?: Prisma.AccountWhereUniqueInput;
|
||||||
|
where?: Prisma.AccountWhereInput;
|
||||||
|
orderBy?: Prisma.AccountOrderByInput;
|
||||||
|
}): Promise<Account[]> {
|
||||||
|
const { include, skip, take, cursor, where, orderBy } = params;
|
||||||
|
|
||||||
|
return this.prisma.account.findMany({
|
||||||
|
cursor,
|
||||||
|
include,
|
||||||
|
orderBy,
|
||||||
|
skip,
|
||||||
|
take,
|
||||||
|
where
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public async createAccount(
|
||||||
|
data: Prisma.AccountCreateInput,
|
||||||
|
aUserId: string
|
||||||
|
): Promise<Account> {
|
||||||
|
return this.prisma.account.create({
|
||||||
|
data
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public async deleteAccount(
|
||||||
|
where: Prisma.AccountWhereUniqueInput,
|
||||||
|
aUserId: string
|
||||||
|
): Promise<Account> {
|
||||||
|
this.redisCacheService.remove(`${aUserId}.portfolio`);
|
||||||
|
|
||||||
|
return this.prisma.account.delete({
|
||||||
|
where
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public async updateAccount(
|
||||||
|
params: {
|
||||||
|
where: Prisma.AccountWhereUniqueInput;
|
||||||
|
data: Prisma.AccountUpdateInput;
|
||||||
|
},
|
||||||
|
aUserId: string
|
||||||
|
): Promise<Account> {
|
||||||
|
const { data, where } = params;
|
||||||
|
return this.prisma.account.update({
|
||||||
|
data,
|
||||||
|
where
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
14
apps/api/src/app/account/create-account.dto.ts
Normal file
14
apps/api/src/app/account/create-account.dto.ts
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
import { AccountType } from '@prisma/client';
|
||||||
|
import { IsString, ValidateIf } from 'class-validator';
|
||||||
|
|
||||||
|
export class CreateAccountDto {
|
||||||
|
@IsString()
|
||||||
|
accountType: AccountType;
|
||||||
|
|
||||||
|
@IsString()
|
||||||
|
name: string;
|
||||||
|
|
||||||
|
@IsString()
|
||||||
|
@ValidateIf((object, value) => value !== null)
|
||||||
|
platformId: string | null;
|
||||||
|
}
|
17
apps/api/src/app/account/update-account.dto.ts
Normal file
17
apps/api/src/app/account/update-account.dto.ts
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
import { AccountType } from '@prisma/client';
|
||||||
|
import { IsString, ValidateIf } from 'class-validator';
|
||||||
|
|
||||||
|
export class UpdateAccountDto {
|
||||||
|
@IsString()
|
||||||
|
accountType: AccountType;
|
||||||
|
|
||||||
|
@IsString()
|
||||||
|
id: string;
|
||||||
|
|
||||||
|
@IsString()
|
||||||
|
name: string;
|
||||||
|
|
||||||
|
@IsString()
|
||||||
|
@ValidateIf((object, value) => value !== null)
|
||||||
|
platformId: string | null;
|
||||||
|
}
|
@ -1,3 +1,11 @@
|
|||||||
|
import { DataGatheringService } from '@ghostfolio/api/services/data-gathering.service';
|
||||||
|
import { AdminData } from '@ghostfolio/common/interfaces';
|
||||||
|
import {
|
||||||
|
getPermissions,
|
||||||
|
hasPermission,
|
||||||
|
permissions
|
||||||
|
} from '@ghostfolio/common/permissions';
|
||||||
|
import { RequestWithUser } from '@ghostfolio/common/types';
|
||||||
import {
|
import {
|
||||||
Controller,
|
Controller,
|
||||||
Get,
|
Get,
|
||||||
@ -8,13 +16,9 @@ import {
|
|||||||
} from '@nestjs/common';
|
} from '@nestjs/common';
|
||||||
import { REQUEST } from '@nestjs/core';
|
import { REQUEST } from '@nestjs/core';
|
||||||
import { AuthGuard } from '@nestjs/passport';
|
import { AuthGuard } from '@nestjs/passport';
|
||||||
import { RequestWithUser } from 'apps/api/src/app/interfaces/request-with-user.type';
|
|
||||||
import { StatusCodes, getReasonPhrase } from 'http-status-codes';
|
import { StatusCodes, getReasonPhrase } from 'http-status-codes';
|
||||||
import { getPermissions, hasPermission, permissions } from 'libs/helper/src';
|
|
||||||
|
|
||||||
import { DataGatheringService } from '../../services/data-gathering.service';
|
|
||||||
import { AdminService } from './admin.service';
|
import { AdminService } from './admin.service';
|
||||||
import { AdminData } from './interfaces/admin-data.interface';
|
|
||||||
|
|
||||||
@Controller('admin')
|
@Controller('admin')
|
||||||
export class AdminController {
|
export class AdminController {
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration.service';
|
||||||
|
import { DataGatheringService } from '@ghostfolio/api/services/data-gathering.service';
|
||||||
|
import { DataProviderService } from '@ghostfolio/api/services/data-provider.service';
|
||||||
|
import { AlphaVantageService } from '@ghostfolio/api/services/data-provider/alpha-vantage/alpha-vantage.service';
|
||||||
|
import { GhostfolioScraperApiService } from '@ghostfolio/api/services/data-provider/ghostfolio-scraper-api/ghostfolio-scraper-api.service';
|
||||||
|
import { RakutenRapidApiService } from '@ghostfolio/api/services/data-provider/rakuten-rapid-api/rakuten-rapid-api.service';
|
||||||
|
import { YahooFinanceService } from '@ghostfolio/api/services/data-provider/yahoo-finance/yahoo-finance.service';
|
||||||
|
import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate-data.service';
|
||||||
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service';
|
||||||
import { Module } from '@nestjs/common';
|
import { Module } from '@nestjs/common';
|
||||||
|
|
||||||
import { ConfigurationService } from '../../services/configuration.service';
|
|
||||||
import { DataGatheringService } from '../../services/data-gathering.service';
|
|
||||||
import { DataProviderService } from '../../services/data-provider.service';
|
|
||||||
import { AlphaVantageService } from '../../services/data-provider/alpha-vantage/alpha-vantage.service';
|
|
||||||
import { RakutenRapidApiService } from '../../services/data-provider/rakuten-rapid-api/rakuten-rapid-api.service';
|
|
||||||
import { YahooFinanceService } from '../../services/data-provider/yahoo-finance/yahoo-finance.service';
|
|
||||||
import { ExchangeRateDataService } from '../../services/exchange-rate-data.service';
|
|
||||||
import { PrismaService } from '../../services/prisma.service';
|
|
||||||
import { AdminController } from './admin.controller';
|
import { AdminController } from './admin.controller';
|
||||||
import { AdminService } from './admin.service';
|
import { AdminService } from './admin.service';
|
||||||
|
|
||||||
@ -21,6 +22,7 @@ import { AdminService } from './admin.service';
|
|||||||
DataGatheringService,
|
DataGatheringService,
|
||||||
DataProviderService,
|
DataProviderService,
|
||||||
ExchangeRateDataService,
|
ExchangeRateDataService,
|
||||||
|
GhostfolioScraperApiService,
|
||||||
PrismaService,
|
PrismaService,
|
||||||
RakutenRapidApiService,
|
RakutenRapidApiService,
|
||||||
YahooFinanceService
|
YahooFinanceService
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
|
import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate-data.service';
|
||||||
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service';
|
||||||
|
import { AdminData } from '@ghostfolio/common/interfaces';
|
||||||
import { Injectable } from '@nestjs/common';
|
import { Injectable } from '@nestjs/common';
|
||||||
import { Currency } from '@prisma/client';
|
import { Currency } from '@prisma/client';
|
||||||
|
|
||||||
import { ExchangeRateDataService } from '../../services/exchange-rate-data.service';
|
|
||||||
import { PrismaService } from '../../services/prisma.service';
|
|
||||||
import { AdminData } from './interfaces/admin-data.interface';
|
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class AdminService {
|
export class AdminService {
|
||||||
public constructor(
|
public constructor(
|
||||||
@ -97,7 +96,7 @@ export class AdminService {
|
|||||||
},
|
},
|
||||||
select: {
|
select: {
|
||||||
_count: {
|
_count: {
|
||||||
select: { Order: true }
|
select: { Account: true, Order: true }
|
||||||
},
|
},
|
||||||
alias: true,
|
alias: true,
|
||||||
Analytics: {
|
Analytics: {
|
||||||
@ -109,7 +108,12 @@ export class AdminService {
|
|||||||
createdAt: true,
|
createdAt: true,
|
||||||
id: true
|
id: true
|
||||||
},
|
},
|
||||||
take: 20
|
take: 30,
|
||||||
|
where: {
|
||||||
|
NOT: {
|
||||||
|
Analytics: null
|
||||||
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import { join } from 'path';
|
import { join } from 'path';
|
||||||
|
|
||||||
|
import { AuthDeviceModule } from '@ghostfolio/api/app/auth-device/auth-device.module';
|
||||||
import { Module } from '@nestjs/common';
|
import { Module } from '@nestjs/common';
|
||||||
import { ConfigModule } from '@nestjs/config';
|
import { ConfigModule } from '@nestjs/config';
|
||||||
import { ScheduleModule } from '@nestjs/schedule';
|
import { ScheduleModule } from '@nestjs/schedule';
|
||||||
@ -10,11 +11,13 @@ import { CronService } from '../services/cron.service';
|
|||||||
import { DataGatheringService } from '../services/data-gathering.service';
|
import { DataGatheringService } from '../services/data-gathering.service';
|
||||||
import { DataProviderService } from '../services/data-provider.service';
|
import { DataProviderService } from '../services/data-provider.service';
|
||||||
import { AlphaVantageService } from '../services/data-provider/alpha-vantage/alpha-vantage.service';
|
import { AlphaVantageService } from '../services/data-provider/alpha-vantage/alpha-vantage.service';
|
||||||
|
import { GhostfolioScraperApiService } from '../services/data-provider/ghostfolio-scraper-api/ghostfolio-scraper-api.service';
|
||||||
import { RakutenRapidApiService } from '../services/data-provider/rakuten-rapid-api/rakuten-rapid-api.service';
|
import { RakutenRapidApiService } from '../services/data-provider/rakuten-rapid-api/rakuten-rapid-api.service';
|
||||||
import { YahooFinanceService } from '../services/data-provider/yahoo-finance/yahoo-finance.service';
|
import { YahooFinanceService } from '../services/data-provider/yahoo-finance/yahoo-finance.service';
|
||||||
import { ExchangeRateDataService } from '../services/exchange-rate-data.service';
|
import { ExchangeRateDataService } from '../services/exchange-rate-data.service';
|
||||||
import { PrismaService } from '../services/prisma.service';
|
import { PrismaService } from '../services/prisma.service';
|
||||||
import { AccessModule } from './access/access.module';
|
import { AccessModule } from './access/access.module';
|
||||||
|
import { AccountModule } from './account/account.module';
|
||||||
import { AdminModule } from './admin/admin.module';
|
import { AdminModule } from './admin/admin.module';
|
||||||
import { AppController } from './app.controller';
|
import { AppController } from './app.controller';
|
||||||
import { AuthModule } from './auth/auth.module';
|
import { AuthModule } from './auth/auth.module';
|
||||||
@ -31,6 +34,8 @@ import { UserModule } from './user/user.module';
|
|||||||
imports: [
|
imports: [
|
||||||
AdminModule,
|
AdminModule,
|
||||||
AccessModule,
|
AccessModule,
|
||||||
|
AccountModule,
|
||||||
|
AuthDeviceModule,
|
||||||
AuthModule,
|
AuthModule,
|
||||||
CacheModule,
|
CacheModule,
|
||||||
ConfigModule.forRoot(),
|
ConfigModule.forRoot(),
|
||||||
@ -65,6 +70,7 @@ import { UserModule } from './user/user.module';
|
|||||||
DataGatheringService,
|
DataGatheringService,
|
||||||
DataProviderService,
|
DataProviderService,
|
||||||
ExchangeRateDataService,
|
ExchangeRateDataService,
|
||||||
|
GhostfolioScraperApiService,
|
||||||
PrismaService,
|
PrismaService,
|
||||||
RakutenRapidApiService,
|
RakutenRapidApiService,
|
||||||
YahooFinanceService
|
YahooFinanceService
|
||||||
|
44
apps/api/src/app/auth-device/auth-device.controller.ts
Normal file
44
apps/api/src/app/auth-device/auth-device.controller.ts
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
import { AuthDeviceService } from '@ghostfolio/api/app/auth-device/auth-device.service';
|
||||||
|
import {
|
||||||
|
getPermissions,
|
||||||
|
hasPermission,
|
||||||
|
permissions
|
||||||
|
} from '@ghostfolio/common/permissions';
|
||||||
|
import { RequestWithUser } from '@ghostfolio/common/types';
|
||||||
|
import {
|
||||||
|
Controller,
|
||||||
|
Delete,
|
||||||
|
HttpException,
|
||||||
|
Inject,
|
||||||
|
Param,
|
||||||
|
UseGuards
|
||||||
|
} from '@nestjs/common';
|
||||||
|
import { REQUEST } from '@nestjs/core';
|
||||||
|
import { AuthGuard } from '@nestjs/passport';
|
||||||
|
import { StatusCodes, getReasonPhrase } from 'http-status-codes';
|
||||||
|
|
||||||
|
@Controller('auth-device')
|
||||||
|
export class AuthDeviceController {
|
||||||
|
public constructor(
|
||||||
|
private readonly authDeviceService: AuthDeviceService,
|
||||||
|
@Inject(REQUEST) private readonly request: RequestWithUser
|
||||||
|
) {}
|
||||||
|
|
||||||
|
@Delete(':id')
|
||||||
|
@UseGuards(AuthGuard('jwt'))
|
||||||
|
public async deleteAuthDevice(@Param('id') id: string): Promise<void> {
|
||||||
|
if (
|
||||||
|
!hasPermission(
|
||||||
|
getPermissions(this.request.user.role),
|
||||||
|
permissions.deleteAuthDevice
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
throw new HttpException(
|
||||||
|
getReasonPhrase(StatusCodes.FORBIDDEN),
|
||||||
|
StatusCodes.FORBIDDEN
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
await this.authDeviceService.deleteAuthDevice({ id });
|
||||||
|
}
|
||||||
|
}
|
4
apps/api/src/app/auth-device/auth-device.dto.ts
Normal file
4
apps/api/src/app/auth-device/auth-device.dto.ts
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
export interface AuthDeviceDto {
|
||||||
|
createdAt: string;
|
||||||
|
id: string;
|
||||||
|
}
|
18
apps/api/src/app/auth-device/auth-device.module.ts
Normal file
18
apps/api/src/app/auth-device/auth-device.module.ts
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
import { AuthDeviceController } from '@ghostfolio/api/app/auth-device/auth-device.controller';
|
||||||
|
import { AuthDeviceService } from '@ghostfolio/api/app/auth-device/auth-device.service';
|
||||||
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration.service';
|
||||||
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service';
|
||||||
|
import { Module } from '@nestjs/common';
|
||||||
|
import { JwtModule } from '@nestjs/jwt';
|
||||||
|
|
||||||
|
@Module({
|
||||||
|
controllers: [AuthDeviceController],
|
||||||
|
imports: [
|
||||||
|
JwtModule.register({
|
||||||
|
secret: process.env.JWT_SECRET_KEY,
|
||||||
|
signOptions: { expiresIn: '180 days' }
|
||||||
|
})
|
||||||
|
],
|
||||||
|
providers: [AuthDeviceService, ConfigurationService, PrismaService]
|
||||||
|
})
|
||||||
|
export class AuthDeviceModule {}
|
65
apps/api/src/app/auth-device/auth-device.service.ts
Normal file
65
apps/api/src/app/auth-device/auth-device.service.ts
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration.service';
|
||||||
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service';
|
||||||
|
import { Injectable } from '@nestjs/common';
|
||||||
|
import { AuthDevice, Prisma } from '@prisma/client';
|
||||||
|
|
||||||
|
@Injectable()
|
||||||
|
export class AuthDeviceService {
|
||||||
|
public constructor(
|
||||||
|
private readonly configurationService: ConfigurationService,
|
||||||
|
private prisma: PrismaService
|
||||||
|
) {}
|
||||||
|
|
||||||
|
public async authDevice(
|
||||||
|
where: Prisma.AuthDeviceWhereUniqueInput
|
||||||
|
): Promise<AuthDevice | null> {
|
||||||
|
return this.prisma.authDevice.findUnique({
|
||||||
|
where
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public async authDevices(params: {
|
||||||
|
skip?: number;
|
||||||
|
take?: number;
|
||||||
|
cursor?: Prisma.AuthDeviceWhereUniqueInput;
|
||||||
|
where?: Prisma.AuthDeviceWhereInput;
|
||||||
|
orderBy?: Prisma.AuthDeviceOrderByInput;
|
||||||
|
}): Promise<AuthDevice[]> {
|
||||||
|
const { skip, take, cursor, where, orderBy } = params;
|
||||||
|
return this.prisma.authDevice.findMany({
|
||||||
|
skip,
|
||||||
|
take,
|
||||||
|
cursor,
|
||||||
|
where,
|
||||||
|
orderBy
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public async createAuthDevice(
|
||||||
|
data: Prisma.AuthDeviceCreateInput
|
||||||
|
): Promise<AuthDevice> {
|
||||||
|
return this.prisma.authDevice.create({
|
||||||
|
data
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public async updateAuthDevice(params: {
|
||||||
|
data: Prisma.AuthDeviceUpdateInput;
|
||||||
|
where: Prisma.AuthDeviceWhereUniqueInput;
|
||||||
|
}): Promise<AuthDevice> {
|
||||||
|
const { data, where } = params;
|
||||||
|
|
||||||
|
return this.prisma.authDevice.update({
|
||||||
|
data,
|
||||||
|
where
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public async deleteAuthDevice(
|
||||||
|
where: Prisma.AuthDeviceWhereUniqueInput
|
||||||
|
): Promise<AuthDevice> {
|
||||||
|
return this.prisma.authDevice.delete({
|
||||||
|
where
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
@ -1,8 +1,12 @@
|
|||||||
|
import { WebAuthService } from '@ghostfolio/api/app/auth/web-auth.service';
|
||||||
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration.service';
|
||||||
import {
|
import {
|
||||||
|
Body,
|
||||||
Controller,
|
Controller,
|
||||||
Get,
|
Get,
|
||||||
HttpException,
|
HttpException,
|
||||||
Param,
|
Param,
|
||||||
|
Post,
|
||||||
Req,
|
Req,
|
||||||
Res,
|
Res,
|
||||||
UseGuards
|
UseGuards
|
||||||
@ -10,14 +14,18 @@ import {
|
|||||||
import { AuthGuard } from '@nestjs/passport';
|
import { AuthGuard } from '@nestjs/passport';
|
||||||
import { StatusCodes, getReasonPhrase } from 'http-status-codes';
|
import { StatusCodes, getReasonPhrase } from 'http-status-codes';
|
||||||
|
|
||||||
import { ConfigurationService } from '../../services/configuration.service';
|
|
||||||
import { AuthService } from './auth.service';
|
import { AuthService } from './auth.service';
|
||||||
|
import {
|
||||||
|
AssertionCredentialJSON,
|
||||||
|
AttestationCredentialJSON
|
||||||
|
} from './interfaces/simplewebauthn';
|
||||||
|
|
||||||
@Controller('auth')
|
@Controller('auth')
|
||||||
export class AuthController {
|
export class AuthController {
|
||||||
public constructor(
|
public constructor(
|
||||||
private readonly authService: AuthService,
|
private readonly authService: AuthService,
|
||||||
private readonly configurationService: ConfigurationService
|
private readonly configurationService: ConfigurationService,
|
||||||
|
private readonly webAuthService: WebAuthService
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
@Get('anonymous/:accessToken')
|
@Get('anonymous/:accessToken')
|
||||||
@ -53,4 +61,44 @@ export class AuthController {
|
|||||||
res.redirect(`${this.configurationService.get('ROOT_URL')}/auth`);
|
res.redirect(`${this.configurationService.get('ROOT_URL')}/auth`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Get('webauthn/generate-attestation-options')
|
||||||
|
@UseGuards(AuthGuard('jwt'))
|
||||||
|
public async generateAttestationOptions() {
|
||||||
|
return this.webAuthService.generateAttestationOptions();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Post('webauthn/verify-attestation')
|
||||||
|
@UseGuards(AuthGuard('jwt'))
|
||||||
|
public async verifyAttestation(
|
||||||
|
@Body() body: { deviceName: string; credential: AttestationCredentialJSON }
|
||||||
|
) {
|
||||||
|
return this.webAuthService.verifyAttestation(
|
||||||
|
body.deviceName,
|
||||||
|
body.credential
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Post('webauthn/generate-assertion-options')
|
||||||
|
public async generateAssertionOptions(@Body() body: { deviceId: string }) {
|
||||||
|
return this.webAuthService.generateAssertionOptions(body.deviceId);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Post('webauthn/verify-assertion')
|
||||||
|
public async verifyAssertion(
|
||||||
|
@Body() body: { deviceId: string; credential: AssertionCredentialJSON }
|
||||||
|
) {
|
||||||
|
try {
|
||||||
|
const authToken = await this.webAuthService.verifyAssertion(
|
||||||
|
body.deviceId,
|
||||||
|
body.credential
|
||||||
|
);
|
||||||
|
return { authToken };
|
||||||
|
} catch {
|
||||||
|
throw new HttpException(
|
||||||
|
getReasonPhrase(StatusCodes.FORBIDDEN),
|
||||||
|
StatusCodes.FORBIDDEN
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
|
import { AuthDeviceService } from '@ghostfolio/api/app/auth-device/auth-device.service';
|
||||||
|
import { WebAuthService } from '@ghostfolio/api/app/auth/web-auth.service';
|
||||||
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration.service';
|
||||||
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service';
|
||||||
import { Module } from '@nestjs/common';
|
import { Module } from '@nestjs/common';
|
||||||
import { JwtModule } from '@nestjs/jwt';
|
import { JwtModule } from '@nestjs/jwt';
|
||||||
|
|
||||||
import { ConfigurationService } from '../../services/configuration.service';
|
|
||||||
import { PrismaService } from '../../services/prisma.service';
|
|
||||||
import { UserService } from '../user/user.service';
|
import { UserService } from '../user/user.service';
|
||||||
import { AuthController } from './auth.controller';
|
import { AuthController } from './auth.controller';
|
||||||
import { AuthService } from './auth.service';
|
import { AuthService } from './auth.service';
|
||||||
@ -18,12 +20,14 @@ import { JwtStrategy } from './jwt.strategy';
|
|||||||
})
|
})
|
||||||
],
|
],
|
||||||
providers: [
|
providers: [
|
||||||
|
AuthDeviceService,
|
||||||
AuthService,
|
AuthService,
|
||||||
ConfigurationService,
|
ConfigurationService,
|
||||||
GoogleStrategy,
|
GoogleStrategy,
|
||||||
JwtStrategy,
|
JwtStrategy,
|
||||||
PrismaService,
|
PrismaService,
|
||||||
UserService
|
UserService,
|
||||||
|
WebAuthService
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
export class AuthModule {}
|
export class AuthModule {}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration.service';
|
||||||
import { Injectable, InternalServerErrorException } from '@nestjs/common';
|
import { Injectable, InternalServerErrorException } from '@nestjs/common';
|
||||||
import { JwtService } from '@nestjs/jwt';
|
import { JwtService } from '@nestjs/jwt';
|
||||||
|
|
||||||
import { ConfigurationService } from '../../services/configuration.service';
|
|
||||||
import { UserService } from '../user/user.service';
|
import { UserService } from '../user/user.service';
|
||||||
import { ValidateOAuthLoginParams } from './interfaces/interfaces';
|
import { ValidateOAuthLoginParams } from './interfaces/interfaces';
|
||||||
|
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration.service';
|
||||||
import { Injectable } from '@nestjs/common';
|
import { Injectable } from '@nestjs/common';
|
||||||
import { PassportStrategy } from '@nestjs/passport';
|
import { PassportStrategy } from '@nestjs/passport';
|
||||||
import { Provider } from '@prisma/client';
|
import { Provider } from '@prisma/client';
|
||||||
import { Strategy } from 'passport-google-oauth20';
|
import { Strategy } from 'passport-google-oauth20';
|
||||||
|
|
||||||
import { ConfigurationService } from '../../services/configuration.service';
|
|
||||||
import { AuthService } from './auth.service';
|
import { AuthService } from './auth.service';
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
|
import { AuthDeviceDto } from '@ghostfolio/api/app/auth-device/auth-device.dto';
|
||||||
import { Provider } from '@prisma/client';
|
import { Provider } from '@prisma/client';
|
||||||
|
|
||||||
|
export interface AuthDeviceDialogParams {
|
||||||
|
authDevice: AuthDeviceDto;
|
||||||
|
}
|
||||||
|
|
||||||
export interface ValidateOAuthLoginParams {
|
export interface ValidateOAuthLoginParams {
|
||||||
provider: Provider;
|
provider: Provider;
|
||||||
thirdPartyId: string;
|
thirdPartyId: string;
|
||||||
|
226
apps/api/src/app/auth/interfaces/simplewebauthn.ts
Normal file
226
apps/api/src/app/auth/interfaces/simplewebauthn.ts
Normal file
@ -0,0 +1,226 @@
|
|||||||
|
export interface AuthenticatorAssertionResponse extends AuthenticatorResponse {
|
||||||
|
readonly authenticatorData: ArrayBuffer;
|
||||||
|
readonly signature: ArrayBuffer;
|
||||||
|
readonly userHandle: ArrayBuffer | null;
|
||||||
|
}
|
||||||
|
export interface AuthenticatorAttestationResponse
|
||||||
|
extends AuthenticatorResponse {
|
||||||
|
readonly attestationObject: ArrayBuffer;
|
||||||
|
}
|
||||||
|
export interface AuthenticationExtensionsClientInputs {
|
||||||
|
appid?: string;
|
||||||
|
appidExclude?: string;
|
||||||
|
credProps?: boolean;
|
||||||
|
uvm?: boolean;
|
||||||
|
}
|
||||||
|
export interface AuthenticationExtensionsClientOutputs {
|
||||||
|
appid?: boolean;
|
||||||
|
credProps?: CredentialPropertiesOutput;
|
||||||
|
uvm?: UvmEntries;
|
||||||
|
}
|
||||||
|
export interface AuthenticatorSelectionCriteria {
|
||||||
|
authenticatorAttachment?: AuthenticatorAttachment;
|
||||||
|
requireResidentKey?: boolean;
|
||||||
|
residentKey?: ResidentKeyRequirement;
|
||||||
|
userVerification?: UserVerificationRequirement;
|
||||||
|
}
|
||||||
|
export interface PublicKeyCredential extends Credential {
|
||||||
|
readonly rawId: ArrayBuffer;
|
||||||
|
readonly response: AuthenticatorResponse;
|
||||||
|
getClientExtensionResults(): AuthenticationExtensionsClientOutputs;
|
||||||
|
}
|
||||||
|
export interface PublicKeyCredentialCreationOptions {
|
||||||
|
attestation?: AttestationConveyancePreference;
|
||||||
|
authenticatorSelection?: AuthenticatorSelectionCriteria;
|
||||||
|
challenge: BufferSource;
|
||||||
|
excludeCredentials?: PublicKeyCredentialDescriptor[];
|
||||||
|
extensions?: AuthenticationExtensionsClientInputs;
|
||||||
|
pubKeyCredParams: PublicKeyCredentialParameters[];
|
||||||
|
rp: PublicKeyCredentialRpEntity;
|
||||||
|
timeout?: number;
|
||||||
|
user: PublicKeyCredentialUserEntity;
|
||||||
|
}
|
||||||
|
export interface PublicKeyCredentialDescriptor {
|
||||||
|
id: BufferSource;
|
||||||
|
transports?: AuthenticatorTransport[];
|
||||||
|
type: PublicKeyCredentialType;
|
||||||
|
}
|
||||||
|
export interface PublicKeyCredentialParameters {
|
||||||
|
alg: COSEAlgorithmIdentifier;
|
||||||
|
type: PublicKeyCredentialType;
|
||||||
|
}
|
||||||
|
export interface PublicKeyCredentialRequestOptions {
|
||||||
|
allowCredentials?: PublicKeyCredentialDescriptor[];
|
||||||
|
challenge: BufferSource;
|
||||||
|
extensions?: AuthenticationExtensionsClientInputs;
|
||||||
|
rpId?: string;
|
||||||
|
timeout?: number;
|
||||||
|
userVerification?: UserVerificationRequirement;
|
||||||
|
}
|
||||||
|
export interface PublicKeyCredentialUserEntity
|
||||||
|
extends PublicKeyCredentialEntity {
|
||||||
|
displayName: string;
|
||||||
|
id: BufferSource;
|
||||||
|
}
|
||||||
|
export interface AuthenticatorResponse {
|
||||||
|
readonly clientDataJSON: ArrayBuffer;
|
||||||
|
}
|
||||||
|
export interface CredentialPropertiesOutput {
|
||||||
|
rk?: boolean;
|
||||||
|
}
|
||||||
|
export interface Credential {
|
||||||
|
readonly id: string;
|
||||||
|
readonly type: string;
|
||||||
|
}
|
||||||
|
export interface PublicKeyCredentialRpEntity extends PublicKeyCredentialEntity {
|
||||||
|
id?: string;
|
||||||
|
}
|
||||||
|
export interface PublicKeyCredentialEntity {
|
||||||
|
name: string;
|
||||||
|
}
|
||||||
|
export declare type AttestationConveyancePreference =
|
||||||
|
| 'direct'
|
||||||
|
| 'enterprise'
|
||||||
|
| 'indirect'
|
||||||
|
| 'none';
|
||||||
|
export declare type AuthenticatorTransport = 'ble' | 'internal' | 'nfc' | 'usb';
|
||||||
|
export declare type COSEAlgorithmIdentifier = number;
|
||||||
|
export declare type UserVerificationRequirement =
|
||||||
|
| 'discouraged'
|
||||||
|
| 'preferred'
|
||||||
|
| 'required';
|
||||||
|
export declare type UvmEntries = UvmEntry[];
|
||||||
|
export declare type AuthenticatorAttachment = 'cross-platform' | 'platform';
|
||||||
|
export declare type ResidentKeyRequirement =
|
||||||
|
| 'discouraged'
|
||||||
|
| 'preferred'
|
||||||
|
| 'required';
|
||||||
|
export declare type BufferSource = ArrayBufferView | ArrayBuffer;
|
||||||
|
export declare type PublicKeyCredentialType = 'public-key';
|
||||||
|
export declare type UvmEntry = number[];
|
||||||
|
|
||||||
|
export interface PublicKeyCredentialCreationOptionsJSON
|
||||||
|
extends Omit<
|
||||||
|
PublicKeyCredentialCreationOptions,
|
||||||
|
'challenge' | 'user' | 'excludeCredentials'
|
||||||
|
> {
|
||||||
|
user: PublicKeyCredentialUserEntityJSON;
|
||||||
|
challenge: Base64URLString;
|
||||||
|
excludeCredentials: PublicKeyCredentialDescriptorJSON[];
|
||||||
|
extensions?: AuthenticationExtensionsClientInputs;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* A variant of PublicKeyCredentialRequestOptions suitable for JSON transmission to the browser to
|
||||||
|
* (eventually) get passed into navigator.credentials.get(...) in the browser.
|
||||||
|
*/
|
||||||
|
export interface PublicKeyCredentialRequestOptionsJSON
|
||||||
|
extends Omit<
|
||||||
|
PublicKeyCredentialRequestOptions,
|
||||||
|
'challenge' | 'allowCredentials'
|
||||||
|
> {
|
||||||
|
challenge: Base64URLString;
|
||||||
|
allowCredentials?: PublicKeyCredentialDescriptorJSON[];
|
||||||
|
extensions?: AuthenticationExtensionsClientInputs;
|
||||||
|
}
|
||||||
|
export interface PublicKeyCredentialDescriptorJSON
|
||||||
|
extends Omit<PublicKeyCredentialDescriptor, 'id'> {
|
||||||
|
id: Base64URLString;
|
||||||
|
}
|
||||||
|
export interface PublicKeyCredentialUserEntityJSON
|
||||||
|
extends Omit<PublicKeyCredentialUserEntity, 'id'> {
|
||||||
|
id: string;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* The value returned from navigator.credentials.create()
|
||||||
|
*/
|
||||||
|
export interface AttestationCredential extends PublicKeyCredential {
|
||||||
|
response: AuthenticatorAttestationResponseFuture;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* A slightly-modified AttestationCredential to simplify working with ArrayBuffers that
|
||||||
|
* are Base64URL-encoded in the browser so that they can be sent as JSON to the server.
|
||||||
|
*/
|
||||||
|
export interface AttestationCredentialJSON
|
||||||
|
extends Omit<
|
||||||
|
AttestationCredential,
|
||||||
|
'response' | 'rawId' | 'getClientExtensionResults'
|
||||||
|
> {
|
||||||
|
rawId: Base64URLString;
|
||||||
|
response: AuthenticatorAttestationResponseJSON;
|
||||||
|
clientExtensionResults: AuthenticationExtensionsClientOutputs;
|
||||||
|
transports?: AuthenticatorTransport[];
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* The value returned from navigator.credentials.get()
|
||||||
|
*/
|
||||||
|
export interface AssertionCredential extends PublicKeyCredential {
|
||||||
|
response: AuthenticatorAssertionResponse;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* A slightly-modified AssertionCredential to simplify working with ArrayBuffers that
|
||||||
|
* are Base64URL-encoded in the browser so that they can be sent as JSON to the server.
|
||||||
|
*/
|
||||||
|
export interface AssertionCredentialJSON
|
||||||
|
extends Omit<
|
||||||
|
AssertionCredential,
|
||||||
|
'response' | 'rawId' | 'getClientExtensionResults'
|
||||||
|
> {
|
||||||
|
rawId: Base64URLString;
|
||||||
|
response: AuthenticatorAssertionResponseJSON;
|
||||||
|
clientExtensionResults: AuthenticationExtensionsClientOutputs;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* A slightly-modified AuthenticatorAttestationResponse to simplify working with ArrayBuffers that
|
||||||
|
* are Base64URL-encoded in the browser so that they can be sent as JSON to the server.
|
||||||
|
*/
|
||||||
|
export interface AuthenticatorAttestationResponseJSON
|
||||||
|
extends Omit<
|
||||||
|
AuthenticatorAttestationResponseFuture,
|
||||||
|
'clientDataJSON' | 'attestationObject'
|
||||||
|
> {
|
||||||
|
clientDataJSON: Base64URLString;
|
||||||
|
attestationObject: Base64URLString;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* A slightly-modified AuthenticatorAssertionResponse to simplify working with ArrayBuffers that
|
||||||
|
* are Base64URL-encoded in the browser so that they can be sent as JSON to the server.
|
||||||
|
*/
|
||||||
|
export interface AuthenticatorAssertionResponseJSON
|
||||||
|
extends Omit<
|
||||||
|
AuthenticatorAssertionResponse,
|
||||||
|
'authenticatorData' | 'clientDataJSON' | 'signature' | 'userHandle'
|
||||||
|
> {
|
||||||
|
authenticatorData: Base64URLString;
|
||||||
|
clientDataJSON: Base64URLString;
|
||||||
|
signature: Base64URLString;
|
||||||
|
userHandle?: string;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* A WebAuthn-compatible device and the information needed to verify assertions by it
|
||||||
|
*/
|
||||||
|
export declare type AuthenticatorDevice = {
|
||||||
|
credentialPublicKey: Buffer;
|
||||||
|
credentialID: Buffer;
|
||||||
|
counter: number;
|
||||||
|
transports?: AuthenticatorTransport[];
|
||||||
|
};
|
||||||
|
/**
|
||||||
|
* An attempt to communicate that this isn't just any string, but a Base64URL-encoded string
|
||||||
|
*/
|
||||||
|
export declare type Base64URLString = string;
|
||||||
|
/**
|
||||||
|
* AuthenticatorAttestationResponse in TypeScript's DOM lib is outdated (up through v3.9.7).
|
||||||
|
* Maintain an augmented version here so we can implement additional properties as the WebAuthn
|
||||||
|
* spec evolves.
|
||||||
|
*
|
||||||
|
* See https://www.w3.org/TR/webauthn-2/#iface-authenticatorattestationresponse
|
||||||
|
*
|
||||||
|
* Properties marked optional are not supported in all browsers.
|
||||||
|
*/
|
||||||
|
export interface AuthenticatorAttestationResponseFuture
|
||||||
|
extends AuthenticatorAttestationResponse {
|
||||||
|
getTransports?: () => AuthenticatorTransport[];
|
||||||
|
getAuthenticatorData?: () => ArrayBuffer;
|
||||||
|
getPublicKey?: () => ArrayBuffer;
|
||||||
|
getPublicKeyAlgorithm?: () => COSEAlgorithmIdentifier[];
|
||||||
|
}
|
@ -1,9 +1,9 @@
|
|||||||
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration.service';
|
||||||
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service';
|
||||||
import { Injectable, UnauthorizedException } from '@nestjs/common';
|
import { Injectable, UnauthorizedException } from '@nestjs/common';
|
||||||
import { PassportStrategy } from '@nestjs/passport';
|
import { PassportStrategy } from '@nestjs/passport';
|
||||||
import { ExtractJwt, Strategy } from 'passport-jwt';
|
import { ExtractJwt, Strategy } from 'passport-jwt';
|
||||||
|
|
||||||
import { ConfigurationService } from '../../services/configuration.service';
|
|
||||||
import { PrismaService } from '../../services/prisma.service';
|
|
||||||
import { UserService } from '../user/user.service';
|
import { UserService } from '../user/user.service';
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
|
215
apps/api/src/app/auth/web-auth.service.ts
Normal file
215
apps/api/src/app/auth/web-auth.service.ts
Normal file
@ -0,0 +1,215 @@
|
|||||||
|
import { AuthDeviceDto } from '@ghostfolio/api/app/auth-device/auth-device.dto';
|
||||||
|
import { AuthDeviceService } from '@ghostfolio/api/app/auth-device/auth-device.service';
|
||||||
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration.service';
|
||||||
|
import { RequestWithUser } from '@ghostfolio/common/types';
|
||||||
|
import {
|
||||||
|
Inject,
|
||||||
|
Injectable,
|
||||||
|
InternalServerErrorException
|
||||||
|
} from '@nestjs/common';
|
||||||
|
import { REQUEST } from '@nestjs/core';
|
||||||
|
import { JwtService } from '@nestjs/jwt';
|
||||||
|
import {
|
||||||
|
GenerateAssertionOptionsOpts,
|
||||||
|
GenerateAttestationOptionsOpts,
|
||||||
|
VerifiedAssertion,
|
||||||
|
VerifiedAttestation,
|
||||||
|
VerifyAssertionResponseOpts,
|
||||||
|
VerifyAttestationResponseOpts,
|
||||||
|
generateAssertionOptions,
|
||||||
|
generateAttestationOptions,
|
||||||
|
verifyAssertionResponse,
|
||||||
|
verifyAttestationResponse
|
||||||
|
} from '@simplewebauthn/server';
|
||||||
|
|
||||||
|
import { UserService } from '../user/user.service';
|
||||||
|
import {
|
||||||
|
AssertionCredentialJSON,
|
||||||
|
AttestationCredentialJSON
|
||||||
|
} from './interfaces/simplewebauthn';
|
||||||
|
|
||||||
|
@Injectable()
|
||||||
|
export class WebAuthService {
|
||||||
|
public constructor(
|
||||||
|
private readonly configurationService: ConfigurationService,
|
||||||
|
private readonly deviceService: AuthDeviceService,
|
||||||
|
private readonly jwtService: JwtService,
|
||||||
|
private readonly userService: UserService,
|
||||||
|
@Inject(REQUEST) private readonly request: RequestWithUser
|
||||||
|
) {}
|
||||||
|
|
||||||
|
get rpID() {
|
||||||
|
return this.configurationService.get('WEB_AUTH_RP_ID');
|
||||||
|
}
|
||||||
|
|
||||||
|
get expectedOrigin() {
|
||||||
|
return this.configurationService.get('ROOT_URL');
|
||||||
|
}
|
||||||
|
|
||||||
|
public async generateAttestationOptions() {
|
||||||
|
const user = this.request.user;
|
||||||
|
|
||||||
|
const opts: GenerateAttestationOptionsOpts = {
|
||||||
|
rpName: 'Ghostfolio',
|
||||||
|
rpID: this.rpID,
|
||||||
|
userID: user.id,
|
||||||
|
userName: user.alias,
|
||||||
|
timeout: 60000,
|
||||||
|
attestationType: 'indirect',
|
||||||
|
authenticatorSelection: {
|
||||||
|
userVerification: 'preferred',
|
||||||
|
requireResidentKey: false
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const options = generateAttestationOptions(opts);
|
||||||
|
|
||||||
|
await this.userService.updateUser({
|
||||||
|
data: {
|
||||||
|
authChallenge: options.challenge
|
||||||
|
},
|
||||||
|
where: {
|
||||||
|
id: user.id
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return options;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async verifyAttestation(
|
||||||
|
deviceName: string,
|
||||||
|
credential: AttestationCredentialJSON
|
||||||
|
): Promise<AuthDeviceDto> {
|
||||||
|
const user = this.request.user;
|
||||||
|
const expectedChallenge = user.authChallenge;
|
||||||
|
|
||||||
|
let verification: VerifiedAttestation;
|
||||||
|
try {
|
||||||
|
const opts: VerifyAttestationResponseOpts = {
|
||||||
|
credential,
|
||||||
|
expectedChallenge,
|
||||||
|
expectedOrigin: this.expectedOrigin,
|
||||||
|
expectedRPID: this.rpID
|
||||||
|
};
|
||||||
|
verification = await verifyAttestationResponse(opts);
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
throw new InternalServerErrorException(error.message);
|
||||||
|
}
|
||||||
|
|
||||||
|
const { verified, attestationInfo } = verification;
|
||||||
|
|
||||||
|
const devices = await this.deviceService.authDevices({
|
||||||
|
where: { userId: user.id }
|
||||||
|
});
|
||||||
|
if (verified && attestationInfo) {
|
||||||
|
const { credentialPublicKey, credentialID, counter } = attestationInfo;
|
||||||
|
|
||||||
|
let existingDevice = devices.find(
|
||||||
|
(device) => device.credentialId === credentialID
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!existingDevice) {
|
||||||
|
/**
|
||||||
|
* Add the returned device to the user's list of devices
|
||||||
|
*/
|
||||||
|
existingDevice = await this.deviceService.createAuthDevice({
|
||||||
|
credentialPublicKey,
|
||||||
|
credentialId: credentialID,
|
||||||
|
counter,
|
||||||
|
User: { connect: { id: user.id } }
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
createdAt: existingDevice.createdAt.toISOString(),
|
||||||
|
id: existingDevice.id
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new InternalServerErrorException('An unknown error occurred');
|
||||||
|
}
|
||||||
|
|
||||||
|
public async generateAssertionOptions(deviceId: string) {
|
||||||
|
const device = await this.deviceService.authDevice({ id: deviceId });
|
||||||
|
|
||||||
|
if (!device) {
|
||||||
|
throw new Error('Device not found');
|
||||||
|
}
|
||||||
|
|
||||||
|
const opts: GenerateAssertionOptionsOpts = {
|
||||||
|
timeout: 60000,
|
||||||
|
allowCredentials: [
|
||||||
|
{
|
||||||
|
id: device.credentialId,
|
||||||
|
type: 'public-key',
|
||||||
|
transports: ['usb', 'ble', 'nfc', 'internal']
|
||||||
|
}
|
||||||
|
],
|
||||||
|
userVerification: 'preferred',
|
||||||
|
rpID: this.rpID
|
||||||
|
};
|
||||||
|
|
||||||
|
const options = generateAssertionOptions(opts);
|
||||||
|
|
||||||
|
await this.userService.updateUser({
|
||||||
|
data: {
|
||||||
|
authChallenge: options.challenge
|
||||||
|
},
|
||||||
|
where: {
|
||||||
|
id: device.userId
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return options;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async verifyAssertion(
|
||||||
|
deviceId: string,
|
||||||
|
credential: AssertionCredentialJSON
|
||||||
|
) {
|
||||||
|
const device = await this.deviceService.authDevice({ id: deviceId });
|
||||||
|
|
||||||
|
if (!device) {
|
||||||
|
throw new Error('Device not found');
|
||||||
|
}
|
||||||
|
|
||||||
|
const user = await this.userService.user({ id: device.userId });
|
||||||
|
|
||||||
|
let verification: VerifiedAssertion;
|
||||||
|
try {
|
||||||
|
const opts: VerifyAssertionResponseOpts = {
|
||||||
|
credential,
|
||||||
|
expectedChallenge: `${user.authChallenge}`,
|
||||||
|
expectedOrigin: this.expectedOrigin,
|
||||||
|
expectedRPID: this.rpID,
|
||||||
|
authenticator: {
|
||||||
|
credentialID: device.credentialId,
|
||||||
|
credentialPublicKey: device.credentialPublicKey,
|
||||||
|
counter: device.counter
|
||||||
|
}
|
||||||
|
};
|
||||||
|
verification = verifyAssertionResponse(opts);
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
throw new InternalServerErrorException({ error: error.message });
|
||||||
|
}
|
||||||
|
|
||||||
|
const { verified, assertionInfo } = verification;
|
||||||
|
|
||||||
|
if (verified) {
|
||||||
|
device.counter = assertionInfo.newCounter;
|
||||||
|
|
||||||
|
await this.deviceService.updateAuthDevice({
|
||||||
|
data: device,
|
||||||
|
where: { id: device.id }
|
||||||
|
});
|
||||||
|
|
||||||
|
return this.jwtService.sign({
|
||||||
|
id: user.id
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new Error();
|
||||||
|
}
|
||||||
|
}
|
4
apps/api/src/app/cache/cache.controller.ts
vendored
4
apps/api/src/app/cache/cache.controller.ts
vendored
@ -1,7 +1,7 @@
|
|||||||
import { Controller, Inject, Param, Post, UseGuards } from '@nestjs/common';
|
import { RequestWithUser } from '@ghostfolio/common/types';
|
||||||
|
import { Controller, Inject, Post, UseGuards } from '@nestjs/common';
|
||||||
import { REQUEST } from '@nestjs/core';
|
import { REQUEST } from '@nestjs/core';
|
||||||
import { AuthGuard } from '@nestjs/passport';
|
import { AuthGuard } from '@nestjs/passport';
|
||||||
import { RequestWithUser } from 'apps/api/src/app/interfaces/request-with-user.type';
|
|
||||||
|
|
||||||
import { RedisCacheService } from '../redis-cache/redis-cache.service';
|
import { RedisCacheService } from '../redis-cache/redis-cache.service';
|
||||||
import { CacheService } from './cache.service';
|
import { CacheService } from './cache.service';
|
||||||
|
2
apps/api/src/app/cache/cache.module.ts
vendored
2
apps/api/src/app/cache/cache.module.ts
vendored
@ -1,6 +1,6 @@
|
|||||||
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service';
|
||||||
import { Module } from '@nestjs/common';
|
import { Module } from '@nestjs/common';
|
||||||
|
|
||||||
import { PrismaService } from '../../services/prisma.service';
|
|
||||||
import { RedisCacheModule } from '../redis-cache/redis-cache.module';
|
import { RedisCacheModule } from '../redis-cache/redis-cache.module';
|
||||||
import { CacheController } from './cache.controller';
|
import { CacheController } from './cache.controller';
|
||||||
import { CacheService } from './cache.service';
|
import { CacheService } from './cache.service';
|
||||||
|
4
apps/api/src/app/cache/cache.service.ts
vendored
4
apps/api/src/app/cache/cache.service.ts
vendored
@ -1,7 +1,5 @@
|
|||||||
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service';
|
||||||
import { Injectable } from '@nestjs/common';
|
import { Injectable } from '@nestjs/common';
|
||||||
import { Prisma, User } from '@prisma/client';
|
|
||||||
|
|
||||||
import { PrismaService } from '../../services/prisma.service';
|
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class CacheService {
|
export class CacheService {
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
import { baseCurrency, benchmarks } from '@ghostfolio/common/config';
|
||||||
|
import { isApiTokenAuthorized } from '@ghostfolio/common/permissions';
|
||||||
|
import { RequestWithUser } from '@ghostfolio/common/types';
|
||||||
import {
|
import {
|
||||||
Body,
|
Body,
|
||||||
Controller,
|
Controller,
|
||||||
@ -9,11 +12,8 @@ import {
|
|||||||
Post
|
Post
|
||||||
} from '@nestjs/common';
|
} from '@nestjs/common';
|
||||||
import { REQUEST } from '@nestjs/core';
|
import { REQUEST } from '@nestjs/core';
|
||||||
import { RequestWithUser } from 'apps/api/src/app/interfaces/request-with-user.type';
|
|
||||||
import { parse } from 'date-fns';
|
import { parse } from 'date-fns';
|
||||||
import { StatusCodes, getReasonPhrase } from 'http-status-codes';
|
import { StatusCodes, getReasonPhrase } from 'http-status-codes';
|
||||||
import { baseCurrency, benchmarks } from 'libs/helper/src';
|
|
||||||
import { isApiTokenAuthorized } from 'libs/helper/src';
|
|
||||||
|
|
||||||
import { CreateOrderDto } from './create-order.dto';
|
import { CreateOrderDto } from './create-order.dto';
|
||||||
import { ExperimentalService } from './experimental.service';
|
import { ExperimentalService } from './experimental.service';
|
||||||
@ -37,7 +37,9 @@ export class ExperimentalController {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return benchmarks;
|
return benchmarks.map(({ symbol }) => {
|
||||||
|
return symbol;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@Get('benchmarks/:symbol')
|
@Get('benchmarks/:symbol')
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration.service';
|
||||||
|
import { DataProviderService } from '@ghostfolio/api/services/data-provider.service';
|
||||||
|
import { AlphaVantageService } from '@ghostfolio/api/services/data-provider/alpha-vantage/alpha-vantage.service';
|
||||||
|
import { GhostfolioScraperApiService } from '@ghostfolio/api/services/data-provider/ghostfolio-scraper-api/ghostfolio-scraper-api.service';
|
||||||
|
import { RakutenRapidApiService } from '@ghostfolio/api/services/data-provider/rakuten-rapid-api/rakuten-rapid-api.service';
|
||||||
|
import { YahooFinanceService } from '@ghostfolio/api/services/data-provider/yahoo-finance/yahoo-finance.service';
|
||||||
|
import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate-data.service';
|
||||||
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service';
|
||||||
|
import { RulesService } from '@ghostfolio/api/services/rules.service';
|
||||||
import { Module } from '@nestjs/common';
|
import { Module } from '@nestjs/common';
|
||||||
|
|
||||||
import { ConfigurationService } from '../../services/configuration.service';
|
|
||||||
import { DataProviderService } from '../../services/data-provider.service';
|
|
||||||
import { AlphaVantageService } from '../../services/data-provider/alpha-vantage/alpha-vantage.service';
|
|
||||||
import { RakutenRapidApiService } from '../../services/data-provider/rakuten-rapid-api/rakuten-rapid-api.service';
|
|
||||||
import { YahooFinanceService } from '../../services/data-provider/yahoo-finance/yahoo-finance.service';
|
|
||||||
import { ExchangeRateDataService } from '../../services/exchange-rate-data.service';
|
|
||||||
import { PrismaService } from '../../services/prisma.service';
|
|
||||||
import { RulesService } from '../../services/rules.service';
|
|
||||||
import { ExperimentalController } from './experimental.controller';
|
import { ExperimentalController } from './experimental.controller';
|
||||||
import { ExperimentalService } from './experimental.service';
|
import { ExperimentalService } from './experimental.service';
|
||||||
|
|
||||||
@ -20,6 +21,7 @@ import { ExperimentalService } from './experimental.service';
|
|||||||
DataProviderService,
|
DataProviderService,
|
||||||
ExchangeRateDataService,
|
ExchangeRateDataService,
|
||||||
ExperimentalService,
|
ExperimentalService,
|
||||||
|
GhostfolioScraperApiService,
|
||||||
PrismaService,
|
PrismaService,
|
||||||
RakutenRapidApiService,
|
RakutenRapidApiService,
|
||||||
RulesService,
|
RulesService,
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
|
import { Portfolio } from '@ghostfolio/api/models/portfolio';
|
||||||
|
import { DataProviderService } from '@ghostfolio/api/services/data-provider.service';
|
||||||
|
import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate-data.service';
|
||||||
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service';
|
||||||
|
import { RulesService } from '@ghostfolio/api/services/rules.service';
|
||||||
|
import { OrderWithAccount } from '@ghostfolio/common/types';
|
||||||
import { Injectable } from '@nestjs/common';
|
import { Injectable } from '@nestjs/common';
|
||||||
import { Currency, Type } from '@prisma/client';
|
import { Currency, Type } from '@prisma/client';
|
||||||
import { parseISO } from 'date-fns';
|
import { parseISO } from 'date-fns';
|
||||||
|
|
||||||
import { Portfolio } from '../../models/portfolio';
|
|
||||||
import { DataProviderService } from '../../services/data-provider.service';
|
|
||||||
import { ExchangeRateDataService } from '../../services/exchange-rate-data.service';
|
|
||||||
import { PrismaService } from '../../services/prisma.service';
|
|
||||||
import { RulesService } from '../../services/rules.service';
|
|
||||||
import { OrderWithPlatform } from '../order/interfaces/order-with-platform.type';
|
|
||||||
import { CreateOrderDto } from './create-order.dto';
|
import { CreateOrderDto } from './create-order.dto';
|
||||||
import { Data } from './interfaces/data.interface';
|
import { Data } from './interfaces/data.interface';
|
||||||
|
|
||||||
@ -33,14 +33,18 @@ export class ExperimentalService {
|
|||||||
aDate: Date,
|
aDate: Date,
|
||||||
aBaseCurrency: Currency
|
aBaseCurrency: Currency
|
||||||
): Promise<Data> {
|
): Promise<Data> {
|
||||||
const ordersWithPlatform: OrderWithPlatform[] = aOrders.map((order) => {
|
const ordersWithPlatform: OrderWithAccount[] = aOrders.map((order) => {
|
||||||
return {
|
return {
|
||||||
...order,
|
...order,
|
||||||
|
accountId: undefined,
|
||||||
|
accountUserId: undefined,
|
||||||
createdAt: new Date(),
|
createdAt: new Date(),
|
||||||
|
dataSource: undefined,
|
||||||
date: parseISO(order.date),
|
date: parseISO(order.date),
|
||||||
fee: 0,
|
fee: 0,
|
||||||
id: undefined,
|
id: undefined,
|
||||||
platformId: undefined,
|
platformId: undefined,
|
||||||
|
symbolProfileId: undefined,
|
||||||
type: Type.BUY,
|
type: Type.BUY,
|
||||||
updatedAt: undefined,
|
updatedAt: undefined,
|
||||||
userId: undefined
|
userId: undefined
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
|
import { InfoItem } from '@ghostfolio/common/interfaces';
|
||||||
import { Controller, Get } from '@nestjs/common';
|
import { Controller, Get } from '@nestjs/common';
|
||||||
|
|
||||||
import { InfoService } from './info.service';
|
import { InfoService } from './info.service';
|
||||||
import { InfoItem } from './interfaces/info-item.interface';
|
|
||||||
|
|
||||||
@Controller('info')
|
@Controller('info')
|
||||||
export class InfoController {
|
export class InfoController {
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration.service';
|
||||||
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service';
|
||||||
import { Module } from '@nestjs/common';
|
import { Module } from '@nestjs/common';
|
||||||
import { JwtModule } from '@nestjs/jwt';
|
import { JwtModule } from '@nestjs/jwt';
|
||||||
|
|
||||||
import { ConfigurationService } from '../../services/configuration.service';
|
|
||||||
import { PrismaService } from '../../services/prisma.service';
|
|
||||||
import { InfoController } from './info.controller';
|
import { InfoController } from './info.controller';
|
||||||
import { InfoService } from './info.service';
|
import { InfoService } from './info.service';
|
||||||
|
|
||||||
|
@ -1,12 +1,11 @@
|
|||||||
import { permissions } from '@ghostfolio/helper';
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration.service';
|
||||||
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service';
|
||||||
|
import { InfoItem } from '@ghostfolio/common/interfaces';
|
||||||
|
import { permissions } from '@ghostfolio/common/permissions';
|
||||||
import { Injectable } from '@nestjs/common';
|
import { Injectable } from '@nestjs/common';
|
||||||
import { JwtService } from '@nestjs/jwt';
|
import { JwtService } from '@nestjs/jwt';
|
||||||
import { Currency } from '@prisma/client';
|
import { Currency } from '@prisma/client';
|
||||||
|
|
||||||
import { ConfigurationService } from '../../services/configuration.service';
|
|
||||||
import { PrismaService } from '../../services/prisma.service';
|
|
||||||
import { InfoItem } from './interfaces/info-item.interface';
|
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class InfoService {
|
export class InfoService {
|
||||||
private static DEMO_USER_ID = '9b112b4d-3b7d-4bad-9bdd-3b0f7b4dac2f';
|
private static DEMO_USER_ID = '9b112b4d-3b7d-4bad-9bdd-3b0f7b4dac2f';
|
||||||
@ -26,7 +25,11 @@ export class InfoService {
|
|||||||
const globalPermissions: string[] = [];
|
const globalPermissions: string[] = [];
|
||||||
|
|
||||||
if (this.configurationService.get('ENABLE_FEATURE_SOCIAL_LOGIN')) {
|
if (this.configurationService.get('ENABLE_FEATURE_SOCIAL_LOGIN')) {
|
||||||
globalPermissions.push(permissions.useSocialLogin);
|
globalPermissions.push(permissions.enableSocialLogin);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.configurationService.get('ENABLE_FEATURE_SUBSCRIPTION')) {
|
||||||
|
globalPermissions.push(permissions.enableSubscription);
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
import { Settings, User } from '@prisma/client';
|
|
||||||
|
|
||||||
export type UserWithSettings = User & { Settings: Settings };
|
|
@ -1,20 +1,22 @@
|
|||||||
import { Currency, Type } from '@prisma/client';
|
import { Currency, DataSource, Type } from '@prisma/client';
|
||||||
import { IsISO8601, IsNumber, IsString, ValidateIf } from 'class-validator';
|
import { IsISO8601, IsNumber, IsString, ValidateIf } from 'class-validator';
|
||||||
|
|
||||||
export class CreateOrderDto {
|
export class CreateOrderDto {
|
||||||
|
@IsString()
|
||||||
|
accountId: string;
|
||||||
|
|
||||||
@IsString()
|
@IsString()
|
||||||
currency: Currency;
|
currency: Currency;
|
||||||
|
|
||||||
|
@IsString()
|
||||||
|
dataSource: DataSource;
|
||||||
|
|
||||||
@IsISO8601()
|
@IsISO8601()
|
||||||
date: string;
|
date: string;
|
||||||
|
|
||||||
@IsNumber()
|
@IsNumber()
|
||||||
fee: number;
|
fee: number;
|
||||||
|
|
||||||
@IsString()
|
|
||||||
@ValidateIf((object, value) => value !== null)
|
|
||||||
platformId: string | null;
|
|
||||||
|
|
||||||
@IsNumber()
|
@IsNumber()
|
||||||
quantity: number;
|
quantity: number;
|
||||||
|
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
import { Order, Platform } from '@prisma/client';
|
|
||||||
|
|
||||||
export type OrderWithPlatform = Order & { Platform?: Platform };
|
|
@ -1,3 +1,11 @@
|
|||||||
|
import { nullifyValuesInObjects } from '@ghostfolio/api/helper/object.helper';
|
||||||
|
import { ImpersonationService } from '@ghostfolio/api/services/impersonation.service';
|
||||||
|
import {
|
||||||
|
getPermissions,
|
||||||
|
hasPermission,
|
||||||
|
permissions
|
||||||
|
} from '@ghostfolio/common/permissions';
|
||||||
|
import { RequestWithUser } from '@ghostfolio/common/types';
|
||||||
import {
|
import {
|
||||||
Body,
|
Body,
|
||||||
Controller,
|
Controller,
|
||||||
@ -14,13 +22,9 @@ import {
|
|||||||
import { REQUEST } from '@nestjs/core';
|
import { REQUEST } from '@nestjs/core';
|
||||||
import { AuthGuard } from '@nestjs/passport';
|
import { AuthGuard } from '@nestjs/passport';
|
||||||
import { Order as OrderModel } from '@prisma/client';
|
import { Order as OrderModel } from '@prisma/client';
|
||||||
import { RequestWithUser } from 'apps/api/src/app/interfaces/request-with-user.type';
|
|
||||||
import { parseISO } from 'date-fns';
|
import { parseISO } from 'date-fns';
|
||||||
import { StatusCodes, getReasonPhrase } from 'http-status-codes';
|
import { StatusCodes, getReasonPhrase } from 'http-status-codes';
|
||||||
import { getPermissions, hasPermission, permissions } from 'libs/helper/src';
|
|
||||||
|
|
||||||
import { nullifyValuesInObjects } from '../../helper/object.helper';
|
|
||||||
import { ImpersonationService } from '../../services/impersonation.service';
|
|
||||||
import { CreateOrderDto } from './create-order.dto';
|
import { CreateOrderDto } from './create-order.dto';
|
||||||
import { OrderService } from './order.service';
|
import { OrderService } from './order.service';
|
||||||
import { UpdateOrderDto } from './update-order.dto';
|
import { UpdateOrderDto } from './update-order.dto';
|
||||||
@ -70,8 +74,12 @@ export class OrderController {
|
|||||||
);
|
);
|
||||||
|
|
||||||
let orders = await this.orderService.orders({
|
let orders = await this.orderService.orders({
|
||||||
|
include: {
|
||||||
|
Account: {
|
||||||
include: {
|
include: {
|
||||||
Platform: true
|
Platform: true
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
orderBy: { date: 'desc' },
|
orderBy: { date: 'desc' },
|
||||||
where: { userId: impersonationUserId || this.request.user.id }
|
where: { userId: impersonationUserId || this.request.user.id }
|
||||||
@ -118,31 +126,36 @@ export class OrderController {
|
|||||||
|
|
||||||
const date = parseISO(data.date);
|
const date = parseISO(data.date);
|
||||||
|
|
||||||
if (data.platformId) {
|
const accountId = data.accountId;
|
||||||
const platformId = data.platformId;
|
delete data.accountId;
|
||||||
delete data.platformId;
|
|
||||||
|
|
||||||
return this.orderService.createOrder(
|
return this.orderService.createOrder(
|
||||||
{
|
{
|
||||||
...data,
|
...data,
|
||||||
date,
|
Account: {
|
||||||
Platform: { connect: { id: platformId } },
|
connect: {
|
||||||
User: { connect: { id: this.request.user.id } }
|
id_userId: { id: accountId, userId: this.request.user.id }
|
||||||
},
|
|
||||||
this.request.user.id
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
delete data.platformId;
|
|
||||||
|
|
||||||
return this.orderService.createOrder(
|
|
||||||
{
|
|
||||||
...data,
|
|
||||||
date,
|
|
||||||
User: { connect: { id: this.request.user.id } }
|
|
||||||
},
|
|
||||||
this.request.user.id
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
date,
|
||||||
|
SymbolProfile: {
|
||||||
|
connectOrCreate: {
|
||||||
|
where: {
|
||||||
|
dataSource_symbol: {
|
||||||
|
dataSource: data.dataSource,
|
||||||
|
symbol: data.symbol
|
||||||
|
}
|
||||||
|
},
|
||||||
|
create: {
|
||||||
|
dataSource: data.dataSource,
|
||||||
|
symbol: data.symbol
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
User: { connect: { id: this.request.user.id } }
|
||||||
|
},
|
||||||
|
this.request.user.id
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Put(':id')
|
@Put(':id')
|
||||||
@ -167,41 +180,28 @@ export class OrderController {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (!originalOrder) {
|
||||||
|
throw new HttpException(
|
||||||
|
getReasonPhrase(StatusCodes.FORBIDDEN),
|
||||||
|
StatusCodes.FORBIDDEN
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
const date = parseISO(data.date);
|
const date = parseISO(data.date);
|
||||||
|
|
||||||
if (data.platformId) {
|
const accountId = data.accountId;
|
||||||
const platformId = data.platformId;
|
delete data.accountId;
|
||||||
delete data.platformId;
|
|
||||||
|
|
||||||
return this.orderService.updateOrder(
|
return this.orderService.updateOrder(
|
||||||
{
|
{
|
||||||
data: {
|
data: {
|
||||||
...data,
|
...data,
|
||||||
date,
|
date,
|
||||||
Platform: { connect: { id: platformId } },
|
Account: {
|
||||||
User: { connect: { id: this.request.user.id } }
|
connect: {
|
||||||
},
|
id_userId: { id: accountId, userId: this.request.user.id }
|
||||||
where: {
|
|
||||||
id_userId: {
|
|
||||||
id,
|
|
||||||
userId: this.request.user.id
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
this.request.user.id
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
// platformId is null, remove it
|
|
||||||
delete data.platformId;
|
|
||||||
|
|
||||||
return this.orderService.updateOrder(
|
|
||||||
{
|
|
||||||
data: {
|
|
||||||
...data,
|
|
||||||
date,
|
|
||||||
Platform: originalOrder.platformId
|
|
||||||
? { disconnect: true }
|
|
||||||
: undefined,
|
|
||||||
User: { connect: { id: this.request.user.id } }
|
User: { connect: { id: this.request.user.id } }
|
||||||
},
|
},
|
||||||
where: {
|
where: {
|
||||||
@ -215,4 +215,3 @@ export class OrderController {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration.service';
|
||||||
|
import { DataGatheringService } from '@ghostfolio/api/services/data-gathering.service';
|
||||||
|
import { DataProviderService } from '@ghostfolio/api/services/data-provider.service';
|
||||||
|
import { AlphaVantageService } from '@ghostfolio/api/services/data-provider/alpha-vantage/alpha-vantage.service';
|
||||||
|
import { GhostfolioScraperApiService } from '@ghostfolio/api/services/data-provider/ghostfolio-scraper-api/ghostfolio-scraper-api.service';
|
||||||
|
import { RakutenRapidApiService } from '@ghostfolio/api/services/data-provider/rakuten-rapid-api/rakuten-rapid-api.service';
|
||||||
|
import { YahooFinanceService } from '@ghostfolio/api/services/data-provider/yahoo-finance/yahoo-finance.service';
|
||||||
|
import { ImpersonationService } from '@ghostfolio/api/services/impersonation.service';
|
||||||
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service';
|
||||||
import { Module } from '@nestjs/common';
|
import { Module } from '@nestjs/common';
|
||||||
|
|
||||||
import { ConfigurationService } from '../../services/configuration.service';
|
|
||||||
import { DataGatheringService } from '../../services/data-gathering.service';
|
|
||||||
import { DataProviderService } from '../../services/data-provider.service';
|
|
||||||
import { AlphaVantageService } from '../../services/data-provider/alpha-vantage/alpha-vantage.service';
|
|
||||||
import { RakutenRapidApiService } from '../../services/data-provider/rakuten-rapid-api/rakuten-rapid-api.service';
|
|
||||||
import { YahooFinanceService } from '../../services/data-provider/yahoo-finance/yahoo-finance.service';
|
|
||||||
import { ImpersonationService } from '../../services/impersonation.service';
|
|
||||||
import { PrismaService } from '../../services/prisma.service';
|
|
||||||
import { CacheService } from '../cache/cache.service';
|
import { CacheService } from '../cache/cache.service';
|
||||||
import { RedisCacheModule } from '../redis-cache/redis-cache.module';
|
import { RedisCacheModule } from '../redis-cache/redis-cache.module';
|
||||||
import { OrderController } from './order.controller';
|
import { OrderController } from './order.controller';
|
||||||
@ -22,6 +23,7 @@ import { OrderService } from './order.service';
|
|||||||
ConfigurationService,
|
ConfigurationService,
|
||||||
DataGatheringService,
|
DataGatheringService,
|
||||||
DataProviderService,
|
DataProviderService,
|
||||||
|
GhostfolioScraperApiService,
|
||||||
ImpersonationService,
|
ImpersonationService,
|
||||||
OrderService,
|
OrderService,
|
||||||
PrismaService,
|
PrismaService,
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
|
import { DataGatheringService } from '@ghostfolio/api/services/data-gathering.service';
|
||||||
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service';
|
||||||
|
import { OrderWithAccount } from '@ghostfolio/common/types';
|
||||||
import { Injectable } from '@nestjs/common';
|
import { Injectable } from '@nestjs/common';
|
||||||
import { Order, Prisma } from '@prisma/client';
|
import { DataSource, Order, Prisma } from '@prisma/client';
|
||||||
|
|
||||||
import { DataGatheringService } from '../../services/data-gathering.service';
|
|
||||||
import { PrismaService } from '../../services/prisma.service';
|
|
||||||
import { CacheService } from '../cache/cache.service';
|
import { CacheService } from '../cache/cache.service';
|
||||||
import { RedisCacheService } from '../redis-cache/redis-cache.service';
|
import { RedisCacheService } from '../redis-cache/redis-cache.service';
|
||||||
import { OrderWithPlatform } from './interfaces/order-with-platform.type';
|
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class OrderService {
|
export class OrderService {
|
||||||
@ -31,7 +31,7 @@ export class OrderService {
|
|||||||
cursor?: Prisma.OrderWhereUniqueInput;
|
cursor?: Prisma.OrderWhereUniqueInput;
|
||||||
where?: Prisma.OrderWhereInput;
|
where?: Prisma.OrderWhereInput;
|
||||||
orderBy?: Prisma.OrderOrderByInput;
|
orderBy?: Prisma.OrderOrderByInput;
|
||||||
}): Promise<OrderWithPlatform[]> {
|
}): Promise<OrderWithAccount[]> {
|
||||||
const { include, skip, take, cursor, where, orderBy } = params;
|
const { include, skip, take, cursor, where, orderBy } = params;
|
||||||
|
|
||||||
return this.prisma.order.findMany({
|
return this.prisma.order.findMany({
|
||||||
@ -53,6 +53,7 @@ export class OrderService {
|
|||||||
// Gather symbol data of order in the background
|
// Gather symbol data of order in the background
|
||||||
this.dataGatheringService.gatherSymbols([
|
this.dataGatheringService.gatherSymbols([
|
||||||
{
|
{
|
||||||
|
dataSource: data.dataSource,
|
||||||
date: <Date>data.date,
|
date: <Date>data.date,
|
||||||
symbol: data.symbol
|
symbol: data.symbol
|
||||||
}
|
}
|
||||||
@ -90,6 +91,7 @@ export class OrderService {
|
|||||||
// Gather symbol data of order in the background
|
// Gather symbol data of order in the background
|
||||||
this.dataGatheringService.gatherSymbols([
|
this.dataGatheringService.gatherSymbols([
|
||||||
{
|
{
|
||||||
|
dataSource: <DataSource>data.dataSource,
|
||||||
date: <Date>data.date,
|
date: <Date>data.date,
|
||||||
symbol: <string>data.symbol
|
symbol: <string>data.symbol
|
||||||
}
|
}
|
||||||
|
@ -1,20 +1,22 @@
|
|||||||
import { Currency, Type } from '@prisma/client';
|
import { Currency, DataSource, Type } from '@prisma/client';
|
||||||
import { IsISO8601, IsNumber, IsString, ValidateIf } from 'class-validator';
|
import { IsISO8601, IsNumber, IsString, ValidateIf } from 'class-validator';
|
||||||
|
|
||||||
export class UpdateOrderDto {
|
export class UpdateOrderDto {
|
||||||
|
@IsString()
|
||||||
|
accountId: string;
|
||||||
|
|
||||||
@IsString()
|
@IsString()
|
||||||
currency: Currency;
|
currency: Currency;
|
||||||
|
|
||||||
|
@IsString()
|
||||||
|
dataSource: DataSource;
|
||||||
|
|
||||||
@IsISO8601()
|
@IsISO8601()
|
||||||
date: string;
|
date: string;
|
||||||
|
|
||||||
@IsNumber()
|
@IsNumber()
|
||||||
fee: number;
|
fee: number;
|
||||||
|
|
||||||
@IsString()
|
|
||||||
@ValidateIf((object, value) => value !== null)
|
|
||||||
platformId: string | null;
|
|
||||||
|
|
||||||
@IsString()
|
@IsString()
|
||||||
id: string;
|
id: string;
|
||||||
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
|
import { Currency } from '@prisma/client';
|
||||||
|
|
||||||
export interface PortfolioPositionDetail {
|
export interface PortfolioPositionDetail {
|
||||||
averagePrice: number;
|
averagePrice: number;
|
||||||
currency: string;
|
currency: Currency;
|
||||||
firstBuyDate: string;
|
firstBuyDate: string;
|
||||||
grossPerformance: number;
|
grossPerformance: number;
|
||||||
grossPerformancePercent: number;
|
grossPerformancePercent: number;
|
||||||
@ -11,6 +13,7 @@ export interface PortfolioPositionDetail {
|
|||||||
minPrice: number;
|
minPrice: number;
|
||||||
quantity: number;
|
quantity: number;
|
||||||
symbol: string;
|
symbol: string;
|
||||||
|
transactionCount: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface HistoricalDataItem {
|
export interface HistoricalDataItem {
|
||||||
|
@ -1,3 +1,22 @@
|
|||||||
|
import {
|
||||||
|
hasNotDefinedValuesInObject,
|
||||||
|
nullifyValuesInObject
|
||||||
|
} from '@ghostfolio/api/helper/object.helper';
|
||||||
|
import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate-data.service';
|
||||||
|
import { ImpersonationService } from '@ghostfolio/api/services/impersonation.service';
|
||||||
|
import {
|
||||||
|
PortfolioItem,
|
||||||
|
PortfolioOverview,
|
||||||
|
PortfolioPerformance,
|
||||||
|
PortfolioPosition,
|
||||||
|
PortfolioReport
|
||||||
|
} from '@ghostfolio/common/interfaces';
|
||||||
|
import {
|
||||||
|
getPermissions,
|
||||||
|
hasPermission,
|
||||||
|
permissions
|
||||||
|
} from '@ghostfolio/common/permissions';
|
||||||
|
import { RequestWithUser } from '@ghostfolio/common/types';
|
||||||
import {
|
import {
|
||||||
Controller,
|
Controller,
|
||||||
Get,
|
Get,
|
||||||
@ -13,24 +32,11 @@ import { REQUEST } from '@nestjs/core';
|
|||||||
import { AuthGuard } from '@nestjs/passport';
|
import { AuthGuard } from '@nestjs/passport';
|
||||||
import { Response } from 'express';
|
import { Response } from 'express';
|
||||||
import { StatusCodes, getReasonPhrase } from 'http-status-codes';
|
import { StatusCodes, getReasonPhrase } from 'http-status-codes';
|
||||||
import { getPermissions, hasPermission, permissions } from 'libs/helper/src';
|
|
||||||
|
|
||||||
import {
|
|
||||||
hasNotDefinedValuesInObject,
|
|
||||||
nullifyValuesInObject
|
|
||||||
} from '../../helper/object.helper';
|
|
||||||
import { ExchangeRateDataService } from '../../services/exchange-rate-data.service';
|
|
||||||
import { ImpersonationService } from '../../services/impersonation.service';
|
|
||||||
import { RequestWithUser } from '../interfaces/request-with-user.type';
|
|
||||||
import { PortfolioItem } from './interfaces/portfolio-item.interface';
|
|
||||||
import { PortfolioOverview } from './interfaces/portfolio-overview.interface';
|
|
||||||
import { PortfolioPerformance } from './interfaces/portfolio-performance.interface';
|
|
||||||
import {
|
import {
|
||||||
HistoricalDataItem,
|
HistoricalDataItem,
|
||||||
PortfolioPositionDetail
|
PortfolioPositionDetail
|
||||||
} from './interfaces/portfolio-position-detail.interface';
|
} from './interfaces/portfolio-position-detail.interface';
|
||||||
import { PortfolioPosition } from './interfaces/portfolio-position.interface';
|
|
||||||
import { PortfolioReport } from './interfaces/portfolio-report.interface';
|
|
||||||
import { PortfolioService } from './portfolio.service';
|
import { PortfolioService } from './portfolio.service';
|
||||||
|
|
||||||
@Controller('portfolio')
|
@Controller('portfolio')
|
||||||
@ -185,11 +191,11 @@ export class PortfolioController {
|
|||||||
portfolioPosition.investment =
|
portfolioPosition.investment =
|
||||||
portfolioPosition.investment / totalInvestment;
|
portfolioPosition.investment / totalInvestment;
|
||||||
|
|
||||||
for (const [platform, { current, original }] of Object.entries(
|
for (const [account, { current, original }] of Object.entries(
|
||||||
portfolioPosition.platforms
|
portfolioPosition.accounts
|
||||||
)) {
|
)) {
|
||||||
portfolioPosition.platforms[platform].current = current / totalValue;
|
portfolioPosition.accounts[account].current = current / totalValue;
|
||||||
portfolioPosition.platforms[platform].original =
|
portfolioPosition.accounts[account].original =
|
||||||
original / totalInvestment;
|
original / totalInvestment;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -309,18 +315,6 @@ export class PortfolioController {
|
|||||||
impersonationUserId || this.request.user.id
|
impersonationUserId || this.request.user.id
|
||||||
);
|
);
|
||||||
|
|
||||||
let report = await portfolio.getReport();
|
return await portfolio.getReport();
|
||||||
|
|
||||||
if (
|
|
||||||
impersonationId &&
|
|
||||||
!hasPermission(
|
|
||||||
getPermissions(this.request.user.role),
|
|
||||||
permissions.readForeignPortfolio
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
// TODO: Filter out absolute numbers
|
|
||||||
}
|
|
||||||
|
|
||||||
return report;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,15 +1,16 @@
|
|||||||
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration.service';
|
||||||
|
import { DataGatheringService } from '@ghostfolio/api/services/data-gathering.service';
|
||||||
|
import { DataProviderService } from '@ghostfolio/api/services/data-provider.service';
|
||||||
|
import { AlphaVantageService } from '@ghostfolio/api/services/data-provider/alpha-vantage/alpha-vantage.service';
|
||||||
|
import { GhostfolioScraperApiService } from '@ghostfolio/api/services/data-provider/ghostfolio-scraper-api/ghostfolio-scraper-api.service';
|
||||||
|
import { RakutenRapidApiService } from '@ghostfolio/api/services/data-provider/rakuten-rapid-api/rakuten-rapid-api.service';
|
||||||
|
import { YahooFinanceService } from '@ghostfolio/api/services/data-provider/yahoo-finance/yahoo-finance.service';
|
||||||
|
import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate-data.service';
|
||||||
|
import { ImpersonationService } from '@ghostfolio/api/services/impersonation.service';
|
||||||
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service';
|
||||||
|
import { RulesService } from '@ghostfolio/api/services/rules.service';
|
||||||
import { Module } from '@nestjs/common';
|
import { Module } from '@nestjs/common';
|
||||||
|
|
||||||
import { ConfigurationService } from '../../services/configuration.service';
|
|
||||||
import { DataGatheringService } from '../../services/data-gathering.service';
|
|
||||||
import { DataProviderService } from '../../services/data-provider.service';
|
|
||||||
import { AlphaVantageService } from '../../services/data-provider/alpha-vantage/alpha-vantage.service';
|
|
||||||
import { RakutenRapidApiService } from '../../services/data-provider/rakuten-rapid-api/rakuten-rapid-api.service';
|
|
||||||
import { YahooFinanceService } from '../../services/data-provider/yahoo-finance/yahoo-finance.service';
|
|
||||||
import { ExchangeRateDataService } from '../../services/exchange-rate-data.service';
|
|
||||||
import { ImpersonationService } from '../../services/impersonation.service';
|
|
||||||
import { PrismaService } from '../../services/prisma.service';
|
|
||||||
import { RulesService } from '../../services/rules.service';
|
|
||||||
import { CacheService } from '../cache/cache.service';
|
import { CacheService } from '../cache/cache.service';
|
||||||
import { OrderService } from '../order/order.service';
|
import { OrderService } from '../order/order.service';
|
||||||
import { RedisCacheModule } from '../redis-cache/redis-cache.module';
|
import { RedisCacheModule } from '../redis-cache/redis-cache.module';
|
||||||
@ -27,6 +28,7 @@ import { PortfolioService } from './portfolio.service';
|
|||||||
DataGatheringService,
|
DataGatheringService,
|
||||||
DataProviderService,
|
DataProviderService,
|
||||||
ExchangeRateDataService,
|
ExchangeRateDataService,
|
||||||
|
GhostfolioScraperApiService,
|
||||||
ImpersonationService,
|
ImpersonationService,
|
||||||
OrderService,
|
OrderService,
|
||||||
PortfolioService,
|
PortfolioService,
|
||||||
|
@ -1,6 +1,17 @@
|
|||||||
|
import { Portfolio } from '@ghostfolio/api/models/portfolio';
|
||||||
|
import { DataProviderService } from '@ghostfolio/api/services/data-provider.service';
|
||||||
|
import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate-data.service';
|
||||||
|
import { ImpersonationService } from '@ghostfolio/api/services/impersonation.service';
|
||||||
|
import { IOrder } from '@ghostfolio/api/services/interfaces/interfaces';
|
||||||
|
import { RulesService } from '@ghostfolio/api/services/rules.service';
|
||||||
|
import {
|
||||||
|
PortfolioItem,
|
||||||
|
PortfolioOverview
|
||||||
|
} from '@ghostfolio/common/interfaces';
|
||||||
|
import { DateRange, RequestWithUser } from '@ghostfolio/common/types';
|
||||||
import { Inject, Injectable } from '@nestjs/common';
|
import { Inject, Injectable } from '@nestjs/common';
|
||||||
import { REQUEST } from '@nestjs/core';
|
import { REQUEST } from '@nestjs/core';
|
||||||
import { RequestWithUser } from 'apps/api/src/app/interfaces/request-with-user.type';
|
import { DataSource } from '@prisma/client';
|
||||||
import {
|
import {
|
||||||
add,
|
add,
|
||||||
format,
|
format,
|
||||||
@ -18,18 +29,9 @@ import {
|
|||||||
import { isEmpty } from 'lodash';
|
import { isEmpty } from 'lodash';
|
||||||
import * as roundTo from 'round-to';
|
import * as roundTo from 'round-to';
|
||||||
|
|
||||||
import { Portfolio } from '../../models/portfolio';
|
|
||||||
import { DataProviderService } from '../../services/data-provider.service';
|
|
||||||
import { ExchangeRateDataService } from '../../services/exchange-rate-data.service';
|
|
||||||
import { ImpersonationService } from '../../services/impersonation.service';
|
|
||||||
import { IOrder } from '../../services/interfaces/interfaces';
|
|
||||||
import { RulesService } from '../../services/rules.service';
|
|
||||||
import { OrderService } from '../order/order.service';
|
import { OrderService } from '../order/order.service';
|
||||||
import { RedisCacheService } from '../redis-cache/redis-cache.service';
|
import { RedisCacheService } from '../redis-cache/redis-cache.service';
|
||||||
import { UserService } from '../user/user.service';
|
import { UserService } from '../user/user.service';
|
||||||
import { DateRange } from './interfaces/date-range.type';
|
|
||||||
import { PortfolioItem } from './interfaces/portfolio-item.interface';
|
|
||||||
import { PortfolioOverview } from './interfaces/portfolio-overview.interface';
|
|
||||||
import {
|
import {
|
||||||
HistoricalDataItem,
|
HistoricalDataItem,
|
||||||
PortfolioPositionDetail
|
PortfolioPositionDetail
|
||||||
@ -48,53 +50,6 @@ export class PortfolioService {
|
|||||||
private readonly userService: UserService
|
private readonly userService: UserService
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
private convertDateRangeToDate(aDateRange: DateRange, aMinDate: Date) {
|
|
||||||
let currentDate = new Date();
|
|
||||||
|
|
||||||
const normalizedMinDate =
|
|
||||||
getDate(aMinDate) === 1
|
|
||||||
? aMinDate
|
|
||||||
: add(setDate(aMinDate, 1), { months: 1 });
|
|
||||||
|
|
||||||
const year = getYear(currentDate);
|
|
||||||
const month = getMonth(currentDate);
|
|
||||||
const day = getDate(currentDate);
|
|
||||||
|
|
||||||
currentDate = new Date(Date.UTC(year, month, day, 0));
|
|
||||||
|
|
||||||
switch (aDateRange) {
|
|
||||||
case '1d':
|
|
||||||
return sub(currentDate, {
|
|
||||||
days: 1
|
|
||||||
});
|
|
||||||
case 'ytd':
|
|
||||||
currentDate = setDate(currentDate, 1);
|
|
||||||
currentDate = setMonth(currentDate, 0);
|
|
||||||
return isAfter(currentDate, normalizedMinDate)
|
|
||||||
? currentDate
|
|
||||||
: undefined;
|
|
||||||
case '1y':
|
|
||||||
currentDate = setDate(currentDate, 1);
|
|
||||||
currentDate = sub(currentDate, {
|
|
||||||
years: 1
|
|
||||||
});
|
|
||||||
return isAfter(currentDate, normalizedMinDate)
|
|
||||||
? currentDate
|
|
||||||
: undefined;
|
|
||||||
case '5y':
|
|
||||||
currentDate = setDate(currentDate, 1);
|
|
||||||
currentDate = sub(currentDate, {
|
|
||||||
years: 5
|
|
||||||
});
|
|
||||||
return isAfter(currentDate, normalizedMinDate)
|
|
||||||
? currentDate
|
|
||||||
: undefined;
|
|
||||||
default:
|
|
||||||
// Gets handled as all data
|
|
||||||
return undefined;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public async createPortfolio(aUserId: string): Promise<Portfolio> {
|
public async createPortfolio(aUserId: string): Promise<Portfolio> {
|
||||||
let portfolio: Portfolio;
|
let portfolio: Portfolio;
|
||||||
let stringifiedPortfolio = await this.redisCacheService.get(
|
let stringifiedPortfolio = await this.redisCacheService.get(
|
||||||
@ -121,7 +76,8 @@ export class PortfolioService {
|
|||||||
// Get portfolio from database
|
// Get portfolio from database
|
||||||
const orders = await this.orderService.orders({
|
const orders = await this.orderService.orders({
|
||||||
include: {
|
include: {
|
||||||
Platform: true
|
Account: true,
|
||||||
|
SymbolProfile: true
|
||||||
},
|
},
|
||||||
orderBy: { date: 'asc' },
|
orderBy: { date: 'asc' },
|
||||||
where: { userId: aUserId }
|
where: { userId: aUserId }
|
||||||
@ -205,8 +161,8 @@ export class PortfolioService {
|
|||||||
return {
|
return {
|
||||||
date: format(parseISO(portfolioItem.date), 'yyyy-MM-dd'),
|
date: format(parseISO(portfolioItem.date), 'yyyy-MM-dd'),
|
||||||
grossPerformancePercent: portfolioItem.grossPerformancePercent,
|
grossPerformancePercent: portfolioItem.grossPerformancePercent,
|
||||||
marketPrice: portfolioItem.value || null,
|
marketPrice: portfolioItem.value ?? null,
|
||||||
value: portfolioItem.value || null
|
value: portfolioItem.value - portfolioItem.investment ?? null
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -257,9 +213,12 @@ export class PortfolioService {
|
|||||||
firstBuyDate,
|
firstBuyDate,
|
||||||
investment,
|
investment,
|
||||||
marketPrice,
|
marketPrice,
|
||||||
quantity
|
quantity,
|
||||||
|
transactionCount
|
||||||
} = portfolio.getPositions(new Date())[aSymbol];
|
} = portfolio.getPositions(new Date())[aSymbol];
|
||||||
|
|
||||||
|
const orders = portfolio.getOrders(aSymbol);
|
||||||
|
|
||||||
const historicalData = await this.dataProviderService.getHistorical(
|
const historicalData = await this.dataProviderService.getHistorical(
|
||||||
[aSymbol],
|
[aSymbol],
|
||||||
'day',
|
'day',
|
||||||
@ -272,6 +231,7 @@ export class PortfolioService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const historicalDataArray: HistoricalDataItem[] = [];
|
const historicalDataArray: HistoricalDataItem[] = [];
|
||||||
|
let currentAveragePrice: number;
|
||||||
let maxPrice = marketPrice;
|
let maxPrice = marketPrice;
|
||||||
let minPrice = marketPrice;
|
let minPrice = marketPrice;
|
||||||
|
|
||||||
@ -279,9 +239,24 @@ export class PortfolioService {
|
|||||||
for (const [date, { marketPrice }] of Object.entries(
|
for (const [date, { marketPrice }] of Object.entries(
|
||||||
historicalData[aSymbol]
|
historicalData[aSymbol]
|
||||||
)) {
|
)) {
|
||||||
|
const currentDate = parse(date, 'yyyy-MM-dd', new Date());
|
||||||
|
if (
|
||||||
|
isSameDay(currentDate, parseISO(orders[0]?.getDate())) ||
|
||||||
|
isAfter(currentDate, parseISO(orders[0]?.getDate()))
|
||||||
|
) {
|
||||||
|
// Get snapshot of first day of month
|
||||||
|
const snapshot = portfolio.get(setDate(currentDate, 1))[0]
|
||||||
|
.positions[aSymbol];
|
||||||
|
orders.shift();
|
||||||
|
|
||||||
|
if (snapshot?.averagePrice) {
|
||||||
|
currentAveragePrice = snapshot?.averagePrice;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
historicalDataArray.push({
|
historicalDataArray.push({
|
||||||
averagePrice,
|
|
||||||
date,
|
date,
|
||||||
|
averagePrice: currentAveragePrice,
|
||||||
value: marketPrice
|
value: marketPrice
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -310,6 +285,7 @@ export class PortfolioService {
|
|||||||
maxPrice,
|
maxPrice,
|
||||||
minPrice,
|
minPrice,
|
||||||
quantity,
|
quantity,
|
||||||
|
transactionCount,
|
||||||
grossPerformance: this.exchangeRateDataService.toCurrency(
|
grossPerformance: this.exchangeRateDataService.toCurrency(
|
||||||
marketPrice - averagePrice,
|
marketPrice - averagePrice,
|
||||||
currency,
|
currency,
|
||||||
@ -334,7 +310,7 @@ export class PortfolioService {
|
|||||||
|
|
||||||
if (isEmpty(historicalData)) {
|
if (isEmpty(historicalData)) {
|
||||||
historicalData = await this.dataProviderService.getHistoricalRaw(
|
historicalData = await this.dataProviderService.getHistoricalRaw(
|
||||||
[aSymbol],
|
[{ dataSource: DataSource.YAHOO, symbol: aSymbol }],
|
||||||
portfolio.getMinDate(),
|
portfolio.getMinDate(),
|
||||||
new Date()
|
new Date()
|
||||||
);
|
);
|
||||||
@ -363,7 +339,8 @@ export class PortfolioService {
|
|||||||
maxPrice: undefined,
|
maxPrice: undefined,
|
||||||
minPrice: undefined,
|
minPrice: undefined,
|
||||||
quantity: undefined,
|
quantity: undefined,
|
||||||
symbol: aSymbol
|
symbol: aSymbol,
|
||||||
|
transactionCount: undefined
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -379,7 +356,55 @@ export class PortfolioService {
|
|||||||
maxPrice: undefined,
|
maxPrice: undefined,
|
||||||
minPrice: undefined,
|
minPrice: undefined,
|
||||||
quantity: undefined,
|
quantity: undefined,
|
||||||
symbol: aSymbol
|
symbol: aSymbol,
|
||||||
|
transactionCount: undefined
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private convertDateRangeToDate(aDateRange: DateRange, aMinDate: Date) {
|
||||||
|
let currentDate = new Date();
|
||||||
|
|
||||||
|
const normalizedMinDate =
|
||||||
|
getDate(aMinDate) === 1
|
||||||
|
? aMinDate
|
||||||
|
: add(setDate(aMinDate, 1), { months: 1 });
|
||||||
|
|
||||||
|
const year = getYear(currentDate);
|
||||||
|
const month = getMonth(currentDate);
|
||||||
|
const day = getDate(currentDate);
|
||||||
|
|
||||||
|
currentDate = new Date(Date.UTC(year, month, day, 0));
|
||||||
|
|
||||||
|
switch (aDateRange) {
|
||||||
|
case '1d':
|
||||||
|
return sub(currentDate, {
|
||||||
|
days: 1
|
||||||
|
});
|
||||||
|
case 'ytd':
|
||||||
|
currentDate = setDate(currentDate, 1);
|
||||||
|
currentDate = setMonth(currentDate, 0);
|
||||||
|
return isAfter(currentDate, normalizedMinDate)
|
||||||
|
? currentDate
|
||||||
|
: undefined;
|
||||||
|
case '1y':
|
||||||
|
currentDate = setDate(currentDate, 1);
|
||||||
|
currentDate = sub(currentDate, {
|
||||||
|
years: 1
|
||||||
|
});
|
||||||
|
return isAfter(currentDate, normalizedMinDate)
|
||||||
|
? currentDate
|
||||||
|
: undefined;
|
||||||
|
case '5y':
|
||||||
|
currentDate = setDate(currentDate, 1);
|
||||||
|
currentDate = sub(currentDate, {
|
||||||
|
years: 5
|
||||||
|
});
|
||||||
|
return isAfter(currentDate, normalizedMinDate)
|
||||||
|
? currentDate
|
||||||
|
: undefined;
|
||||||
|
default:
|
||||||
|
// Gets handled as all data
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration.service';
|
||||||
import { CacheModule, Module } from '@nestjs/common';
|
import { CacheModule, Module } from '@nestjs/common';
|
||||||
import { ConfigModule, ConfigService } from '@nestjs/config';
|
import { ConfigModule, ConfigService } from '@nestjs/config';
|
||||||
import * as redisStore from 'cache-manager-redis-store';
|
import * as redisStore from 'cache-manager-redis-store';
|
||||||
|
|
||||||
import { ConfigurationService } from '../../services/configuration.service';
|
|
||||||
import { RedisCacheService } from './redis-cache.service';
|
import { RedisCacheService } from './redis-cache.service';
|
||||||
|
|
||||||
@Module({
|
@Module({
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration.service';
|
||||||
import { CACHE_MANAGER, Inject, Injectable } from '@nestjs/common';
|
import { CACHE_MANAGER, Inject, Injectable } from '@nestjs/common';
|
||||||
import { Cache } from 'cache-manager';
|
import { Cache } from 'cache-manager';
|
||||||
|
|
||||||
import { ConfigurationService } from '../../services/configuration.service';
|
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class RedisCacheService {
|
export class RedisCacheService {
|
||||||
public constructor(
|
public constructor(
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
|
import { DataSource } from '@prisma/client';
|
||||||
|
|
||||||
export interface LookupItem {
|
export interface LookupItem {
|
||||||
|
dataSource: DataSource;
|
||||||
name: string;
|
name: string;
|
||||||
symbol: string;
|
symbol: string;
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import { Currency } from '@prisma/client';
|
import { Currency, DataSource } from '@prisma/client';
|
||||||
|
|
||||||
export interface SymbolItem {
|
export interface SymbolItem {
|
||||||
currency: Currency;
|
currency: Currency;
|
||||||
|
dataSource: DataSource;
|
||||||
marketPrice: number;
|
marketPrice: number;
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
import { RequestWithUser } from '@ghostfolio/common/types';
|
||||||
import {
|
import {
|
||||||
Controller,
|
Controller,
|
||||||
Get,
|
Get,
|
||||||
@ -9,7 +10,6 @@ import {
|
|||||||
} from '@nestjs/common';
|
} from '@nestjs/common';
|
||||||
import { REQUEST } from '@nestjs/core';
|
import { REQUEST } from '@nestjs/core';
|
||||||
import { AuthGuard } from '@nestjs/passport';
|
import { AuthGuard } from '@nestjs/passport';
|
||||||
import { RequestWithUser } from 'apps/api/src/app/interfaces/request-with-user.type';
|
|
||||||
import { StatusCodes, getReasonPhrase } from 'http-status-codes';
|
import { StatusCodes, getReasonPhrase } from 'http-status-codes';
|
||||||
|
|
||||||
import { LookupItem } from './interfaces/lookup-item.interface';
|
import { LookupItem } from './interfaces/lookup-item.interface';
|
||||||
@ -28,9 +28,12 @@ export class SymbolController {
|
|||||||
*/
|
*/
|
||||||
@Get('lookup')
|
@Get('lookup')
|
||||||
@UseGuards(AuthGuard('jwt'))
|
@UseGuards(AuthGuard('jwt'))
|
||||||
public async lookupSymbol(@Query() { query }): Promise<LookupItem[]> {
|
public async lookupSymbol(
|
||||||
|
@Query() { query = '' }
|
||||||
|
): Promise<{ items: LookupItem[] }> {
|
||||||
try {
|
try {
|
||||||
return this.symbolService.lookup(query);
|
const encodedQuery = encodeURIComponent(query.toLowerCase());
|
||||||
|
return this.symbolService.lookup(encodedQuery);
|
||||||
} catch {
|
} catch {
|
||||||
throw new HttpException(
|
throw new HttpException(
|
||||||
getReasonPhrase(StatusCodes.INTERNAL_SERVER_ERROR),
|
getReasonPhrase(StatusCodes.INTERNAL_SERVER_ERROR),
|
||||||
|
@ -1,11 +1,12 @@
|
|||||||
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration.service';
|
||||||
|
import { DataProviderService } from '@ghostfolio/api/services/data-provider.service';
|
||||||
|
import { AlphaVantageService } from '@ghostfolio/api/services/data-provider/alpha-vantage/alpha-vantage.service';
|
||||||
|
import { GhostfolioScraperApiService } from '@ghostfolio/api/services/data-provider/ghostfolio-scraper-api/ghostfolio-scraper-api.service';
|
||||||
|
import { RakutenRapidApiService } from '@ghostfolio/api/services/data-provider/rakuten-rapid-api/rakuten-rapid-api.service';
|
||||||
|
import { YahooFinanceService } from '@ghostfolio/api/services/data-provider/yahoo-finance/yahoo-finance.service';
|
||||||
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service';
|
||||||
import { Module } from '@nestjs/common';
|
import { Module } from '@nestjs/common';
|
||||||
|
|
||||||
import { ConfigurationService } from '../../services/configuration.service';
|
|
||||||
import { DataProviderService } from '../../services/data-provider.service';
|
|
||||||
import { AlphaVantageService } from '../../services/data-provider/alpha-vantage/alpha-vantage.service';
|
|
||||||
import { RakutenRapidApiService } from '../../services/data-provider/rakuten-rapid-api/rakuten-rapid-api.service';
|
|
||||||
import { YahooFinanceService } from '../../services/data-provider/yahoo-finance/yahoo-finance.service';
|
|
||||||
import { PrismaService } from '../../services/prisma.service';
|
|
||||||
import { SymbolController } from './symbol.controller';
|
import { SymbolController } from './symbol.controller';
|
||||||
import { SymbolService } from './symbol.service';
|
import { SymbolService } from './symbol.service';
|
||||||
|
|
||||||
@ -16,6 +17,7 @@ import { SymbolService } from './symbol.service';
|
|||||||
AlphaVantageService,
|
AlphaVantageService,
|
||||||
ConfigurationService,
|
ConfigurationService,
|
||||||
DataProviderService,
|
DataProviderService,
|
||||||
|
GhostfolioScraperApiService,
|
||||||
PrismaService,
|
PrismaService,
|
||||||
RakutenRapidApiService,
|
RakutenRapidApiService,
|
||||||
SymbolService,
|
SymbolService,
|
||||||
|
@ -1,64 +1,54 @@
|
|||||||
|
import { DataProviderService } from '@ghostfolio/api/services/data-provider.service';
|
||||||
|
import { GhostfolioScraperApiService } from '@ghostfolio/api/services/data-provider/ghostfolio-scraper-api/ghostfolio-scraper-api.service';
|
||||||
|
import { convertFromYahooSymbol } from '@ghostfolio/api/services/data-provider/yahoo-finance/yahoo-finance.service';
|
||||||
import { Injectable } from '@nestjs/common';
|
import { Injectable } from '@nestjs/common';
|
||||||
import { Currency } from '@prisma/client';
|
import { Currency, DataSource } from '@prisma/client';
|
||||||
import { convertFromYahooSymbol } from 'apps/api/src/services/data-provider/yahoo-finance/yahoo-finance.service';
|
|
||||||
import * as bent from 'bent';
|
|
||||||
|
|
||||||
import { DataProviderService } from '../../services/data-provider.service';
|
|
||||||
import { LookupItem } from './interfaces/lookup-item.interface';
|
import { LookupItem } from './interfaces/lookup-item.interface';
|
||||||
import { SymbolItem } from './interfaces/symbol-item.interface';
|
import { SymbolItem } from './interfaces/symbol-item.interface';
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class SymbolService {
|
export class SymbolService {
|
||||||
public constructor(
|
public constructor(
|
||||||
private readonly dataProviderService: DataProviderService
|
private readonly dataProviderService: DataProviderService,
|
||||||
|
private readonly ghostfolioScraperApiService: GhostfolioScraperApiService
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
public async get(aSymbol: string): Promise<SymbolItem> {
|
public async get(aSymbol: string): Promise<SymbolItem> {
|
||||||
const response = await this.dataProviderService.get([aSymbol]);
|
const response = await this.dataProviderService.get([aSymbol]);
|
||||||
const { currency, marketPrice } = response[aSymbol];
|
const { currency, dataSource, marketPrice } = response[aSymbol];
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
dataSource,
|
||||||
marketPrice,
|
marketPrice,
|
||||||
currency: <Currency>(<unknown>currency)
|
currency: <Currency>(<unknown>currency)
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
public async lookup(aQuery: string): Promise<LookupItem[]> {
|
public async lookup(aQuery: string): Promise<{ items: LookupItem[] }> {
|
||||||
const get = bent(
|
const results: { items: LookupItem[] } = { items: [] };
|
||||||
`https://query1.finance.yahoo.com/v1/finance/search?q=${aQuery}&lang=en-US®ion=US"esCount=8&newsCount=0&enableFuzzyQuery=false"esQueryId=tss_match_phrase_query&multiQuoteQueryId=multi_quote_single_token_query&newsQueryId=news_cie_vespa&enableCb=true&enableNavLinks=false&enableEnhancedTrivialQuery=true`,
|
|
||||||
'GET',
|
|
||||||
'json',
|
|
||||||
200
|
|
||||||
);
|
|
||||||
|
|
||||||
try {
|
if (!aQuery) {
|
||||||
const { quotes } = await get();
|
return results;
|
||||||
|
|
||||||
return quotes
|
|
||||||
.filter(({ isYahooFinance }) => {
|
|
||||||
return isYahooFinance;
|
|
||||||
})
|
|
||||||
.filter(({ quoteType }) => {
|
|
||||||
return (
|
|
||||||
quoteType === 'CRYPTOCURRENCY' ||
|
|
||||||
quoteType === 'EQUITY' ||
|
|
||||||
quoteType === 'ETF'
|
|
||||||
);
|
|
||||||
})
|
|
||||||
.filter(({ quoteType, symbol }) => {
|
|
||||||
if (quoteType === 'CRYPTOCURRENCY') {
|
|
||||||
// Only allow cryptocurrencies in USD
|
|
||||||
return symbol.includes('USD');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
try {
|
||||||
})
|
const { items } = await this.dataProviderService.search(aQuery);
|
||||||
.map(({ longname, shortname, symbol }) => {
|
results.items = items;
|
||||||
return {
|
|
||||||
name: longname || shortname,
|
// Add custom symbols
|
||||||
symbol: convertFromYahooSymbol(symbol)
|
const scraperConfigurations = await this.ghostfolioScraperApiService.getScraperConfigurations();
|
||||||
};
|
scraperConfigurations.forEach((scraperConfiguration) => {
|
||||||
|
if (scraperConfiguration.name.toLowerCase().startsWith(aQuery)) {
|
||||||
|
results.items.push({
|
||||||
|
dataSource: DataSource.GHOSTFOLIO,
|
||||||
|
name: scraperConfiguration.name,
|
||||||
|
symbol: scraperConfiguration.symbol
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return results;
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(error);
|
console.error(error);
|
||||||
|
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
import { Currency } from '@prisma/client';
|
|
||||||
|
|
||||||
import { Access } from './access.interface';
|
|
||||||
|
|
||||||
export interface User {
|
|
||||||
access: Access[];
|
|
||||||
alias?: string;
|
|
||||||
id: string;
|
|
||||||
permissions: string[];
|
|
||||||
settings: UserSettings;
|
|
||||||
subscription: {
|
|
||||||
expiresAt: Date;
|
|
||||||
type: 'Trial';
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface UserSettings {
|
|
||||||
baseCurrency: Currency;
|
|
||||||
locale: string;
|
|
||||||
}
|
|
@ -1,7 +1,10 @@
|
|||||||
import { Currency } from '@prisma/client';
|
import { Currency, ViewMode } from '@prisma/client';
|
||||||
import { IsString } from 'class-validator';
|
import { IsString } from 'class-validator';
|
||||||
|
|
||||||
export class UpdateUserSettingsDto {
|
export class UpdateUserSettingsDto {
|
||||||
@IsString()
|
@IsString()
|
||||||
currency: Currency;
|
baseCurrency: Currency;
|
||||||
|
|
||||||
|
@IsString()
|
||||||
|
viewMode: ViewMode;
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,14 @@
|
|||||||
|
import { User } from '@ghostfolio/common/interfaces';
|
||||||
|
import {
|
||||||
|
getPermissions,
|
||||||
|
hasPermission,
|
||||||
|
permissions
|
||||||
|
} from '@ghostfolio/common/permissions';
|
||||||
|
import { RequestWithUser } from '@ghostfolio/common/types';
|
||||||
import {
|
import {
|
||||||
Body,
|
Body,
|
||||||
Controller,
|
Controller,
|
||||||
|
Delete,
|
||||||
Get,
|
Get,
|
||||||
HttpException,
|
HttpException,
|
||||||
Inject,
|
Inject,
|
||||||
@ -13,12 +21,10 @@ import { REQUEST } from '@nestjs/core';
|
|||||||
import { JwtService } from '@nestjs/jwt';
|
import { JwtService } from '@nestjs/jwt';
|
||||||
import { AuthGuard } from '@nestjs/passport';
|
import { AuthGuard } from '@nestjs/passport';
|
||||||
import { Provider } from '@prisma/client';
|
import { Provider } from '@prisma/client';
|
||||||
import { RequestWithUser } from 'apps/api/src/app/interfaces/request-with-user.type';
|
import { User as UserModel } from '@prisma/client';
|
||||||
import { StatusCodes, getReasonPhrase } from 'http-status-codes';
|
import { StatusCodes, getReasonPhrase } from 'http-status-codes';
|
||||||
import { getPermissions, hasPermission, permissions } from 'libs/helper/src';
|
|
||||||
|
|
||||||
import { UserItem } from './interfaces/user-item.interface';
|
import { UserItem } from './interfaces/user-item.interface';
|
||||||
import { User } from './interfaces/user.interface';
|
|
||||||
import { UpdateUserSettingsDto } from './update-user-settings.dto';
|
import { UpdateUserSettingsDto } from './update-user-settings.dto';
|
||||||
import { UserService } from './user.service';
|
import { UserService } from './user.service';
|
||||||
|
|
||||||
@ -30,6 +36,27 @@ export class UserController {
|
|||||||
private readonly userService: UserService
|
private readonly userService: UserService
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
|
@Delete(':id')
|
||||||
|
@UseGuards(AuthGuard('jwt'))
|
||||||
|
public async deleteUser(@Param('id') id: string): Promise<UserModel> {
|
||||||
|
if (
|
||||||
|
!hasPermission(
|
||||||
|
getPermissions(this.request.user.role),
|
||||||
|
permissions.deleteUser
|
||||||
|
) ||
|
||||||
|
id === this.request.user.id
|
||||||
|
) {
|
||||||
|
throw new HttpException(
|
||||||
|
getReasonPhrase(StatusCodes.FORBIDDEN),
|
||||||
|
StatusCodes.FORBIDDEN
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.userService.deleteUser({
|
||||||
|
id
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
@Get()
|
@Get()
|
||||||
@UseGuards(AuthGuard('jwt'))
|
@UseGuards(AuthGuard('jwt'))
|
||||||
public async getUser(@Param('id') id: string): Promise<User> {
|
public async getUser(@Param('id') id: string): Promise<User> {
|
||||||
@ -66,8 +93,9 @@ export class UserController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return await this.userService.updateUserSettings({
|
return await this.userService.updateUserSettings({
|
||||||
currency: data.currency,
|
currency: data.baseCurrency,
|
||||||
userId: this.request.user.id
|
userId: this.request.user.id,
|
||||||
|
viewMode: data.viewMode
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration.service';
|
||||||
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service';
|
||||||
import { Module } from '@nestjs/common';
|
import { Module } from '@nestjs/common';
|
||||||
import { JwtModule } from '@nestjs/jwt';
|
import { JwtModule } from '@nestjs/jwt';
|
||||||
|
|
||||||
import { ConfigurationService } from '../../services/configuration.service';
|
|
||||||
import { PrismaService } from '../../services/prisma.service';
|
|
||||||
import { UserController } from './user.controller';
|
import { UserController } from './user.controller';
|
||||||
import { UserService } from './user.service';
|
import { UserService } from './user.service';
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration.service';
|
||||||
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service';
|
||||||
|
import { locale } from '@ghostfolio/common/config';
|
||||||
|
import { resetHours } from '@ghostfolio/common/helper';
|
||||||
|
import { User as IUser, UserWithSettings } from '@ghostfolio/common/interfaces';
|
||||||
|
import { getPermissions, permissions } from '@ghostfolio/common/permissions';
|
||||||
|
import { SubscriptionType } from '@ghostfolio/common/types/subscription.type';
|
||||||
import { Injectable } from '@nestjs/common';
|
import { Injectable } from '@nestjs/common';
|
||||||
import { Currency, Prisma, Provider, User } from '@prisma/client';
|
import { Currency, Prisma, Provider, User, ViewMode } from '@prisma/client';
|
||||||
import { add } from 'date-fns';
|
import { add, isBefore } from 'date-fns';
|
||||||
import { locale, permissions, resetHours } from 'libs/helper/src';
|
|
||||||
import { getPermissions } from 'libs/helper/src';
|
|
||||||
|
|
||||||
import { ConfigurationService } from '../../services/configuration.service';
|
|
||||||
import { PrismaService } from '../../services/prisma.service';
|
|
||||||
import { UserWithSettings } from '../interfaces/user-with-settings';
|
|
||||||
import { User as IUser } from './interfaces/user.interface';
|
|
||||||
|
|
||||||
const crypto = require('crypto');
|
const crypto = require('crypto');
|
||||||
|
|
||||||
@ -21,10 +21,12 @@ export class UserService {
|
|||||||
) {}
|
) {}
|
||||||
|
|
||||||
public async getUser({
|
public async getUser({
|
||||||
|
Account,
|
||||||
alias,
|
alias,
|
||||||
id,
|
id,
|
||||||
role,
|
role,
|
||||||
Settings
|
Settings,
|
||||||
|
subscription
|
||||||
}: UserWithSettings): Promise<IUser> {
|
}: UserWithSettings): Promise<IUser> {
|
||||||
const access = await this.prisma.access.findMany({
|
const access = await this.prisma.access.findMany({
|
||||||
include: {
|
include: {
|
||||||
@ -40,27 +42,22 @@ export class UserService {
|
|||||||
currentPermissions.push(permissions.accessFearAndGreedIndex);
|
currentPermissions.push(permissions.accessFearAndGreedIndex);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.configurationService.get('ENABLE_FEATURE_SOCIAL_LOGIN')) {
|
|
||||||
currentPermissions.push(permissions.useSocialLogin);
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
alias,
|
alias,
|
||||||
id,
|
id,
|
||||||
|
subscription,
|
||||||
access: access.map((accessItem) => {
|
access: access.map((accessItem) => {
|
||||||
return {
|
return {
|
||||||
alias: accessItem.User.alias,
|
alias: accessItem.User.alias,
|
||||||
id: accessItem.id
|
id: accessItem.id
|
||||||
};
|
};
|
||||||
}),
|
}),
|
||||||
|
accounts: Account,
|
||||||
permissions: currentPermissions,
|
permissions: currentPermissions,
|
||||||
settings: {
|
settings: {
|
||||||
baseCurrency: Settings?.currency || UserService.DEFAULT_CURRENCY,
|
locale,
|
||||||
locale
|
baseCurrency: Settings?.currency ?? UserService.DEFAULT_CURRENCY,
|
||||||
},
|
viewMode: Settings?.viewMode ?? ViewMode.DEFAULT
|
||||||
subscription: {
|
|
||||||
expiresAt: resetHours(add(new Date(), { days: 7 })),
|
|
||||||
type: 'Trial'
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@ -68,25 +65,49 @@ export class UserService {
|
|||||||
public async user(
|
public async user(
|
||||||
userWhereUniqueInput: Prisma.UserWhereUniqueInput
|
userWhereUniqueInput: Prisma.UserWhereUniqueInput
|
||||||
): Promise<UserWithSettings | null> {
|
): Promise<UserWithSettings | null> {
|
||||||
const user = await this.prisma.user.findUnique({
|
const userFromDatabase = await this.prisma.user.findUnique({
|
||||||
include: { Settings: true },
|
include: { Account: true, Settings: true, Subscription: true },
|
||||||
where: userWhereUniqueInput
|
where: userWhereUniqueInput
|
||||||
});
|
});
|
||||||
|
|
||||||
if (user?.Settings) {
|
const user: UserWithSettings = userFromDatabase;
|
||||||
if (!user.Settings.currency) {
|
|
||||||
|
if (userFromDatabase?.Settings) {
|
||||||
|
if (!userFromDatabase.Settings.currency) {
|
||||||
// Set default currency if needed
|
// Set default currency if needed
|
||||||
user.Settings.currency = UserService.DEFAULT_CURRENCY;
|
userFromDatabase.Settings.currency = UserService.DEFAULT_CURRENCY;
|
||||||
}
|
}
|
||||||
} else if (user) {
|
} else if (userFromDatabase) {
|
||||||
// Set default settings if needed
|
// Set default settings if needed
|
||||||
user.Settings = {
|
userFromDatabase.Settings = {
|
||||||
currency: UserService.DEFAULT_CURRENCY,
|
currency: UserService.DEFAULT_CURRENCY,
|
||||||
updatedAt: new Date(),
|
updatedAt: new Date(),
|
||||||
userId: user?.id
|
userId: userFromDatabase?.id,
|
||||||
|
viewMode: ViewMode.DEFAULT
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (this.configurationService.get('ENABLE_FEATURE_SUBSCRIPTION')) {
|
||||||
|
if (userFromDatabase?.Subscription?.length > 0) {
|
||||||
|
const latestSubscription = userFromDatabase.Subscription.reduce(
|
||||||
|
(a, b) => {
|
||||||
|
return new Date(a.expiresAt) > new Date(b.expiresAt) ? a : b;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
user.subscription = {
|
||||||
|
expiresAt: latestSubscription.expiresAt,
|
||||||
|
type: isBefore(new Date(), latestSubscription.expiresAt)
|
||||||
|
? SubscriptionType.Premium
|
||||||
|
: SubscriptionType.Basic
|
||||||
|
};
|
||||||
|
} else {
|
||||||
|
user.subscription = {
|
||||||
|
type: SubscriptionType.Basic
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return user;
|
return user;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -116,7 +137,15 @@ export class UserService {
|
|||||||
|
|
||||||
public async createUser(data?: Prisma.UserCreateInput): Promise<User> {
|
public async createUser(data?: Prisma.UserCreateInput): Promise<User> {
|
||||||
let user = await this.prisma.user.create({
|
let user = await this.prisma.user.create({
|
||||||
data
|
data: {
|
||||||
|
...data,
|
||||||
|
Account: {
|
||||||
|
create: {
|
||||||
|
isDefault: true,
|
||||||
|
name: 'Default Account'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
if (data.provider === Provider.ANONYMOUS) {
|
if (data.provider === Provider.ANONYMOUS) {
|
||||||
@ -153,11 +182,64 @@ export class UserService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public async deleteUser(where: Prisma.UserWhereUniqueInput): Promise<User> {
|
public async deleteUser(where: Prisma.UserWhereUniqueInput): Promise<User> {
|
||||||
|
await this.prisma.access.deleteMany({
|
||||||
|
where: { OR: [{ granteeUserId: where.id }, { userId: where.id }] }
|
||||||
|
});
|
||||||
|
|
||||||
|
await this.prisma.account.deleteMany({
|
||||||
|
where: { userId: where.id }
|
||||||
|
});
|
||||||
|
|
||||||
|
await this.prisma.analytics.delete({
|
||||||
|
where: { userId: where.id }
|
||||||
|
});
|
||||||
|
|
||||||
|
await this.prisma.order.deleteMany({
|
||||||
|
where: { userId: where.id }
|
||||||
|
});
|
||||||
|
|
||||||
|
try {
|
||||||
|
await this.prisma.settings.delete({
|
||||||
|
where: { userId: where.id }
|
||||||
|
});
|
||||||
|
} catch {}
|
||||||
|
|
||||||
return this.prisma.user.delete({
|
return this.prisma.user.delete({
|
||||||
where
|
where
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async updateUserSettings({
|
||||||
|
currency,
|
||||||
|
userId,
|
||||||
|
viewMode
|
||||||
|
}: {
|
||||||
|
currency?: Currency;
|
||||||
|
userId: string;
|
||||||
|
viewMode?: ViewMode;
|
||||||
|
}) {
|
||||||
|
await this.prisma.settings.upsert({
|
||||||
|
create: {
|
||||||
|
currency,
|
||||||
|
User: {
|
||||||
|
connect: {
|
||||||
|
id: userId
|
||||||
|
}
|
||||||
|
},
|
||||||
|
viewMode
|
||||||
|
},
|
||||||
|
update: {
|
||||||
|
currency,
|
||||||
|
viewMode
|
||||||
|
},
|
||||||
|
where: {
|
||||||
|
userId: userId
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
private getRandomString(length: number) {
|
private getRandomString(length: number) {
|
||||||
const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
|
const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
|
||||||
const result = [];
|
const result = [];
|
||||||
@ -169,31 +251,4 @@ export class UserService {
|
|||||||
}
|
}
|
||||||
return result.join('');
|
return result.join('');
|
||||||
}
|
}
|
||||||
|
|
||||||
public async updateUserSettings({
|
|
||||||
currency,
|
|
||||||
userId
|
|
||||||
}: {
|
|
||||||
currency: Currency;
|
|
||||||
userId: string;
|
|
||||||
}) {
|
|
||||||
await this.prisma.settings.upsert({
|
|
||||||
create: {
|
|
||||||
currency,
|
|
||||||
User: {
|
|
||||||
connect: {
|
|
||||||
id: userId
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
update: {
|
|
||||||
currency
|
|
||||||
},
|
|
||||||
where: {
|
|
||||||
userId: userId
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
import {
|
import { PortfolioItem, Position } from '@ghostfolio/common/interfaces';
|
||||||
PortfolioItem,
|
|
||||||
Position
|
|
||||||
} from 'apps/api/src/app/portfolio/interfaces/portfolio-item.interface';
|
|
||||||
|
|
||||||
import { Order } from '../order';
|
import { Order } from '../order';
|
||||||
|
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import { PortfolioPosition } from '../../app/portfolio/interfaces/portfolio-position.interface';
|
import { PortfolioPosition } from '@ghostfolio/common/interfaces';
|
||||||
|
|
||||||
import { EvaluationResult } from './evaluation-result.interface';
|
import { EvaluationResult } from './evaluation-result.interface';
|
||||||
|
|
||||||
export interface RuleInterface {
|
export interface RuleInterface {
|
||||||
|
@ -1,35 +1,41 @@
|
|||||||
import { Currency, Platform } from '@prisma/client';
|
import { Account, Currency, Platform, SymbolProfile } from '@prisma/client';
|
||||||
import { v4 as uuidv4 } from 'uuid';
|
import { v4 as uuidv4 } from 'uuid';
|
||||||
|
|
||||||
import { IOrder } from '../services/interfaces/interfaces';
|
import { IOrder } from '../services/interfaces/interfaces';
|
||||||
import { OrderType } from './order-type';
|
import { OrderType } from './order-type';
|
||||||
|
|
||||||
export class Order {
|
export class Order {
|
||||||
|
private account: Account;
|
||||||
private currency: Currency;
|
private currency: Currency;
|
||||||
private fee: number;
|
private fee: number;
|
||||||
private date: string;
|
private date: string;
|
||||||
private id: string;
|
private id: string;
|
||||||
private quantity: number;
|
private quantity: number;
|
||||||
private platform: Platform;
|
|
||||||
private symbol: string;
|
private symbol: string;
|
||||||
|
private symbolProfile: SymbolProfile;
|
||||||
private total: number;
|
private total: number;
|
||||||
private type: OrderType;
|
private type: OrderType;
|
||||||
private unitPrice: number;
|
private unitPrice: number;
|
||||||
|
|
||||||
public constructor(data: IOrder) {
|
public constructor(data: IOrder) {
|
||||||
|
this.account = data.account;
|
||||||
this.currency = data.currency;
|
this.currency = data.currency;
|
||||||
this.fee = data.fee;
|
this.fee = data.fee;
|
||||||
this.date = data.date;
|
this.date = data.date;
|
||||||
this.id = data.id || uuidv4();
|
this.id = data.id || uuidv4();
|
||||||
this.platform = data.platform;
|
|
||||||
this.quantity = data.quantity;
|
this.quantity = data.quantity;
|
||||||
this.symbol = data.symbol;
|
this.symbol = data.symbol;
|
||||||
|
this.symbolProfile = data.symbolProfile;
|
||||||
this.type = data.type;
|
this.type = data.type;
|
||||||
this.unitPrice = data.unitPrice;
|
this.unitPrice = data.unitPrice;
|
||||||
|
|
||||||
this.total = this.quantity * data.unitPrice;
|
this.total = this.quantity * data.unitPrice;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public getAccount() {
|
||||||
|
return this.account;
|
||||||
|
}
|
||||||
|
|
||||||
public getCurrency() {
|
public getCurrency() {
|
||||||
return this.currency;
|
return this.currency;
|
||||||
}
|
}
|
||||||
@ -46,10 +52,6 @@ export class Order {
|
|||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public getPlatform() {
|
|
||||||
return this.platform;
|
|
||||||
}
|
|
||||||
|
|
||||||
public getQuantity() {
|
public getQuantity() {
|
||||||
return this.quantity;
|
return this.quantity;
|
||||||
}
|
}
|
||||||
@ -58,6 +60,10 @@ export class Order {
|
|||||||
return this.symbol;
|
return this.symbol;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getSymbolProfile() {
|
||||||
|
return this.symbolProfile;
|
||||||
|
}
|
||||||
|
|
||||||
public getTotal() {
|
public getTotal() {
|
||||||
return this.total;
|
return this.total;
|
||||||
}
|
}
|
||||||
|
@ -1,57 +1,102 @@
|
|||||||
import { Test } from '@nestjs/testing';
|
import { UNKNOWN_KEY, baseCurrency } from '@ghostfolio/common/config';
|
||||||
import { Currency, Role, Type } from '@prisma/client';
|
import { getUtc, getYesterday } from '@ghostfolio/common/helper';
|
||||||
import { baseCurrency } from 'libs/helper/src';
|
import {
|
||||||
import { getYesterday } from 'libs/helper/src';
|
AccountType,
|
||||||
import { getUtc } from 'libs/helper/src';
|
Currency,
|
||||||
|
DataSource,
|
||||||
|
Role,
|
||||||
|
Type,
|
||||||
|
ViewMode
|
||||||
|
} from '@prisma/client';
|
||||||
|
import { format } from 'date-fns';
|
||||||
|
|
||||||
import { ConfigurationService } from '../services/configuration.service';
|
|
||||||
import { DataProviderService } from '../services/data-provider.service';
|
import { DataProviderService } from '../services/data-provider.service';
|
||||||
import { AlphaVantageService } from '../services/data-provider/alpha-vantage/alpha-vantage.service';
|
|
||||||
import { RakutenRapidApiService } from '../services/data-provider/rakuten-rapid-api/rakuten-rapid-api.service';
|
|
||||||
import { YahooFinanceService } from '../services/data-provider/yahoo-finance/yahoo-finance.service';
|
|
||||||
import { ExchangeRateDataService } from '../services/exchange-rate-data.service';
|
import { ExchangeRateDataService } from '../services/exchange-rate-data.service';
|
||||||
import { PrismaService } from '../services/prisma.service';
|
import { MarketState } from '../services/interfaces/interfaces';
|
||||||
import { RulesService } from '../services/rules.service';
|
import { RulesService } from '../services/rules.service';
|
||||||
import { Portfolio } from './portfolio';
|
import { Portfolio } from './portfolio';
|
||||||
|
|
||||||
|
jest.mock('../services/data-provider.service', () => {
|
||||||
|
return {
|
||||||
|
DataProviderService: jest.fn().mockImplementation(() => {
|
||||||
|
const today = format(new Date(), 'yyyy-MM-dd');
|
||||||
|
const yesterday = format(getYesterday(), 'yyyy-MM-dd');
|
||||||
|
|
||||||
|
return {
|
||||||
|
get: () => {
|
||||||
|
return Promise.resolve({
|
||||||
|
BTCUSD: {
|
||||||
|
currency: Currency.USD,
|
||||||
|
dataSource: DataSource.YAHOO,
|
||||||
|
exchange: UNKNOWN_KEY,
|
||||||
|
marketPrice: 57973.008,
|
||||||
|
marketState: MarketState.open,
|
||||||
|
name: 'Bitcoin USD',
|
||||||
|
type: 'Cryptocurrency'
|
||||||
|
},
|
||||||
|
ETHUSD: {
|
||||||
|
currency: Currency.USD,
|
||||||
|
dataSource: DataSource.YAHOO,
|
||||||
|
exchange: UNKNOWN_KEY,
|
||||||
|
marketPrice: 3915.337,
|
||||||
|
marketState: MarketState.open,
|
||||||
|
name: 'Ethereum USD',
|
||||||
|
type: 'Cryptocurrency'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
getHistorical: () => {
|
||||||
|
return Promise.resolve({
|
||||||
|
BTCUSD: {
|
||||||
|
[yesterday]: 56710.122,
|
||||||
|
[today]: 57973.008
|
||||||
|
},
|
||||||
|
ETHUSD: {
|
||||||
|
[yesterday]: 3641.984,
|
||||||
|
[today]: 3915.337
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
})
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
jest.mock('../services/exchange-rate-data.service', () => {
|
||||||
|
return {
|
||||||
|
ExchangeRateDataService: jest.fn().mockImplementation(() => {
|
||||||
|
return {
|
||||||
|
initialize: () => Promise.resolve(),
|
||||||
|
toCurrency: (value: number) => value
|
||||||
|
};
|
||||||
|
})
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
jest.mock('../services/data-provider.service');
|
||||||
|
jest.mock('../services/exchange-rate-data.service');
|
||||||
|
jest.mock('../services/rules.service');
|
||||||
|
|
||||||
|
const DEFAULT_ACCOUNT_ID = '693a834b-eb89-42c9-ae47-35196c25d269';
|
||||||
|
const USER_ID = 'ca6ce867-5d31-495a-bce9-5942bbca9237';
|
||||||
|
|
||||||
describe('Portfolio', () => {
|
describe('Portfolio', () => {
|
||||||
let alphaVantageService: AlphaVantageService;
|
|
||||||
let configurationService: ConfigurationService;
|
|
||||||
let dataProviderService: DataProviderService;
|
let dataProviderService: DataProviderService;
|
||||||
let exchangeRateDataService: ExchangeRateDataService;
|
let exchangeRateDataService: ExchangeRateDataService;
|
||||||
let portfolio: Portfolio;
|
let portfolio: Portfolio;
|
||||||
let prismaService: PrismaService;
|
|
||||||
let rakutenRapidApiService: RakutenRapidApiService;
|
|
||||||
let rulesService: RulesService;
|
let rulesService: RulesService;
|
||||||
let yahooFinanceService: YahooFinanceService;
|
|
||||||
|
|
||||||
beforeAll(async () => {
|
beforeAll(async () => {
|
||||||
const app = await Test.createTestingModule({
|
dataProviderService = new DataProviderService(
|
||||||
imports: [],
|
null,
|
||||||
providers: [
|
null,
|
||||||
AlphaVantageService,
|
null,
|
||||||
ConfigurationService,
|
null,
|
||||||
DataProviderService,
|
null,
|
||||||
ExchangeRateDataService,
|
null
|
||||||
PrismaService,
|
|
||||||
RakutenRapidApiService,
|
|
||||||
RulesService,
|
|
||||||
YahooFinanceService
|
|
||||||
]
|
|
||||||
}).compile();
|
|
||||||
|
|
||||||
alphaVantageService = app.get<AlphaVantageService>(AlphaVantageService);
|
|
||||||
configurationService = app.get<ConfigurationService>(ConfigurationService);
|
|
||||||
dataProviderService = app.get<DataProviderService>(DataProviderService);
|
|
||||||
exchangeRateDataService = app.get<ExchangeRateDataService>(
|
|
||||||
ExchangeRateDataService
|
|
||||||
);
|
);
|
||||||
prismaService = app.get<PrismaService>(PrismaService);
|
exchangeRateDataService = new ExchangeRateDataService(null);
|
||||||
rakutenRapidApiService = app.get<RakutenRapidApiService>(
|
rulesService = new RulesService();
|
||||||
RakutenRapidApiService
|
|
||||||
);
|
|
||||||
rulesService = app.get<RulesService>(RulesService);
|
|
||||||
yahooFinanceService = app.get<YahooFinanceService>(YahooFinanceService);
|
|
||||||
|
|
||||||
await exchangeRateDataService.initialize();
|
await exchangeRateDataService.initialize();
|
||||||
|
|
||||||
@ -62,15 +107,29 @@ describe('Portfolio', () => {
|
|||||||
);
|
);
|
||||||
portfolio.setUser({
|
portfolio.setUser({
|
||||||
accessToken: null,
|
accessToken: null,
|
||||||
alias: 'Test',
|
Account: [
|
||||||
|
{
|
||||||
|
accountType: AccountType.SECURITIES,
|
||||||
createdAt: new Date(),
|
createdAt: new Date(),
|
||||||
id: '',
|
id: DEFAULT_ACCOUNT_ID,
|
||||||
|
isDefault: true,
|
||||||
|
name: 'Default Account',
|
||||||
|
platformId: null,
|
||||||
|
updatedAt: new Date(),
|
||||||
|
userId: USER_ID
|
||||||
|
}
|
||||||
|
],
|
||||||
|
alias: 'Test',
|
||||||
|
authChallenge: null,
|
||||||
|
createdAt: new Date(),
|
||||||
|
id: USER_ID,
|
||||||
provider: null,
|
provider: null,
|
||||||
role: Role.USER,
|
role: Role.USER,
|
||||||
Settings: {
|
Settings: {
|
||||||
currency: Currency.CHF,
|
currency: Currency.CHF,
|
||||||
updatedAt: new Date(),
|
updatedAt: new Date(),
|
||||||
userId: ''
|
userId: USER_ID,
|
||||||
|
viewMode: ViewMode.DEFAULT
|
||||||
},
|
},
|
||||||
thirdPartyId: null,
|
thirdPartyId: null,
|
||||||
updatedAt: new Date()
|
updatedAt: new Date()
|
||||||
@ -121,18 +180,21 @@ describe('Portfolio', () => {
|
|||||||
it('should return ["BTC"]', async () => {
|
it('should return ["BTC"]', async () => {
|
||||||
await portfolio.setOrders([
|
await portfolio.setOrders([
|
||||||
{
|
{
|
||||||
|
accountId: DEFAULT_ACCOUNT_ID,
|
||||||
|
accountUserId: USER_ID,
|
||||||
createdAt: null,
|
createdAt: null,
|
||||||
currency: Currency.USD,
|
currency: Currency.USD,
|
||||||
|
dataSource: DataSource.YAHOO,
|
||||||
fee: 0,
|
fee: 0,
|
||||||
date: new Date(),
|
date: new Date(),
|
||||||
id: '8d999347-dee2-46ee-88e1-26b344e71fcc',
|
id: '8d999347-dee2-46ee-88e1-26b344e71fcc',
|
||||||
platformId: null,
|
|
||||||
quantity: 1,
|
quantity: 1,
|
||||||
symbol: 'BTCUSD',
|
symbol: 'BTCUSD',
|
||||||
|
symbolProfileId: null,
|
||||||
type: Type.BUY,
|
type: Type.BUY,
|
||||||
unitPrice: 49631.24,
|
unitPrice: 49631.24,
|
||||||
updatedAt: null,
|
updatedAt: null,
|
||||||
userId: null
|
userId: USER_ID
|
||||||
}
|
}
|
||||||
]);
|
]);
|
||||||
|
|
||||||
@ -147,20 +209,8 @@ describe('Portfolio', () => {
|
|||||||
const details = await portfolio.getDetails('1d');
|
const details = await portfolio.getDetails('1d');
|
||||||
expect(details).toMatchObject({
|
expect(details).toMatchObject({
|
||||||
BTCUSD: {
|
BTCUSD: {
|
||||||
currency: Currency.USD,
|
accounts: {
|
||||||
exchange: 'Other',
|
[UNKNOWN_KEY]: {
|
||||||
grossPerformance: 0,
|
|
||||||
grossPerformancePercent: 0,
|
|
||||||
investment: exchangeRateDataService.toCurrency(
|
|
||||||
1 * 49631.24,
|
|
||||||
Currency.USD,
|
|
||||||
baseCurrency
|
|
||||||
),
|
|
||||||
isMarketOpen: true,
|
|
||||||
// marketPrice: 57973.008,
|
|
||||||
name: 'Bitcoin USD',
|
|
||||||
platforms: {
|
|
||||||
Other: {
|
|
||||||
/*current: exchangeRateDataService.toCurrency(
|
/*current: exchangeRateDataService.toCurrency(
|
||||||
1 * 49631.24,
|
1 * 49631.24,
|
||||||
Currency.USD,
|
Currency.USD,
|
||||||
@ -173,10 +223,24 @@ describe('Portfolio', () => {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
allocationCurrent: 1,
|
||||||
|
allocationInvestment: 1,
|
||||||
|
countries: [],
|
||||||
|
currency: Currency.USD,
|
||||||
|
exchange: UNKNOWN_KEY,
|
||||||
|
grossPerformance: 0,
|
||||||
|
grossPerformancePercent: 0,
|
||||||
|
investment: exchangeRateDataService.toCurrency(
|
||||||
|
1 * 49631.24,
|
||||||
|
Currency.USD,
|
||||||
|
baseCurrency
|
||||||
|
),
|
||||||
|
marketPrice: 57973.008,
|
||||||
|
marketState: MarketState.open,
|
||||||
|
name: 'Bitcoin USD',
|
||||||
quantity: 1,
|
quantity: 1,
|
||||||
// shareCurrent: 0.9999999559148652,
|
|
||||||
shareInvestment: 1,
|
|
||||||
symbol: 'BTCUSD',
|
symbol: 'BTCUSD',
|
||||||
|
transactionCount: 1,
|
||||||
type: 'Cryptocurrency'
|
type: 'Cryptocurrency'
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -219,18 +283,21 @@ describe('Portfolio', () => {
|
|||||||
it('should return ["ETHUSD"]', async () => {
|
it('should return ["ETHUSD"]', async () => {
|
||||||
await portfolio.setOrders([
|
await portfolio.setOrders([
|
||||||
{
|
{
|
||||||
|
accountId: DEFAULT_ACCOUNT_ID,
|
||||||
|
accountUserId: USER_ID,
|
||||||
createdAt: null,
|
createdAt: null,
|
||||||
currency: Currency.USD,
|
currency: Currency.USD,
|
||||||
|
dataSource: DataSource.YAHOO,
|
||||||
fee: 0,
|
fee: 0,
|
||||||
date: new Date(getUtc('2018-01-05')),
|
date: new Date(getUtc('2018-01-05')),
|
||||||
id: '4a5a5c6e-659d-45cc-9fd4-fd6c873b50fb',
|
id: '4a5a5c6e-659d-45cc-9fd4-fd6c873b50fb',
|
||||||
platformId: null,
|
|
||||||
quantity: 0.2,
|
quantity: 0.2,
|
||||||
symbol: 'ETHUSD',
|
symbol: 'ETHUSD',
|
||||||
|
symbolProfileId: null,
|
||||||
type: Type.BUY,
|
type: Type.BUY,
|
||||||
unitPrice: 991.49,
|
unitPrice: 991.49,
|
||||||
updatedAt: null,
|
updatedAt: null,
|
||||||
userId: null
|
userId: USER_ID
|
||||||
}
|
}
|
||||||
]);
|
]);
|
||||||
|
|
||||||
@ -245,19 +312,8 @@ describe('Portfolio', () => {
|
|||||||
const details = await portfolio.getDetails('1d');
|
const details = await portfolio.getDetails('1d');
|
||||||
expect(details).toMatchObject({
|
expect(details).toMatchObject({
|
||||||
ETHUSD: {
|
ETHUSD: {
|
||||||
currency: Currency.USD,
|
accounts: {
|
||||||
exchange: 'Other',
|
[UNKNOWN_KEY]: {
|
||||||
// grossPerformance: 0,
|
|
||||||
// grossPerformancePercent: 0,
|
|
||||||
investment: exchangeRateDataService.toCurrency(
|
|
||||||
0.2 * 991.49,
|
|
||||||
Currency.USD,
|
|
||||||
baseCurrency
|
|
||||||
),
|
|
||||||
// marketPrice: 57973.008,
|
|
||||||
name: 'Ethereum USD',
|
|
||||||
platforms: {
|
|
||||||
Other: {
|
|
||||||
/*current: exchangeRateDataService.toCurrency(
|
/*current: exchangeRateDataService.toCurrency(
|
||||||
0.2 * 991.49,
|
0.2 * 991.49,
|
||||||
Currency.USD,
|
Currency.USD,
|
||||||
@ -270,9 +326,22 @@ describe('Portfolio', () => {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
// allocationCurrent: 1,
|
||||||
|
allocationInvestment: 1,
|
||||||
|
countries: [],
|
||||||
|
currency: Currency.USD,
|
||||||
|
exchange: UNKNOWN_KEY,
|
||||||
|
// grossPerformance: 0,
|
||||||
|
// grossPerformancePercent: 0,
|
||||||
|
investment: exchangeRateDataService.toCurrency(
|
||||||
|
0.2 * 991.49,
|
||||||
|
Currency.USD,
|
||||||
|
baseCurrency
|
||||||
|
),
|
||||||
|
marketPrice: 3915.337,
|
||||||
|
name: 'Ethereum USD',
|
||||||
quantity: 0.2,
|
quantity: 0.2,
|
||||||
shareCurrent: 1,
|
transactionCount: 1,
|
||||||
shareInvestment: 1,
|
|
||||||
symbol: 'ETHUSD',
|
symbol: 'ETHUSD',
|
||||||
type: 'Cryptocurrency'
|
type: 'Cryptocurrency'
|
||||||
}
|
}
|
||||||
@ -300,7 +369,7 @@ describe('Portfolio', () => {
|
|||||||
baseCurrency
|
baseCurrency
|
||||||
),
|
),
|
||||||
investmentInOriginalCurrency: 0.2 * 991.49,
|
investmentInOriginalCurrency: 0.2 * 991.49,
|
||||||
// marketPrice: 0,
|
// marketPrice: 3915.337,
|
||||||
quantity: 0.2
|
quantity: 0.2
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -311,32 +380,38 @@ describe('Portfolio', () => {
|
|||||||
it('should return ["ETHUSD"]', async () => {
|
it('should return ["ETHUSD"]', async () => {
|
||||||
await portfolio.setOrders([
|
await portfolio.setOrders([
|
||||||
{
|
{
|
||||||
|
accountId: DEFAULT_ACCOUNT_ID,
|
||||||
|
accountUserId: USER_ID,
|
||||||
createdAt: null,
|
createdAt: null,
|
||||||
currency: Currency.USD,
|
currency: Currency.USD,
|
||||||
|
dataSource: DataSource.YAHOO,
|
||||||
fee: 0,
|
fee: 0,
|
||||||
date: new Date(getUtc('2018-01-05')),
|
date: new Date(getUtc('2018-01-05')),
|
||||||
id: '4a5a5c6e-659d-45cc-9fd4-fd6c873b50fb',
|
id: '4a5a5c6e-659d-45cc-9fd4-fd6c873b50fb',
|
||||||
platformId: null,
|
|
||||||
quantity: 0.2,
|
quantity: 0.2,
|
||||||
symbol: 'ETHUSD',
|
symbol: 'ETHUSD',
|
||||||
|
symbolProfileId: null,
|
||||||
type: Type.BUY,
|
type: Type.BUY,
|
||||||
unitPrice: 991.49,
|
unitPrice: 991.49,
|
||||||
updatedAt: null,
|
updatedAt: null,
|
||||||
userId: null
|
userId: USER_ID
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
accountId: DEFAULT_ACCOUNT_ID,
|
||||||
|
accountUserId: USER_ID,
|
||||||
createdAt: null,
|
createdAt: null,
|
||||||
currency: Currency.USD,
|
currency: Currency.USD,
|
||||||
|
dataSource: DataSource.YAHOO,
|
||||||
fee: 0,
|
fee: 0,
|
||||||
date: new Date(getUtc('2018-01-28')),
|
date: new Date(getUtc('2018-01-28')),
|
||||||
id: '4a5a5c6e-659d-45cc-9fd4-fd6c873b50fc',
|
id: '4a5a5c6e-659d-45cc-9fd4-fd6c873b50fc',
|
||||||
platformId: null,
|
|
||||||
quantity: 0.3,
|
quantity: 0.3,
|
||||||
symbol: 'ETHUSD',
|
symbol: 'ETHUSD',
|
||||||
|
symbolProfileId: null,
|
||||||
type: Type.BUY,
|
type: Type.BUY,
|
||||||
unitPrice: 1050,
|
unitPrice: 1050,
|
||||||
updatedAt: null,
|
updatedAt: null,
|
||||||
userId: null
|
userId: USER_ID
|
||||||
}
|
}
|
||||||
]);
|
]);
|
||||||
|
|
||||||
@ -372,7 +447,7 @@ describe('Portfolio', () => {
|
|||||||
baseCurrency
|
baseCurrency
|
||||||
),
|
),
|
||||||
investmentInOriginalCurrency: 0.2 * 991.49 + 0.3 * 1050,
|
investmentInOriginalCurrency: 0.2 * 991.49 + 0.3 * 1050,
|
||||||
// marketPrice: 0,
|
// marketPrice: 3641.984,
|
||||||
quantity: 0.5
|
quantity: 0.5
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -383,32 +458,38 @@ describe('Portfolio', () => {
|
|||||||
it('should return ["BTCUSD", "ETHUSD"]', async () => {
|
it('should return ["BTCUSD", "ETHUSD"]', async () => {
|
||||||
await portfolio.setOrders([
|
await portfolio.setOrders([
|
||||||
{
|
{
|
||||||
|
accountId: DEFAULT_ACCOUNT_ID,
|
||||||
|
accountUserId: USER_ID,
|
||||||
createdAt: null,
|
createdAt: null,
|
||||||
currency: Currency.EUR,
|
currency: Currency.EUR,
|
||||||
|
dataSource: DataSource.YAHOO,
|
||||||
date: new Date(getUtc('2017-08-16')),
|
date: new Date(getUtc('2017-08-16')),
|
||||||
fee: 2.99,
|
fee: 2.99,
|
||||||
id: 'd96795b2-6ae6-420e-aa21-fabe5e45d475',
|
id: 'd96795b2-6ae6-420e-aa21-fabe5e45d475',
|
||||||
platformId: null,
|
|
||||||
quantity: 0.05614682,
|
quantity: 0.05614682,
|
||||||
symbol: 'BTCUSD',
|
symbol: 'BTCUSD',
|
||||||
|
symbolProfileId: null,
|
||||||
type: Type.BUY,
|
type: Type.BUY,
|
||||||
unitPrice: 3562.089535970158,
|
unitPrice: 3562.089535970158,
|
||||||
updatedAt: null,
|
updatedAt: null,
|
||||||
userId: null
|
userId: USER_ID
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
accountId: DEFAULT_ACCOUNT_ID,
|
||||||
|
accountUserId: USER_ID,
|
||||||
createdAt: null,
|
createdAt: null,
|
||||||
currency: Currency.USD,
|
currency: Currency.USD,
|
||||||
|
dataSource: DataSource.YAHOO,
|
||||||
fee: 2.99,
|
fee: 2.99,
|
||||||
date: new Date(getUtc('2018-01-05')),
|
date: new Date(getUtc('2018-01-05')),
|
||||||
id: '4a5a5c6e-659d-45cc-9fd4-fd6c873b50fb',
|
id: '4a5a5c6e-659d-45cc-9fd4-fd6c873b50fb',
|
||||||
platformId: null,
|
|
||||||
quantity: 0.2,
|
quantity: 0.2,
|
||||||
symbol: 'ETHUSD',
|
symbol: 'ETHUSD',
|
||||||
|
symbolProfileId: null,
|
||||||
type: Type.BUY,
|
type: Type.BUY,
|
||||||
unitPrice: 991.49,
|
unitPrice: 991.49,
|
||||||
updatedAt: null,
|
updatedAt: null,
|
||||||
userId: null
|
userId: USER_ID
|
||||||
}
|
}
|
||||||
]);
|
]);
|
||||||
|
|
||||||
@ -468,51 +549,59 @@ describe('Portfolio', () => {
|
|||||||
it('should work with buy and sell', async () => {
|
it('should work with buy and sell', async () => {
|
||||||
await portfolio.setOrders([
|
await portfolio.setOrders([
|
||||||
{
|
{
|
||||||
|
accountId: DEFAULT_ACCOUNT_ID,
|
||||||
|
accountUserId: USER_ID,
|
||||||
createdAt: null,
|
createdAt: null,
|
||||||
currency: Currency.USD,
|
currency: Currency.USD,
|
||||||
|
dataSource: DataSource.YAHOO,
|
||||||
fee: 1.0,
|
fee: 1.0,
|
||||||
date: new Date(getUtc('2018-01-05')),
|
date: new Date(getUtc('2018-01-05')),
|
||||||
id: '4a5a5c6e-659d-45cc-9fd4-fd6c873b50fb',
|
id: '4a5a5c6e-659d-45cc-9fd4-fd6c873b50fb',
|
||||||
platformId: null,
|
|
||||||
quantity: 0.2,
|
quantity: 0.2,
|
||||||
symbol: 'ETHUSD',
|
symbol: 'ETHUSD',
|
||||||
|
symbolProfileId: null,
|
||||||
type: Type.BUY,
|
type: Type.BUY,
|
||||||
unitPrice: 991.49,
|
unitPrice: 991.49,
|
||||||
updatedAt: null,
|
updatedAt: null,
|
||||||
userId: null
|
userId: USER_ID
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
accountId: DEFAULT_ACCOUNT_ID,
|
||||||
|
accountUserId: USER_ID,
|
||||||
createdAt: null,
|
createdAt: null,
|
||||||
currency: Currency.USD,
|
currency: Currency.USD,
|
||||||
|
dataSource: DataSource.YAHOO,
|
||||||
fee: 1.0,
|
fee: 1.0,
|
||||||
date: new Date(getUtc('2018-01-28')),
|
date: new Date(getUtc('2018-01-28')),
|
||||||
id: '4a5a5c6e-659d-45cc-9fd4-fd6c873b50fc',
|
id: '4a5a5c6e-659d-45cc-9fd4-fd6c873b50fc',
|
||||||
platformId: null,
|
|
||||||
quantity: 0.1,
|
quantity: 0.1,
|
||||||
symbol: 'ETHUSD',
|
symbol: 'ETHUSD',
|
||||||
|
symbolProfileId: null,
|
||||||
type: Type.SELL,
|
type: Type.SELL,
|
||||||
unitPrice: 1050,
|
unitPrice: 1050,
|
||||||
updatedAt: null,
|
updatedAt: null,
|
||||||
userId: null
|
userId: USER_ID
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
accountId: DEFAULT_ACCOUNT_ID,
|
||||||
|
accountUserId: USER_ID,
|
||||||
createdAt: null,
|
createdAt: null,
|
||||||
currency: Currency.USD,
|
currency: Currency.USD,
|
||||||
|
dataSource: DataSource.YAHOO,
|
||||||
fee: 1.0,
|
fee: 1.0,
|
||||||
date: new Date(getUtc('2018-01-31')),
|
date: new Date(getUtc('2018-01-31')),
|
||||||
id: '4a5a5c6e-659d-45cc-9fd4-fd6c873b50fc',
|
id: '4a5a5c6e-659d-45cc-9fd4-fd6c873b50fc',
|
||||||
platformId: null,
|
|
||||||
quantity: 0.2,
|
quantity: 0.2,
|
||||||
symbol: 'ETHUSD',
|
symbol: 'ETHUSD',
|
||||||
|
symbolProfileId: null,
|
||||||
type: Type.BUY,
|
type: Type.BUY,
|
||||||
unitPrice: 1050,
|
unitPrice: 1050,
|
||||||
updatedAt: null,
|
updatedAt: null,
|
||||||
userId: null
|
userId: USER_ID
|
||||||
}
|
}
|
||||||
]);
|
]);
|
||||||
|
|
||||||
// TODO: Fix
|
expect(portfolio.getCommittedFunds()).toEqual(
|
||||||
/*expect(portfolio.getCommittedFunds()).toEqual(
|
|
||||||
exchangeRateDataService.toCurrency(
|
exchangeRateDataService.toCurrency(
|
||||||
0.2 * 991.49,
|
0.2 * 991.49,
|
||||||
Currency.USD,
|
Currency.USD,
|
||||||
@ -528,7 +617,7 @@ describe('Portfolio', () => {
|
|||||||
Currency.USD,
|
Currency.USD,
|
||||||
baseCurrency
|
baseCurrency
|
||||||
)
|
)
|
||||||
);*/
|
);
|
||||||
|
|
||||||
expect(portfolio.getFees()).toEqual(
|
expect(portfolio.getFees()).toEqual(
|
||||||
exchangeRateDataService.toCurrency(3, Currency.USD, baseCurrency)
|
exchangeRateDataService.toCurrency(3, Currency.USD, baseCurrency)
|
||||||
@ -540,12 +629,11 @@ describe('Portfolio', () => {
|
|||||||
(0.2 * 991.49 - 0.1 * 1050 + 0.2 * 1050) / (0.2 - 0.1 + 0.2),
|
(0.2 * 991.49 - 0.1 * 1050 + 0.2 * 1050) / (0.2 - 0.1 + 0.2),
|
||||||
currency: Currency.USD,
|
currency: Currency.USD,
|
||||||
firstBuyDate: '2018-01-05T00:00:00.000Z',
|
firstBuyDate: '2018-01-05T00:00:00.000Z',
|
||||||
// TODO: Fix
|
investment: exchangeRateDataService.toCurrency(
|
||||||
/*investment: exchangeRateDataService.toCurrency(
|
|
||||||
0.2 * 991.49 - 0.1 * 1050 + 0.2 * 1050,
|
0.2 * 991.49 - 0.1 * 1050 + 0.2 * 1050,
|
||||||
Currency.USD,
|
Currency.USD,
|
||||||
baseCurrency
|
baseCurrency
|
||||||
),*/
|
),
|
||||||
investmentInOriginalCurrency: 0.2 * 991.49 - 0.1 * 1050 + 0.2 * 1050,
|
investmentInOriginalCurrency: 0.2 * 991.49 - 0.1 * 1050 + 0.2 * 1050,
|
||||||
// marketPrice: 0,
|
// marketPrice: 0,
|
||||||
quantity: 0.2 - 0.1 + 0.2
|
quantity: 0.2 - 0.1 + 0.2
|
||||||
@ -555,8 +643,4 @@ describe('Portfolio', () => {
|
|||||||
expect(portfolio.getSymbols(getYesterday())).toEqual(['ETHUSD']);
|
expect(portfolio.getSymbols(getYesterday())).toEqual(['ETHUSD']);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
afterAll(async () => {
|
|
||||||
prismaService.$disconnect();
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,17 @@
|
|||||||
|
import { UNKNOWN_KEY } from '@ghostfolio/common/config';
|
||||||
|
import { getToday, getYesterday, resetHours } from '@ghostfolio/common/helper';
|
||||||
import {
|
import {
|
||||||
PortfolioItem,
|
PortfolioItem,
|
||||||
Position
|
PortfolioPerformance,
|
||||||
} from 'apps/api/src/app/portfolio/interfaces/portfolio-item.interface';
|
PortfolioPosition,
|
||||||
|
PortfolioReport,
|
||||||
|
Position,
|
||||||
|
UserWithSettings
|
||||||
|
} from '@ghostfolio/common/interfaces';
|
||||||
|
import { Country } from '@ghostfolio/common/interfaces/country.interface';
|
||||||
|
import { DateRange, OrderWithAccount } from '@ghostfolio/common/types';
|
||||||
|
import { Prisma } from '@prisma/client';
|
||||||
|
import { continents, countries } from 'countries-list';
|
||||||
import {
|
import {
|
||||||
add,
|
add,
|
||||||
format,
|
format,
|
||||||
@ -18,30 +28,24 @@ import {
|
|||||||
setMonth,
|
setMonth,
|
||||||
sub
|
sub
|
||||||
} from 'date-fns';
|
} from 'date-fns';
|
||||||
import { getToday, getYesterday, resetHours } from 'libs/helper/src';
|
|
||||||
import { cloneDeep, isEmpty } from 'lodash';
|
import { cloneDeep, isEmpty } from 'lodash';
|
||||||
import * as roundTo from 'round-to';
|
import * as roundTo from 'round-to';
|
||||||
|
|
||||||
import { UserWithSettings } from '../app/interfaces/user-with-settings';
|
|
||||||
import { OrderWithPlatform } from '../app/order/interfaces/order-with-platform.type';
|
|
||||||
import { DateRange } from '../app/portfolio/interfaces/date-range.type';
|
|
||||||
import { PortfolioPerformance } from '../app/portfolio/interfaces/portfolio-performance.interface';
|
|
||||||
import { PortfolioPosition } from '../app/portfolio/interfaces/portfolio-position.interface';
|
|
||||||
import { PortfolioReport } from '../app/portfolio/interfaces/portfolio-report.interface';
|
|
||||||
import { DataProviderService } from '../services/data-provider.service';
|
import { DataProviderService } from '../services/data-provider.service';
|
||||||
import { ExchangeRateDataService } from '../services/exchange-rate-data.service';
|
import { ExchangeRateDataService } from '../services/exchange-rate-data.service';
|
||||||
import { IOrder } from '../services/interfaces/interfaces';
|
import { IOrder } from '../services/interfaces/interfaces';
|
||||||
import { RulesService } from '../services/rules.service';
|
import { RulesService } from '../services/rules.service';
|
||||||
import { PortfolioInterface } from './interfaces/portfolio.interface';
|
import { PortfolioInterface } from './interfaces/portfolio.interface';
|
||||||
import { Order } from './order';
|
import { Order } from './order';
|
||||||
|
import { OrderType } from './order-type';
|
||||||
|
import { AccountClusterRiskCurrentInvestment } from './rules/account-cluster-risk/current-investment';
|
||||||
|
import { AccountClusterRiskInitialInvestment } from './rules/account-cluster-risk/initial-investment';
|
||||||
|
import { AccountClusterRiskSingleAccount } from './rules/account-cluster-risk/single-account';
|
||||||
import { CurrencyClusterRiskBaseCurrencyCurrentInvestment } from './rules/currency-cluster-risk/base-currency-current-investment';
|
import { CurrencyClusterRiskBaseCurrencyCurrentInvestment } from './rules/currency-cluster-risk/base-currency-current-investment';
|
||||||
import { CurrencyClusterRiskBaseCurrencyInitialInvestment } from './rules/currency-cluster-risk/base-currency-initial-investment';
|
import { CurrencyClusterRiskBaseCurrencyInitialInvestment } from './rules/currency-cluster-risk/base-currency-initial-investment';
|
||||||
import { CurrencyClusterRiskCurrentInvestment } from './rules/currency-cluster-risk/current-investment';
|
import { CurrencyClusterRiskCurrentInvestment } from './rules/currency-cluster-risk/current-investment';
|
||||||
import { CurrencyClusterRiskInitialInvestment } from './rules/currency-cluster-risk/initial-investment';
|
import { CurrencyClusterRiskInitialInvestment } from './rules/currency-cluster-risk/initial-investment';
|
||||||
import { FeeRatioInitialInvestment } from './rules/fees/fee-ratio-initial-investment';
|
import { FeeRatioInitialInvestment } from './rules/fees/fee-ratio-initial-investment';
|
||||||
import { PlatformClusterRiskCurrentInvestment } from './rules/platform-cluster-risk/current-investment';
|
|
||||||
import { PlatformClusterRiskInitialInvestment } from './rules/platform-cluster-risk/initial-investment';
|
|
||||||
import { PlatformClusterRiskSinglePlatform } from './rules/platform-cluster-risk/single-platform';
|
|
||||||
|
|
||||||
export class Portfolio implements PortfolioInterface {
|
export class Portfolio implements PortfolioInterface {
|
||||||
private orders: Order[] = [];
|
private orders: Order[] = [];
|
||||||
@ -57,7 +61,7 @@ export class Portfolio implements PortfolioInterface {
|
|||||||
public async addCurrentPortfolioItems() {
|
public async addCurrentPortfolioItems() {
|
||||||
const currentData = await this.dataProviderService.get(this.getSymbols());
|
const currentData = await this.dataProviderService.get(this.getSymbols());
|
||||||
|
|
||||||
let currentDate = new Date();
|
const currentDate = new Date();
|
||||||
|
|
||||||
const year = getYear(currentDate);
|
const year = getYear(currentDate);
|
||||||
const month = getMonth(currentDate);
|
const month = getMonth(currentDate);
|
||||||
@ -79,8 +83,12 @@ export class Portfolio implements PortfolioInterface {
|
|||||||
investmentInOriginalCurrency:
|
investmentInOriginalCurrency:
|
||||||
portfolioItemsYesterday?.positions[symbol]
|
portfolioItemsYesterday?.positions[symbol]
|
||||||
?.investmentInOriginalCurrency,
|
?.investmentInOriginalCurrency,
|
||||||
marketPrice: currentData[symbol]?.marketPrice,
|
marketPrice:
|
||||||
quantity: portfolioItemsYesterday?.positions[symbol]?.quantity
|
currentData[symbol]?.marketPrice ??
|
||||||
|
portfolioItemsYesterday.positions[symbol]?.marketPrice,
|
||||||
|
quantity: portfolioItemsYesterday?.positions[symbol]?.quantity,
|
||||||
|
transactionCount:
|
||||||
|
portfolioItemsYesterday?.positions[symbol]?.transactionCount
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -115,25 +123,27 @@ export class Portfolio implements PortfolioInterface {
|
|||||||
}): Portfolio {
|
}): Portfolio {
|
||||||
orders.forEach(
|
orders.forEach(
|
||||||
({
|
({
|
||||||
|
account,
|
||||||
currency,
|
currency,
|
||||||
fee,
|
fee,
|
||||||
date,
|
date,
|
||||||
id,
|
id,
|
||||||
platform,
|
|
||||||
quantity,
|
quantity,
|
||||||
symbol,
|
symbol,
|
||||||
|
symbolProfile,
|
||||||
type,
|
type,
|
||||||
unitPrice
|
unitPrice
|
||||||
}) => {
|
}) => {
|
||||||
this.orders.push(
|
this.orders.push(
|
||||||
new Order({
|
new Order({
|
||||||
|
account,
|
||||||
currency,
|
currency,
|
||||||
fee,
|
fee,
|
||||||
date,
|
date,
|
||||||
id,
|
id,
|
||||||
platform,
|
|
||||||
quantity,
|
quantity,
|
||||||
symbol,
|
symbol,
|
||||||
|
symbolProfile,
|
||||||
type,
|
type,
|
||||||
unitPrice
|
unitPrice
|
||||||
})
|
})
|
||||||
@ -158,53 +168,6 @@ export class Portfolio implements PortfolioInterface {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
private convertDateRangeToDate(aDateRange: DateRange, aMinDate: Date) {
|
|
||||||
let currentDate = new Date();
|
|
||||||
|
|
||||||
const normalizedMinDate =
|
|
||||||
getDate(aMinDate) === 1
|
|
||||||
? aMinDate
|
|
||||||
: add(setDate(aMinDate, 1), { months: 1 });
|
|
||||||
|
|
||||||
const year = getYear(currentDate);
|
|
||||||
const month = getMonth(currentDate);
|
|
||||||
const day = getDate(currentDate);
|
|
||||||
|
|
||||||
currentDate = new Date(Date.UTC(year, month, day, 0));
|
|
||||||
|
|
||||||
switch (aDateRange) {
|
|
||||||
case '1d':
|
|
||||||
return sub(currentDate, {
|
|
||||||
days: 1
|
|
||||||
});
|
|
||||||
case 'ytd':
|
|
||||||
currentDate = setDate(currentDate, 1);
|
|
||||||
currentDate = setMonth(currentDate, 0);
|
|
||||||
return isAfter(currentDate, normalizedMinDate)
|
|
||||||
? currentDate
|
|
||||||
: undefined;
|
|
||||||
case '1y':
|
|
||||||
currentDate = setDate(currentDate, 1);
|
|
||||||
currentDate = sub(currentDate, {
|
|
||||||
years: 1
|
|
||||||
});
|
|
||||||
return isAfter(currentDate, normalizedMinDate)
|
|
||||||
? currentDate
|
|
||||||
: undefined;
|
|
||||||
case '5y':
|
|
||||||
currentDate = setDate(currentDate, 1);
|
|
||||||
currentDate = sub(currentDate, {
|
|
||||||
years: 5
|
|
||||||
});
|
|
||||||
return isAfter(currentDate, normalizedMinDate)
|
|
||||||
? currentDate
|
|
||||||
: undefined;
|
|
||||||
default:
|
|
||||||
// Gets handled as all data
|
|
||||||
return undefined;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public get(aDate?: Date): PortfolioItem[] {
|
public get(aDate?: Date): PortfolioItem[] {
|
||||||
if (aDate) {
|
if (aDate) {
|
||||||
const filteredPortfolio = this.portfolioItems.find((item) => {
|
const filteredPortfolio = this.portfolioItems.find((item) => {
|
||||||
@ -245,7 +208,8 @@ export class Portfolio implements PortfolioInterface {
|
|||||||
const data = await this.dataProviderService.get(symbols);
|
const data = await this.dataProviderService.get(symbols);
|
||||||
|
|
||||||
symbols.forEach((symbol) => {
|
symbols.forEach((symbol) => {
|
||||||
const platforms: PortfolioPosition['platforms'] = {};
|
const accounts: PortfolioPosition['accounts'] = {};
|
||||||
|
let countriesOfSymbol: Country[];
|
||||||
const [portfolioItem] = portfolioItems;
|
const [portfolioItem] = portfolioItems;
|
||||||
|
|
||||||
const ordersBySymbol = this.getOrders().filter((order) => {
|
const ordersBySymbol = this.getOrders().filter((order) => {
|
||||||
@ -270,19 +234,36 @@ export class Portfolio implements PortfolioInterface {
|
|||||||
originalValueOfSymbol *= -1;
|
originalValueOfSymbol *= -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (platforms[orderOfSymbol.getPlatform()?.name || 'Other']?.current) {
|
if (
|
||||||
platforms[
|
accounts[orderOfSymbol.getAccount()?.name || UNKNOWN_KEY]?.current
|
||||||
orderOfSymbol.getPlatform()?.name || 'Other'
|
) {
|
||||||
|
accounts[
|
||||||
|
orderOfSymbol.getAccount()?.name || UNKNOWN_KEY
|
||||||
].current += currentValueOfSymbol;
|
].current += currentValueOfSymbol;
|
||||||
platforms[
|
accounts[
|
||||||
orderOfSymbol.getPlatform()?.name || 'Other'
|
orderOfSymbol.getAccount()?.name || UNKNOWN_KEY
|
||||||
].original += originalValueOfSymbol;
|
].original += originalValueOfSymbol;
|
||||||
} else {
|
} else {
|
||||||
platforms[orderOfSymbol.getPlatform()?.name || 'Other'] = {
|
accounts[orderOfSymbol.getAccount()?.name || UNKNOWN_KEY] = {
|
||||||
current: currentValueOfSymbol,
|
current: currentValueOfSymbol,
|
||||||
original: originalValueOfSymbol
|
original: originalValueOfSymbol
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
countriesOfSymbol = (
|
||||||
|
(orderOfSymbol.getSymbolProfile()?.countries as Prisma.JsonArray) ??
|
||||||
|
[]
|
||||||
|
).map((country) => {
|
||||||
|
const { code, weight } = country as Prisma.JsonObject;
|
||||||
|
|
||||||
|
return {
|
||||||
|
code: code as string,
|
||||||
|
continent:
|
||||||
|
continents[countries[code as string]?.continent] ?? UNKNOWN_KEY,
|
||||||
|
name: countries[code as string]?.name ?? UNKNOWN_KEY,
|
||||||
|
weight: weight as number
|
||||||
|
};
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
let now = portfolioItemsNow.positions[symbol].marketPrice;
|
let now = portfolioItemsNow.positions[symbol].marketPrice;
|
||||||
@ -319,8 +300,17 @@ export class Portfolio implements PortfolioInterface {
|
|||||||
|
|
||||||
details[symbol] = {
|
details[symbol] = {
|
||||||
...data[symbol],
|
...data[symbol],
|
||||||
platforms,
|
accounts,
|
||||||
symbol,
|
symbol,
|
||||||
|
allocationCurrent:
|
||||||
|
this.exchangeRateDataService.toCurrency(
|
||||||
|
portfolioItem.positions[symbol].quantity * now,
|
||||||
|
data[symbol]?.currency,
|
||||||
|
this.user.Settings.currency
|
||||||
|
) / value,
|
||||||
|
allocationInvestment:
|
||||||
|
portfolioItem.positions[symbol].investment / investment,
|
||||||
|
countries: countriesOfSymbol,
|
||||||
grossPerformance: roundTo(
|
grossPerformance: roundTo(
|
||||||
portfolioItemsNow.positions[symbol].quantity * (now - before),
|
portfolioItemsNow.positions[symbol].quantity * (now - before),
|
||||||
2
|
2
|
||||||
@ -328,13 +318,12 @@ export class Portfolio implements PortfolioInterface {
|
|||||||
grossPerformancePercent: roundTo((now - before) / before, 4),
|
grossPerformancePercent: roundTo((now - before) / before, 4),
|
||||||
investment: portfolioItem.positions[symbol].investment,
|
investment: portfolioItem.positions[symbol].investment,
|
||||||
quantity: portfolioItem.positions[symbol].quantity,
|
quantity: portfolioItem.positions[symbol].quantity,
|
||||||
shareCurrent:
|
transactionCount: portfolioItem.positions[symbol].transactionCount,
|
||||||
this.exchangeRateDataService.toCurrency(
|
value: this.exchangeRateDataService.toCurrency(
|
||||||
portfolioItem.positions[symbol].quantity * now,
|
portfolioItem.positions[symbol].quantity * now,
|
||||||
data[symbol]?.currency,
|
data[symbol]?.currency,
|
||||||
this.user.Settings.currency
|
this.user.Settings.currency
|
||||||
) / value,
|
)
|
||||||
shareInvestment: portfolioItem.positions[symbol].investment / investment
|
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -437,6 +426,19 @@ export class Portfolio implements PortfolioInterface {
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
rules: {
|
rules: {
|
||||||
|
accountClusterRisk: await this.rulesService.evaluate(
|
||||||
|
this,
|
||||||
|
[
|
||||||
|
new AccountClusterRiskInitialInvestment(
|
||||||
|
this.exchangeRateDataService
|
||||||
|
),
|
||||||
|
new AccountClusterRiskCurrentInvestment(
|
||||||
|
this.exchangeRateDataService
|
||||||
|
),
|
||||||
|
new AccountClusterRiskSingleAccount(this.exchangeRateDataService)
|
||||||
|
],
|
||||||
|
{ baseCurrency: this.user.Settings.currency }
|
||||||
|
),
|
||||||
currencyClusterRisk: await this.rulesService.evaluate(
|
currencyClusterRisk: await this.rulesService.evaluate(
|
||||||
this,
|
this,
|
||||||
[
|
[
|
||||||
@ -455,19 +457,6 @@ export class Portfolio implements PortfolioInterface {
|
|||||||
],
|
],
|
||||||
{ baseCurrency: this.user.Settings.currency }
|
{ baseCurrency: this.user.Settings.currency }
|
||||||
),
|
),
|
||||||
platformClusterRisk: await this.rulesService.evaluate(
|
|
||||||
this,
|
|
||||||
[
|
|
||||||
new PlatformClusterRiskSinglePlatform(this.exchangeRateDataService),
|
|
||||||
new PlatformClusterRiskInitialInvestment(
|
|
||||||
this.exchangeRateDataService
|
|
||||||
),
|
|
||||||
new PlatformClusterRiskCurrentInvestment(
|
|
||||||
this.exchangeRateDataService
|
|
||||||
)
|
|
||||||
],
|
|
||||||
{ baseCurrency: this.user.Settings.currency }
|
|
||||||
),
|
|
||||||
fees: await this.rulesService.evaluate(
|
fees: await this.rulesService.evaluate(
|
||||||
this,
|
this,
|
||||||
[new FeeRatioInitialInvestment(this.exchangeRateDataService)],
|
[new FeeRatioInitialInvestment(this.exchangeRateDataService)],
|
||||||
@ -524,14 +513,14 @@ export class Portfolio implements PortfolioInterface {
|
|||||||
.reduce((previous, current) => previous + current, 0);
|
.reduce((previous, current) => previous + current, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
public getOrders() {
|
public getOrders(aSymbol?: string) {
|
||||||
return this.orders;
|
if (aSymbol) {
|
||||||
|
return this.orders.filter((order) => {
|
||||||
|
return order.getSymbol() === aSymbol;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
private getOrdersByType(aFilter: string[]) {
|
return this.orders;
|
||||||
return this.orders.filter((order) => {
|
|
||||||
return aFilter.includes(order.getType());
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public getValue(aDate = getToday()) {
|
public getValue(aDate = getToday()) {
|
||||||
@ -569,20 +558,21 @@ export class Portfolio implements PortfolioInterface {
|
|||||||
return isFinite(value) ? value : null;
|
return isFinite(value) ? value : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async setOrders(aOrders: OrderWithPlatform[]) {
|
public async setOrders(aOrders: OrderWithAccount[]) {
|
||||||
this.orders = [];
|
this.orders = [];
|
||||||
|
|
||||||
// Map data
|
// Map data
|
||||||
aOrders.forEach((order) => {
|
aOrders.forEach((order) => {
|
||||||
this.orders.push(
|
this.orders.push(
|
||||||
new Order({
|
new Order({
|
||||||
currency: <any>order.currency,
|
account: order.Account,
|
||||||
|
currency: order.currency,
|
||||||
date: order.date.toISOString(),
|
date: order.date.toISOString(),
|
||||||
fee: order.fee,
|
fee: order.fee,
|
||||||
platform: order.Platform,
|
|
||||||
quantity: order.quantity,
|
quantity: order.quantity,
|
||||||
symbol: order.symbol,
|
symbol: order.symbol,
|
||||||
type: <any>order.type,
|
symbolProfile: order.SymbolProfile,
|
||||||
|
type: <OrderType>order.type,
|
||||||
unitPrice: order.unitPrice
|
unitPrice: order.unitPrice
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
@ -633,7 +623,8 @@ export class Portfolio implements PortfolioInterface {
|
|||||||
marketPrice:
|
marketPrice:
|
||||||
historicalData[symbol]?.[format(currentDate, 'yyyy-MM-dd')]
|
historicalData[symbol]?.[format(currentDate, 'yyyy-MM-dd')]
|
||||||
?.marketPrice || 0,
|
?.marketPrice || 0,
|
||||||
quantity: 0
|
quantity: 0,
|
||||||
|
transactionCount: 0
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -674,7 +665,8 @@ export class Portfolio implements PortfolioInterface {
|
|||||||
marketPrice:
|
marketPrice:
|
||||||
historicalData[symbol]?.[format(yesterday, 'yyyy-MM-dd')]
|
historicalData[symbol]?.[format(yesterday, 'yyyy-MM-dd')]
|
||||||
?.marketPrice || 0,
|
?.marketPrice || 0,
|
||||||
quantity: 0
|
quantity: 0,
|
||||||
|
transactionCount: 0
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -692,6 +684,53 @@ export class Portfolio implements PortfolioInterface {
|
|||||||
this.updatePortfolioItems();
|
this.updatePortfolioItems();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private convertDateRangeToDate(aDateRange: DateRange, aMinDate: Date) {
|
||||||
|
let currentDate = new Date();
|
||||||
|
|
||||||
|
const normalizedMinDate =
|
||||||
|
getDate(aMinDate) === 1
|
||||||
|
? aMinDate
|
||||||
|
: add(setDate(aMinDate, 1), { months: 1 });
|
||||||
|
|
||||||
|
const year = getYear(currentDate);
|
||||||
|
const month = getMonth(currentDate);
|
||||||
|
const day = getDate(currentDate);
|
||||||
|
|
||||||
|
currentDate = new Date(Date.UTC(year, month, day, 0));
|
||||||
|
|
||||||
|
switch (aDateRange) {
|
||||||
|
case '1d':
|
||||||
|
return sub(currentDate, {
|
||||||
|
days: 1
|
||||||
|
});
|
||||||
|
case 'ytd':
|
||||||
|
currentDate = setDate(currentDate, 1);
|
||||||
|
currentDate = setMonth(currentDate, 0);
|
||||||
|
return isAfter(currentDate, normalizedMinDate)
|
||||||
|
? currentDate
|
||||||
|
: undefined;
|
||||||
|
case '1y':
|
||||||
|
currentDate = setDate(currentDate, 1);
|
||||||
|
currentDate = sub(currentDate, {
|
||||||
|
years: 1
|
||||||
|
});
|
||||||
|
return isAfter(currentDate, normalizedMinDate)
|
||||||
|
? currentDate
|
||||||
|
: undefined;
|
||||||
|
case '5y':
|
||||||
|
currentDate = setDate(currentDate, 1);
|
||||||
|
currentDate = sub(currentDate, {
|
||||||
|
years: 5
|
||||||
|
});
|
||||||
|
return isAfter(currentDate, normalizedMinDate)
|
||||||
|
? currentDate
|
||||||
|
: undefined;
|
||||||
|
default:
|
||||||
|
// Gets handled as all data
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private updatePortfolioItems() {
|
private updatePortfolioItems() {
|
||||||
// console.time('update-portfolio-items');
|
// console.time('update-portfolio-items');
|
||||||
|
|
||||||
@ -734,6 +773,10 @@ export class Portfolio implements PortfolioInterface {
|
|||||||
order.getSymbol()
|
order.getSymbol()
|
||||||
].currency = order.getCurrency();
|
].currency = order.getCurrency();
|
||||||
|
|
||||||
|
this.portfolioItems[i].positions[
|
||||||
|
order.getSymbol()
|
||||||
|
].transactionCount += 1;
|
||||||
|
|
||||||
if (order.getType() === 'BUY') {
|
if (order.getType() === 'BUY') {
|
||||||
if (
|
if (
|
||||||
!this.portfolioItems[i].positions[order.getSymbol()].firstBuyDate
|
!this.portfolioItems[i].positions[order.getSymbol()].firstBuyDate
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
|
import { groupBy } from '@ghostfolio/common/helper';
|
||||||
|
import { PortfolioPosition } from '@ghostfolio/common/interfaces';
|
||||||
import { Currency } from '@prisma/client';
|
import { Currency } from '@prisma/client';
|
||||||
import { groupBy } from 'libs/helper/src';
|
|
||||||
|
|
||||||
import { PortfolioPosition } from '../app/portfolio/interfaces/portfolio-position.interface';
|
|
||||||
import { ExchangeRateDataService } from '../services/exchange-rate-data.service';
|
import { ExchangeRateDataService } from '../services/exchange-rate-data.service';
|
||||||
import { EvaluationResult } from './interfaces/evaluation-result.interface';
|
import { EvaluationResult } from './interfaces/evaluation-result.interface';
|
||||||
import { RuleInterface } from './interfaces/rule.interface';
|
import { RuleInterface } from './interfaces/rule.interface';
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
import { PortfolioPosition } from 'apps/api/src/app/portfolio/interfaces/portfolio-position.interface';
|
import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate-data.service';
|
||||||
import { ExchangeRateDataService } from 'apps/api/src/services/exchange-rate-data.service';
|
import { PortfolioPosition } from '@ghostfolio/common/interfaces';
|
||||||
|
|
||||||
import { Rule } from '../../rule';
|
import { Rule } from '../../rule';
|
||||||
|
|
||||||
export class PlatformClusterRiskCurrentInvestment extends Rule {
|
export class AccountClusterRiskCurrentInvestment extends Rule {
|
||||||
public constructor(public exchangeRateDataService: ExchangeRateDataService) {
|
public constructor(public exchangeRateDataService: ExchangeRateDataService) {
|
||||||
super(exchangeRateDataService, {
|
super(exchangeRateDataService, {
|
||||||
name: 'Current Investment'
|
name: 'Current Investment'
|
||||||
@ -18,24 +18,22 @@ export class PlatformClusterRiskCurrentInvestment extends Rule {
|
|||||||
}
|
}
|
||||||
) {
|
) {
|
||||||
const ruleSettings =
|
const ruleSettings =
|
||||||
aRuleSettingsMap[PlatformClusterRiskCurrentInvestment.name];
|
aRuleSettingsMap[AccountClusterRiskCurrentInvestment.name];
|
||||||
|
|
||||||
const platforms: {
|
const accounts: {
|
||||||
[symbol: string]: Pick<PortfolioPosition, 'name'> & {
|
[symbol: string]: Pick<PortfolioPosition, 'name'> & {
|
||||||
investment: number;
|
investment: number;
|
||||||
};
|
};
|
||||||
} = {};
|
} = {};
|
||||||
|
|
||||||
Object.values(aPositions).forEach((position) => {
|
Object.values(aPositions).forEach((position) => {
|
||||||
for (const [platform, { current }] of Object.entries(
|
for (const [account, { current }] of Object.entries(position.accounts)) {
|
||||||
position.platforms
|
if (accounts[account]?.investment) {
|
||||||
)) {
|
accounts[account].investment += current;
|
||||||
if (platforms[platform]?.investment) {
|
|
||||||
platforms[platform].investment += current;
|
|
||||||
} else {
|
} else {
|
||||||
platforms[platform] = {
|
accounts[account] = {
|
||||||
investment: current,
|
investment: current,
|
||||||
name: platform
|
name: account
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -44,17 +42,17 @@ export class PlatformClusterRiskCurrentInvestment extends Rule {
|
|||||||
let maxItem;
|
let maxItem;
|
||||||
let totalInvestment = 0;
|
let totalInvestment = 0;
|
||||||
|
|
||||||
Object.values(platforms).forEach((platform) => {
|
Object.values(accounts).forEach((account) => {
|
||||||
if (!maxItem) {
|
if (!maxItem) {
|
||||||
maxItem = platform;
|
maxItem = account;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Calculate total investment
|
// Calculate total investment
|
||||||
totalInvestment += platform.investment;
|
totalInvestment += account.investment;
|
||||||
|
|
||||||
// Find maximum
|
// Find maximum
|
||||||
if (platform.investment > maxItem?.investment) {
|
if (account.investment > maxItem?.investment) {
|
||||||
maxItem = platform;
|
maxItem = account;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
@ -1,9 +1,9 @@
|
|||||||
import { PortfolioPosition } from 'apps/api/src/app/portfolio/interfaces/portfolio-position.interface';
|
import { PortfolioPosition } from '@ghostfolio/common/interfaces';
|
||||||
import { ExchangeRateDataService } from 'apps/api/src/services/exchange-rate-data.service';
|
import { ExchangeRateDataService } from 'apps/api/src/services/exchange-rate-data.service';
|
||||||
|
|
||||||
import { Rule } from '../../rule';
|
import { Rule } from '../../rule';
|
||||||
|
|
||||||
export class PlatformClusterRiskInitialInvestment extends Rule {
|
export class AccountClusterRiskInitialInvestment extends Rule {
|
||||||
public constructor(public exchangeRateDataService: ExchangeRateDataService) {
|
public constructor(public exchangeRateDataService: ExchangeRateDataService) {
|
||||||
super(exchangeRateDataService, {
|
super(exchangeRateDataService, {
|
||||||
name: 'Initial Investment'
|
name: 'Initial Investment'
|
||||||
@ -18,7 +18,7 @@ export class PlatformClusterRiskInitialInvestment extends Rule {
|
|||||||
}
|
}
|
||||||
) {
|
) {
|
||||||
const ruleSettings =
|
const ruleSettings =
|
||||||
aRuleSettingsMap[PlatformClusterRiskInitialInvestment.name];
|
aRuleSettingsMap[AccountClusterRiskInitialInvestment.name];
|
||||||
|
|
||||||
const platforms: {
|
const platforms: {
|
||||||
[symbol: string]: Pick<PortfolioPosition, 'name'> & {
|
[symbol: string]: Pick<PortfolioPosition, 'name'> & {
|
||||||
@ -27,15 +27,13 @@ export class PlatformClusterRiskInitialInvestment extends Rule {
|
|||||||
} = {};
|
} = {};
|
||||||
|
|
||||||
Object.values(aPositions).forEach((position) => {
|
Object.values(aPositions).forEach((position) => {
|
||||||
for (const [platform, { original }] of Object.entries(
|
for (const [account, { original }] of Object.entries(position.accounts)) {
|
||||||
position.platforms
|
if (platforms[account]?.investment) {
|
||||||
)) {
|
platforms[account].investment += original;
|
||||||
if (platforms[platform]?.investment) {
|
|
||||||
platforms[platform].investment += original;
|
|
||||||
} else {
|
} else {
|
||||||
platforms[platform] = {
|
platforms[account] = {
|
||||||
investment: original,
|
investment: original,
|
||||||
name: platform
|
name: account
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,35 +1,35 @@
|
|||||||
import { PortfolioPosition } from 'apps/api/src/app/portfolio/interfaces/portfolio-position.interface';
|
import { PortfolioPosition } from '@ghostfolio/common/interfaces';
|
||||||
import { ExchangeRateDataService } from 'apps/api/src/services/exchange-rate-data.service';
|
import { ExchangeRateDataService } from 'apps/api/src/services/exchange-rate-data.service';
|
||||||
|
|
||||||
import { Rule } from '../../rule';
|
import { Rule } from '../../rule';
|
||||||
|
|
||||||
export class PlatformClusterRiskSinglePlatform extends Rule {
|
export class AccountClusterRiskSingleAccount extends Rule {
|
||||||
public constructor(public exchangeRateDataService: ExchangeRateDataService) {
|
public constructor(public exchangeRateDataService: ExchangeRateDataService) {
|
||||||
super(exchangeRateDataService, {
|
super(exchangeRateDataService, {
|
||||||
name: 'Single Platform'
|
name: 'Single Account'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public evaluate(positions: { [symbol: string]: PortfolioPosition }) {
|
public evaluate(positions: { [symbol: string]: PortfolioPosition }) {
|
||||||
const platforms: string[] = [];
|
const accounts: string[] = [];
|
||||||
|
|
||||||
Object.values(positions).forEach((position) => {
|
Object.values(positions).forEach((position) => {
|
||||||
for (const [platform] of Object.entries(position.platforms)) {
|
for (const [account] of Object.entries(position.accounts)) {
|
||||||
if (!platforms.includes(platform)) {
|
if (!accounts.includes(account)) {
|
||||||
platforms.push(platform);
|
accounts.push(account);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
if (platforms.length === 1) {
|
if (accounts.length === 1) {
|
||||||
return {
|
return {
|
||||||
evaluation: `All your investment is managed by a single platform`,
|
evaluation: `All your investment is managed by a single account`,
|
||||||
value: false
|
value: false
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
evaluation: `Your investment is managed by ${platforms.length} platforms`,
|
evaluation: `Your investment is managed by ${accounts.length} accounts`,
|
||||||
value: true
|
value: true
|
||||||
};
|
};
|
||||||
}
|
}
|
@ -1,5 +1,5 @@
|
|||||||
import { PortfolioPosition } from 'apps/api/src/app/portfolio/interfaces/portfolio-position.interface';
|
import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate-data.service';
|
||||||
import { ExchangeRateDataService } from 'apps/api/src/services/exchange-rate-data.service';
|
import { PortfolioPosition } from '@ghostfolio/common/interfaces';
|
||||||
|
|
||||||
import { Rule } from '../../rule';
|
import { Rule } from '../../rule';
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { PortfolioPosition } from 'apps/api/src/app/portfolio/interfaces/portfolio-position.interface';
|
import { PortfolioPosition } from '@ghostfolio/common/interfaces';
|
||||||
import { ExchangeRateDataService } from 'apps/api/src/services/exchange-rate-data.service';
|
import { ExchangeRateDataService } from 'apps/api/src/services/exchange-rate-data.service';
|
||||||
|
|
||||||
import { Rule } from '../../rule';
|
import { Rule } from '../../rule';
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { PortfolioPosition } from 'apps/api/src/app/portfolio/interfaces/portfolio-position.interface';
|
import { PortfolioPosition } from '@ghostfolio/common/interfaces';
|
||||||
import { ExchangeRateDataService } from 'apps/api/src/services/exchange-rate-data.service';
|
import { ExchangeRateDataService } from 'apps/api/src/services/exchange-rate-data.service';
|
||||||
|
|
||||||
import { Rule } from '../../rule';
|
import { Rule } from '../../rule';
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { PortfolioPosition } from 'apps/api/src/app/portfolio/interfaces/portfolio-position.interface';
|
import { PortfolioPosition } from '@ghostfolio/common/interfaces';
|
||||||
import { ExchangeRateDataService } from 'apps/api/src/services/exchange-rate-data.service';
|
import { ExchangeRateDataService } from 'apps/api/src/services/exchange-rate-data.service';
|
||||||
|
|
||||||
import { Rule } from '../../rule';
|
import { Rule } from '../../rule';
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { PortfolioPosition } from 'apps/api/src/app/portfolio/interfaces/portfolio-position.interface';
|
import { PortfolioPosition } from '@ghostfolio/common/interfaces';
|
||||||
import { ExchangeRateDataService } from 'apps/api/src/services/exchange-rate-data.service';
|
import { ExchangeRateDataService } from 'apps/api/src/services/exchange-rate-data.service';
|
||||||
|
|
||||||
import { Rule } from '../../rule';
|
import { Rule } from '../../rule';
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import { Injectable } from '@nestjs/common';
|
import { Injectable } from '@nestjs/common';
|
||||||
import { bool, cleanEnv, num, port, str } from 'envalid';
|
import { DataSource } from '@prisma/client';
|
||||||
|
import { bool, cleanEnv, host, json, num, port, str } from 'envalid';
|
||||||
|
|
||||||
import { Environment } from './interfaces/environment.interface';
|
import { Environment } from './interfaces/environment.interface';
|
||||||
|
|
||||||
@ -12,8 +13,11 @@ export class ConfigurationService {
|
|||||||
ACCESS_TOKEN_SALT: str(),
|
ACCESS_TOKEN_SALT: str(),
|
||||||
ALPHA_VANTAGE_API_KEY: str({ default: '' }),
|
ALPHA_VANTAGE_API_KEY: str({ default: '' }),
|
||||||
CACHE_TTL: num({ default: 1 }),
|
CACHE_TTL: num({ default: 1 }),
|
||||||
|
DATA_SOURCES: json({ default: JSON.stringify([DataSource.YAHOO]) }),
|
||||||
|
ENABLE_FEATURE_CUSTOM_SYMBOLS: bool({ default: false }),
|
||||||
ENABLE_FEATURE_FEAR_AND_GREED_INDEX: bool({ default: false }),
|
ENABLE_FEATURE_FEAR_AND_GREED_INDEX: bool({ default: false }),
|
||||||
ENABLE_FEATURE_SOCIAL_LOGIN: bool({ default: false }),
|
ENABLE_FEATURE_SOCIAL_LOGIN: bool({ default: false }),
|
||||||
|
ENABLE_FEATURE_SUBSCRIPTION: bool({ default: false }),
|
||||||
GOOGLE_CLIENT_ID: str({ default: 'dummyClientId' }),
|
GOOGLE_CLIENT_ID: str({ default: 'dummyClientId' }),
|
||||||
GOOGLE_SECRET: str({ default: 'dummySecret' }),
|
GOOGLE_SECRET: str({ default: 'dummySecret' }),
|
||||||
JWT_SECRET_KEY: str({}),
|
JWT_SECRET_KEY: str({}),
|
||||||
@ -22,7 +26,8 @@ export class ConfigurationService {
|
|||||||
RAKUTEN_RAPID_API_KEY: str({ default: '' }),
|
RAKUTEN_RAPID_API_KEY: str({ default: '' }),
|
||||||
REDIS_HOST: str({ default: 'localhost' }),
|
REDIS_HOST: str({ default: 'localhost' }),
|
||||||
REDIS_PORT: port({ default: 6379 }),
|
REDIS_PORT: port({ default: 6379 }),
|
||||||
ROOT_URL: str({ default: 'http://localhost:4200' })
|
ROOT_URL: str({ default: 'http://localhost:4200' }),
|
||||||
|
WEB_AUTH_RP_ID: host({ default: 'localhost' })
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,4 +1,11 @@
|
|||||||
|
import { benchmarks, currencyPairs } from '@ghostfolio/common/config';
|
||||||
|
import {
|
||||||
|
getUtc,
|
||||||
|
isGhostfolioScraperApiSymbol,
|
||||||
|
resetHours
|
||||||
|
} from '@ghostfolio/common/helper';
|
||||||
import { Injectable } from '@nestjs/common';
|
import { Injectable } from '@nestjs/common';
|
||||||
|
import { DataSource } from '@prisma/client';
|
||||||
import {
|
import {
|
||||||
differenceInHours,
|
differenceInHours,
|
||||||
format,
|
format,
|
||||||
@ -8,11 +15,11 @@ import {
|
|||||||
isBefore,
|
isBefore,
|
||||||
subDays
|
subDays
|
||||||
} from 'date-fns';
|
} from 'date-fns';
|
||||||
import { benchmarks, currencyPairs } from 'libs/helper/src';
|
|
||||||
import { getUtc, resetHours } from 'libs/helper/src';
|
|
||||||
|
|
||||||
import { ConfigurationService } from './configuration.service';
|
import { ConfigurationService } from './configuration.service';
|
||||||
import { DataProviderService } from './data-provider.service';
|
import { DataProviderService } from './data-provider.service';
|
||||||
|
import { GhostfolioScraperApiService } from './data-provider/ghostfolio-scraper-api/ghostfolio-scraper-api.service';
|
||||||
|
import { IDataGatheringItem } from './interfaces/interfaces';
|
||||||
import { PrismaService } from './prisma.service';
|
import { PrismaService } from './prisma.service';
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
@ -20,6 +27,7 @@ export class DataGatheringService {
|
|||||||
public constructor(
|
public constructor(
|
||||||
private readonly configurationService: ConfigurationService,
|
private readonly configurationService: ConfigurationService,
|
||||||
private readonly dataProviderService: DataProviderService,
|
private readonly dataProviderService: DataProviderService,
|
||||||
|
private readonly ghostfolioScraperApi: GhostfolioScraperApiService,
|
||||||
private prisma: PrismaService
|
private prisma: PrismaService
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
@ -109,15 +117,13 @@ export class DataGatheringService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public async gatherSymbols(
|
public async gatherSymbols(aSymbolsWithStartDate: IDataGatheringItem[]) {
|
||||||
aSymbolsWithStartDate: { date: Date; symbol: string }[]
|
|
||||||
) {
|
|
||||||
let hasError = false;
|
let hasError = false;
|
||||||
|
|
||||||
for (const { date, symbol } of aSymbolsWithStartDate) {
|
for (const { dataSource, date, symbol } of aSymbolsWithStartDate) {
|
||||||
try {
|
try {
|
||||||
const historicalData = await this.dataProviderService.getHistoricalRaw(
|
const historicalData = await this.dataProviderService.getHistoricalRaw(
|
||||||
[symbol],
|
[{ dataSource, symbol }],
|
||||||
date,
|
date,
|
||||||
new Date()
|
new Date()
|
||||||
);
|
);
|
||||||
@ -178,9 +184,24 @@ export class DataGatheringService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private getBenchmarksToGather(startDate: Date) {
|
public async getCustomSymbolsToGather(
|
||||||
const benchmarksToGather = benchmarks.map((symbol) => {
|
startDate?: Date
|
||||||
|
): Promise<IDataGatheringItem[]> {
|
||||||
|
const scraperConfigurations = await this.ghostfolioScraperApi.getScraperConfigurations();
|
||||||
|
|
||||||
|
return scraperConfigurations.map((scraperConfiguration) => {
|
||||||
return {
|
return {
|
||||||
|
dataSource: DataSource.GHOSTFOLIO,
|
||||||
|
date: startDate,
|
||||||
|
symbol: scraperConfiguration.symbol
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private getBenchmarksToGather(startDate: Date): IDataGatheringItem[] {
|
||||||
|
const benchmarksToGather = benchmarks.map(({ dataSource, symbol }) => {
|
||||||
|
return {
|
||||||
|
dataSource,
|
||||||
symbol,
|
symbol,
|
||||||
date: startDate
|
date: startDate
|
||||||
};
|
};
|
||||||
@ -188,6 +209,7 @@ export class DataGatheringService {
|
|||||||
|
|
||||||
if (this.configurationService.get('ENABLE_FEATURE_FEAR_AND_GREED_INDEX')) {
|
if (this.configurationService.get('ENABLE_FEATURE_FEAR_AND_GREED_INDEX')) {
|
||||||
benchmarksToGather.push({
|
benchmarksToGather.push({
|
||||||
|
dataSource: DataSource.RAKUTEN,
|
||||||
date: startDate,
|
date: startDate,
|
||||||
symbol: 'GF.FEAR_AND_GREED_INDEX'
|
symbol: 'GF.FEAR_AND_GREED_INDEX'
|
||||||
});
|
});
|
||||||
@ -196,54 +218,74 @@ export class DataGatheringService {
|
|||||||
return benchmarksToGather;
|
return benchmarksToGather;
|
||||||
}
|
}
|
||||||
|
|
||||||
private async getSymbols7D(): Promise<{ date: Date; symbol: string }[]> {
|
private async getSymbols7D(): Promise<IDataGatheringItem[]> {
|
||||||
const startDate = subDays(resetHours(new Date()), 7);
|
const startDate = subDays(resetHours(new Date()), 7);
|
||||||
|
|
||||||
let distinctOrders = await this.prisma.order.findMany({
|
const distinctOrders = await this.prisma.order.findMany({
|
||||||
distinct: ['symbol'],
|
distinct: ['symbol'],
|
||||||
orderBy: [{ symbol: 'asc' }],
|
orderBy: [{ symbol: 'asc' }],
|
||||||
select: { symbol: true }
|
select: { dataSource: true, symbol: true }
|
||||||
});
|
});
|
||||||
|
|
||||||
const distinctOrdersWithDate = distinctOrders.map((distinctOrder) => {
|
const distinctOrdersWithDate: IDataGatheringItem[] = distinctOrders
|
||||||
|
.filter((distinctOrder) => {
|
||||||
|
return !isGhostfolioScraperApiSymbol(distinctOrder.symbol);
|
||||||
|
})
|
||||||
|
.map((distinctOrder) => {
|
||||||
return {
|
return {
|
||||||
...distinctOrder,
|
...distinctOrder,
|
||||||
date: startDate
|
date: startDate
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
const currencyPairsToGather = currencyPairs.map((symbol) => {
|
const currencyPairsToGather = currencyPairs.map(
|
||||||
|
({ dataSource, symbol }) => {
|
||||||
return {
|
return {
|
||||||
|
dataSource,
|
||||||
symbol,
|
symbol,
|
||||||
date: startDate
|
date: startDate
|
||||||
};
|
};
|
||||||
});
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
const customSymbolsToGather = await this.getCustomSymbolsToGather(
|
||||||
|
startDate
|
||||||
|
);
|
||||||
|
|
||||||
return [
|
return [
|
||||||
...this.getBenchmarksToGather(startDate),
|
...this.getBenchmarksToGather(startDate),
|
||||||
|
...customSymbolsToGather,
|
||||||
...currencyPairsToGather,
|
...currencyPairsToGather,
|
||||||
...distinctOrdersWithDate
|
...distinctOrdersWithDate
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
private async getSymbolsMax() {
|
private async getSymbolsMax(): Promise<IDataGatheringItem[]> {
|
||||||
const startDate = new Date(getUtc('2000-01-01'));
|
const startDate = new Date(getUtc('2015-01-01'));
|
||||||
|
|
||||||
let distinctOrders = await this.prisma.order.findMany({
|
const customSymbolsToGather = await this.getCustomSymbolsToGather(
|
||||||
distinct: ['symbol'],
|
startDate
|
||||||
orderBy: [{ date: 'asc' }],
|
);
|
||||||
select: { date: true, symbol: true }
|
|
||||||
});
|
|
||||||
|
|
||||||
const currencyPairsToGather = currencyPairs.map((symbol) => {
|
const currencyPairsToGather = currencyPairs.map(
|
||||||
|
({ dataSource, symbol }) => {
|
||||||
return {
|
return {
|
||||||
|
dataSource,
|
||||||
symbol,
|
symbol,
|
||||||
date: startDate
|
date: startDate
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
const distinctOrders = await this.prisma.order.findMany({
|
||||||
|
distinct: ['symbol'],
|
||||||
|
orderBy: [{ date: 'asc' }],
|
||||||
|
select: { dataSource: true, date: true, symbol: true }
|
||||||
});
|
});
|
||||||
|
|
||||||
return [
|
return [
|
||||||
...this.getBenchmarksToGather(startDate),
|
...this.getBenchmarksToGather(startDate),
|
||||||
|
...customSymbolsToGather,
|
||||||
...currencyPairsToGather,
|
...currencyPairsToGather,
|
||||||
...distinctOrders
|
...distinctOrders
|
||||||
];
|
];
|
||||||
|
@ -1,25 +1,30 @@
|
|||||||
import { isCrypto, isRakutenRapidApi } from '@ghostfolio/helper';
|
import {
|
||||||
|
isGhostfolioScraperApiSymbol,
|
||||||
|
isRakutenRapidApiSymbol
|
||||||
|
} from '@ghostfolio/common/helper';
|
||||||
|
import { Granularity } from '@ghostfolio/common/types';
|
||||||
import { Injectable } from '@nestjs/common';
|
import { Injectable } from '@nestjs/common';
|
||||||
import { MarketData } from '@prisma/client';
|
import { DataSource, MarketData } from '@prisma/client';
|
||||||
import { format } from 'date-fns';
|
import { format } from 'date-fns';
|
||||||
|
|
||||||
import { ConfigurationService } from './configuration.service';
|
import { ConfigurationService } from './configuration.service';
|
||||||
import { AlphaVantageService } from './data-provider/alpha-vantage/alpha-vantage.service';
|
import { AlphaVantageService } from './data-provider/alpha-vantage/alpha-vantage.service';
|
||||||
|
import { GhostfolioScraperApiService } from './data-provider/ghostfolio-scraper-api/ghostfolio-scraper-api.service';
|
||||||
import { RakutenRapidApiService } from './data-provider/rakuten-rapid-api/rakuten-rapid-api.service';
|
import { RakutenRapidApiService } from './data-provider/rakuten-rapid-api/rakuten-rapid-api.service';
|
||||||
import { YahooFinanceService } from './data-provider/yahoo-finance/yahoo-finance.service';
|
import { YahooFinanceService } from './data-provider/yahoo-finance/yahoo-finance.service';
|
||||||
import { DataProviderInterface } from './interfaces/data-provider.interface';
|
|
||||||
import { Granularity } from './interfaces/granularity.type';
|
|
||||||
import {
|
import {
|
||||||
|
IDataGatheringItem,
|
||||||
IDataProviderHistoricalResponse,
|
IDataProviderHistoricalResponse,
|
||||||
IDataProviderResponse
|
IDataProviderResponse
|
||||||
} from './interfaces/interfaces';
|
} from './interfaces/interfaces';
|
||||||
import { PrismaService } from './prisma.service';
|
import { PrismaService } from './prisma.service';
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class DataProviderService implements DataProviderInterface {
|
export class DataProviderService {
|
||||||
public constructor(
|
public constructor(
|
||||||
private readonly alphaVantageService: AlphaVantageService,
|
private readonly alphaVantageService: AlphaVantageService,
|
||||||
private readonly configurationService: ConfigurationService,
|
private readonly configurationService: ConfigurationService,
|
||||||
|
private readonly ghostfolioScraperApiService: GhostfolioScraperApiService,
|
||||||
private prisma: PrismaService,
|
private prisma: PrismaService,
|
||||||
private readonly rakutenRapidApiService: RakutenRapidApiService,
|
private readonly rakutenRapidApiService: RakutenRapidApiService,
|
||||||
private readonly yahooFinanceService: YahooFinanceService
|
private readonly yahooFinanceService: YahooFinanceService
|
||||||
@ -33,12 +38,33 @@ export class DataProviderService implements DataProviderInterface {
|
|||||||
if (aSymbols.length === 1) {
|
if (aSymbols.length === 1) {
|
||||||
const symbol = aSymbols[0];
|
const symbol = aSymbols[0];
|
||||||
|
|
||||||
if (isRakutenRapidApi(symbol)) {
|
if (isGhostfolioScraperApiSymbol(symbol)) {
|
||||||
|
return this.ghostfolioScraperApiService.get(aSymbols);
|
||||||
|
} else if (isRakutenRapidApiSymbol(symbol)) {
|
||||||
return this.rakutenRapidApiService.get(aSymbols);
|
return this.rakutenRapidApiService.get(aSymbols);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.yahooFinanceService.get(aSymbols);
|
const yahooFinanceSymbols = aSymbols.filter((symbol) => {
|
||||||
|
return !isGhostfolioScraperApiSymbol(symbol);
|
||||||
|
});
|
||||||
|
|
||||||
|
const response = await this.yahooFinanceService.get(yahooFinanceSymbols);
|
||||||
|
|
||||||
|
const ghostfolioScraperApiSymbols = aSymbols.filter((symbol) => {
|
||||||
|
return isGhostfolioScraperApiSymbol(symbol);
|
||||||
|
});
|
||||||
|
|
||||||
|
for (const symbol of ghostfolioScraperApiSymbols) {
|
||||||
|
if (symbol) {
|
||||||
|
const ghostfolioScraperApiResult = await this.ghostfolioScraperApiService.get(
|
||||||
|
[symbol]
|
||||||
|
);
|
||||||
|
response[symbol] = ghostfolioScraperApiResult[symbol];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return response;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async getHistorical(
|
public async getHistorical(
|
||||||
@ -53,12 +79,12 @@ export class DataProviderService implements DataProviderInterface {
|
|||||||
[symbol: string]: { [date: string]: IDataProviderHistoricalResponse };
|
[symbol: string]: { [date: string]: IDataProviderHistoricalResponse };
|
||||||
} = {};
|
} = {};
|
||||||
|
|
||||||
let granularityQuery =
|
const granularityQuery =
|
||||||
aGranularity === 'month'
|
aGranularity === 'month'
|
||||||
? `AND (date_part('day', date) = 1 OR date >= TIMESTAMP 'yesterday')`
|
? `AND (date_part('day', date) = 1 OR date >= TIMESTAMP 'yesterday')`
|
||||||
: '';
|
: '';
|
||||||
|
|
||||||
let rangeQuery =
|
const rangeQuery =
|
||||||
from && to
|
from && to
|
||||||
? `AND date >= '${format(from, 'yyyy-MM-dd')}' AND date <= '${format(
|
? `AND date >= '${format(from, 'yyyy-MM-dd')}' AND date <= '${format(
|
||||||
to,
|
to,
|
||||||
@ -93,55 +119,57 @@ export class DataProviderService implements DataProviderInterface {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public async getHistoricalRaw(
|
public async getHistoricalRaw(
|
||||||
aSymbols: string[],
|
aDataGatheringItems: IDataGatheringItem[],
|
||||||
from: Date,
|
from: Date,
|
||||||
to: Date
|
to: Date
|
||||||
): Promise<{
|
): Promise<{
|
||||||
[symbol: string]: { [date: string]: IDataProviderHistoricalResponse };
|
[symbol: string]: { [date: string]: IDataProviderHistoricalResponse };
|
||||||
}> {
|
}> {
|
||||||
const dataOfYahoo = await this.yahooFinanceService.getHistorical(
|
const result: {
|
||||||
aSymbols,
|
[symbol: string]: { [date: string]: IDataProviderHistoricalResponse };
|
||||||
undefined,
|
} = {};
|
||||||
from,
|
|
||||||
to
|
const promises: Promise<{
|
||||||
|
data: { [date: string]: IDataProviderHistoricalResponse };
|
||||||
|
symbol: string;
|
||||||
|
}>[] = [];
|
||||||
|
for (const { dataSource, symbol } of aDataGatheringItems) {
|
||||||
|
const dataProvider = this.getDataProvider(dataSource);
|
||||||
|
if (dataProvider.canHandle(symbol)) {
|
||||||
|
promises.push(
|
||||||
|
dataProvider
|
||||||
|
.getHistorical([symbol], undefined, from, to)
|
||||||
|
.then((data) => ({ data: data?.[symbol], symbol }))
|
||||||
);
|
);
|
||||||
|
|
||||||
if (aSymbols.length === 1) {
|
|
||||||
const symbol = aSymbols[0];
|
|
||||||
|
|
||||||
if (
|
|
||||||
isCrypto(symbol) &&
|
|
||||||
this.configurationService.get('ALPHA_VANTAGE_API_KEY')
|
|
||||||
) {
|
|
||||||
// Merge data from Yahoo with data from Alpha Vantage
|
|
||||||
const dataOfAlphaVantage = await this.alphaVantageService.getHistorical(
|
|
||||||
[symbol],
|
|
||||||
undefined,
|
|
||||||
from,
|
|
||||||
to
|
|
||||||
);
|
|
||||||
|
|
||||||
return {
|
|
||||||
[symbol]: {
|
|
||||||
...dataOfYahoo[symbol],
|
|
||||||
...dataOfAlphaVantage[symbol]
|
|
||||||
}
|
|
||||||
};
|
|
||||||
} else if (
|
|
||||||
isRakutenRapidApi(symbol) &&
|
|
||||||
this.configurationService.get('RAKUTEN_RAPID_API_KEY')
|
|
||||||
) {
|
|
||||||
const dataOfRakutenRapidApi = await this.rakutenRapidApiService.getHistorical(
|
|
||||||
[symbol],
|
|
||||||
undefined,
|
|
||||||
from,
|
|
||||||
to
|
|
||||||
);
|
|
||||||
|
|
||||||
return dataOfRakutenRapidApi;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return dataOfYahoo;
|
const allData = await Promise.all(promises);
|
||||||
|
for (const { data, symbol } of allData) {
|
||||||
|
result[symbol] = data;
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async search(aSymbol: string) {
|
||||||
|
return this.getDataProvider(
|
||||||
|
<DataSource>this.configurationService.get('DATA_SOURCES')[0]
|
||||||
|
).search(aSymbol);
|
||||||
|
}
|
||||||
|
|
||||||
|
private getDataProvider(providerName: DataSource) {
|
||||||
|
switch (providerName) {
|
||||||
|
case DataSource.ALPHA_VANTAGE:
|
||||||
|
return this.alphaVantageService;
|
||||||
|
case DataSource.GHOSTFOLIO:
|
||||||
|
return this.ghostfolioScraperApiService;
|
||||||
|
case DataSource.RAKUTEN:
|
||||||
|
return this.rakutenRapidApiService;
|
||||||
|
case DataSource.YAHOO:
|
||||||
|
return this.yahooFinanceService;
|
||||||
|
default:
|
||||||
|
throw new Error('No data provider has been found.');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
|
import { LookupItem } from '@ghostfolio/api/app/symbol/interfaces/lookup-item.interface';
|
||||||
|
import { Granularity } from '@ghostfolio/common/types';
|
||||||
import { Injectable } from '@nestjs/common';
|
import { Injectable } from '@nestjs/common';
|
||||||
|
import { DataSource } from '@prisma/client';
|
||||||
import { isAfter, isBefore, parse } from 'date-fns';
|
import { isAfter, isBefore, parse } from 'date-fns';
|
||||||
|
|
||||||
import { ConfigurationService } from '../../configuration.service';
|
import { ConfigurationService } from '../../configuration.service';
|
||||||
import { DataProviderInterface } from '../../interfaces/data-provider.interface';
|
import { DataProviderInterface } from '../../interfaces/data-provider.interface';
|
||||||
import { Granularity } from '../../interfaces/granularity.type';
|
|
||||||
import {
|
import {
|
||||||
IDataProviderHistoricalResponse,
|
IDataProviderHistoricalResponse,
|
||||||
IDataProviderResponse
|
IDataProviderResponse
|
||||||
@ -22,6 +24,10 @@ export class AlphaVantageService implements DataProviderInterface {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public canHandle(symbol: string) {
|
||||||
|
return !!this.configurationService.get('ALPHA_VANTAGE_API_KEY');
|
||||||
|
}
|
||||||
|
|
||||||
public async get(
|
public async get(
|
||||||
aSymbols: string[]
|
aSymbols: string[]
|
||||||
): Promise<{ [symbol: string]: IDataProviderResponse }> {
|
): Promise<{ [symbol: string]: IDataProviderResponse }> {
|
||||||
@ -77,7 +83,17 @@ export class AlphaVantageService implements DataProviderInterface {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public search(aSymbol: string) {
|
public async search(aSymbol: string): Promise<{ items: LookupItem[] }> {
|
||||||
return this.alphaVantage.data.search(aSymbol);
|
const result = await this.alphaVantage.data.search(aSymbol);
|
||||||
|
|
||||||
|
return {
|
||||||
|
items: result?.bestMatches?.map((bestMatch) => {
|
||||||
|
return {
|
||||||
|
dataSource: DataSource.ALPHA_VANTAGE,
|
||||||
|
name: bestMatch['2. name'],
|
||||||
|
symbol: bestMatch['1. symbol']
|
||||||
|
};
|
||||||
|
})
|
||||||
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,148 @@
|
|||||||
|
import {
|
||||||
|
getYesterday,
|
||||||
|
isGhostfolioScraperApiSymbol
|
||||||
|
} from '@ghostfolio/common/helper';
|
||||||
|
import { Granularity } from '@ghostfolio/common/types';
|
||||||
|
import { Injectable } from '@nestjs/common';
|
||||||
|
import { DataSource } from '@prisma/client';
|
||||||
|
import * as bent from 'bent';
|
||||||
|
import * as cheerio from 'cheerio';
|
||||||
|
import { format } from 'date-fns';
|
||||||
|
|
||||||
|
import { DataProviderInterface } from '../../interfaces/data-provider.interface';
|
||||||
|
import {
|
||||||
|
IDataProviderHistoricalResponse,
|
||||||
|
IDataProviderResponse,
|
||||||
|
MarketState
|
||||||
|
} from '../../interfaces/interfaces';
|
||||||
|
import { PrismaService } from '../../prisma.service';
|
||||||
|
import { ScraperConfig } from './interfaces/scraper-config.interface';
|
||||||
|
|
||||||
|
@Injectable()
|
||||||
|
export class GhostfolioScraperApiService implements DataProviderInterface {
|
||||||
|
private static NUMERIC_REGEXP = /[-]{0,1}[\d]*[.,]{0,1}[\d]+/g;
|
||||||
|
|
||||||
|
public constructor(private prisma: PrismaService) {}
|
||||||
|
|
||||||
|
public canHandle(symbol: string) {
|
||||||
|
return isGhostfolioScraperApiSymbol(symbol);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async get(
|
||||||
|
aSymbols: string[]
|
||||||
|
): Promise<{ [symbol: string]: IDataProviderResponse }> {
|
||||||
|
if (aSymbols.length <= 0) {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const symbol = aSymbols[0];
|
||||||
|
|
||||||
|
const scraperConfig = await this.getScraperConfigurationBySymbol(symbol);
|
||||||
|
|
||||||
|
const { marketPrice } = await this.prisma.marketData.findFirst({
|
||||||
|
orderBy: {
|
||||||
|
date: 'desc'
|
||||||
|
},
|
||||||
|
where: {
|
||||||
|
symbol
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return {
|
||||||
|
[symbol]: {
|
||||||
|
marketPrice,
|
||||||
|
currency: scraperConfig?.currency,
|
||||||
|
dataSource: DataSource.GHOSTFOLIO,
|
||||||
|
marketState: MarketState.delayed,
|
||||||
|
name: scraperConfig?.name
|
||||||
|
}
|
||||||
|
};
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
}
|
||||||
|
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
public async getHistorical(
|
||||||
|
aSymbols: string[],
|
||||||
|
aGranularity: Granularity = 'day',
|
||||||
|
from: Date,
|
||||||
|
to: Date
|
||||||
|
): Promise<{
|
||||||
|
[symbol: string]: { [date: string]: IDataProviderHistoricalResponse };
|
||||||
|
}> {
|
||||||
|
if (aSymbols.length <= 0) {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const symbol = aSymbols[0];
|
||||||
|
|
||||||
|
const scraperConfiguration = await this.getScraperConfigurationBySymbol(
|
||||||
|
symbol
|
||||||
|
);
|
||||||
|
|
||||||
|
const get = bent(scraperConfiguration?.url, 'GET', 'string', 200, {});
|
||||||
|
|
||||||
|
const html = await get();
|
||||||
|
const $ = cheerio.load(html);
|
||||||
|
|
||||||
|
const value = this.extractNumberFromString(
|
||||||
|
$(scraperConfiguration?.selector).text()
|
||||||
|
);
|
||||||
|
|
||||||
|
return {
|
||||||
|
[symbol]: {
|
||||||
|
[format(getYesterday(), 'yyyy-MM-dd')]: {
|
||||||
|
marketPrice: value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
}
|
||||||
|
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
public async getScraperConfigurations(): Promise<ScraperConfig[]> {
|
||||||
|
try {
|
||||||
|
const {
|
||||||
|
value: scraperConfigString
|
||||||
|
} = await this.prisma.property.findFirst({
|
||||||
|
select: {
|
||||||
|
value: true
|
||||||
|
},
|
||||||
|
where: { key: 'SCRAPER_CONFIG' }
|
||||||
|
});
|
||||||
|
|
||||||
|
return JSON.parse(scraperConfigString);
|
||||||
|
} catch {}
|
||||||
|
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
|
public async search(aSymbol: string) {
|
||||||
|
return { items: [] };
|
||||||
|
}
|
||||||
|
|
||||||
|
private extractNumberFromString(aString: string): number {
|
||||||
|
try {
|
||||||
|
const [numberString] = aString.match(
|
||||||
|
GhostfolioScraperApiService.NUMERIC_REGEXP
|
||||||
|
);
|
||||||
|
return parseFloat(numberString.trim());
|
||||||
|
} catch {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async getScraperConfigurationBySymbol(aSymbol: string) {
|
||||||
|
const scraperConfigurations = await this.getScraperConfigurations();
|
||||||
|
return scraperConfigurations.find((scraperConfiguration) => {
|
||||||
|
return scraperConfiguration.symbol === aSymbol;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
import { Currency } from '@prisma/client';
|
||||||
|
|
||||||
|
export interface ScraperConfig {
|
||||||
|
currency: Currency;
|
||||||
|
name: string;
|
||||||
|
selector: string;
|
||||||
|
symbol: string;
|
||||||
|
url: string;
|
||||||
|
}
|
@ -1,14 +1,20 @@
|
|||||||
|
import {
|
||||||
|
getToday,
|
||||||
|
getYesterday,
|
||||||
|
isRakutenRapidApiSymbol
|
||||||
|
} from '@ghostfolio/common/helper';
|
||||||
|
import { Granularity } from '@ghostfolio/common/types';
|
||||||
import { Injectable } from '@nestjs/common';
|
import { Injectable } from '@nestjs/common';
|
||||||
|
import { DataSource } from '@prisma/client';
|
||||||
import * as bent from 'bent';
|
import * as bent from 'bent';
|
||||||
import { format, subMonths, subWeeks, subYears } from 'date-fns';
|
import { format, subMonths, subWeeks, subYears } from 'date-fns';
|
||||||
import { getToday, getYesterday } from 'libs/helper/src';
|
|
||||||
|
|
||||||
import { ConfigurationService } from '../../configuration.service';
|
import { ConfigurationService } from '../../configuration.service';
|
||||||
import { DataProviderInterface } from '../../interfaces/data-provider.interface';
|
import { DataProviderInterface } from '../../interfaces/data-provider.interface';
|
||||||
import { Granularity } from '../../interfaces/granularity.type';
|
|
||||||
import {
|
import {
|
||||||
IDataProviderHistoricalResponse,
|
IDataProviderHistoricalResponse,
|
||||||
IDataProviderResponse
|
IDataProviderResponse,
|
||||||
|
MarketState
|
||||||
} from '../../interfaces/interfaces';
|
} from '../../interfaces/interfaces';
|
||||||
import { PrismaService } from '../../prisma.service';
|
import { PrismaService } from '../../prisma.service';
|
||||||
|
|
||||||
@ -22,6 +28,13 @@ export class RakutenRapidApiService implements DataProviderInterface {
|
|||||||
private readonly configurationService: ConfigurationService
|
private readonly configurationService: ConfigurationService
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
|
public canHandle(symbol: string) {
|
||||||
|
return (
|
||||||
|
isRakutenRapidApiSymbol(symbol) &&
|
||||||
|
!!this.configurationService.get('RAKUTEN_RAPID_API_KEY')
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
public async get(
|
public async get(
|
||||||
aSymbols: string[]
|
aSymbols: string[]
|
||||||
): Promise<{ [symbol: string]: IDataProviderResponse }> {
|
): Promise<{ [symbol: string]: IDataProviderResponse }> {
|
||||||
@ -38,8 +51,9 @@ export class RakutenRapidApiService implements DataProviderInterface {
|
|||||||
return {
|
return {
|
||||||
'GF.FEAR_AND_GREED_INDEX': {
|
'GF.FEAR_AND_GREED_INDEX': {
|
||||||
currency: undefined,
|
currency: undefined,
|
||||||
isMarketOpen: true,
|
dataSource: DataSource.RAKUTEN,
|
||||||
marketPrice: fgi.now.value,
|
marketPrice: fgi.now.value,
|
||||||
|
marketState: MarketState.open,
|
||||||
name: RakutenRapidApiService.FEAR_AND_GREED_INDEX_NAME
|
name: RakutenRapidApiService.FEAR_AND_GREED_INDEX_NAME
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -114,6 +128,14 @@ export class RakutenRapidApiService implements DataProviderInterface {
|
|||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async search(aSymbol: string) {
|
||||||
|
return { items: [] };
|
||||||
|
}
|
||||||
|
|
||||||
|
public setPrisma(aPrismaService: PrismaService) {
|
||||||
|
this.prisma = aPrismaService;
|
||||||
|
}
|
||||||
|
|
||||||
private async getFearAndGreedIndex(): Promise<{
|
private async getFearAndGreedIndex(): Promise<{
|
||||||
now: { value: number; valueText: string };
|
now: { value: number; valueText: string };
|
||||||
previousClose: { value: number; valueText: string };
|
previousClose: { value: number; valueText: string };
|
||||||
@ -144,8 +166,4 @@ export class RakutenRapidApiService implements DataProviderInterface {
|
|||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public setPrisma(aPrismaService: PrismaService) {
|
|
||||||
this.prisma = aPrismaService;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,24 +0,0 @@
|
|||||||
/*
|
|
||||||
import { Test } from '@nestjs/testing';
|
|
||||||
|
|
||||||
import { YahooFinanceService } from './yahoo-finance.service';
|
|
||||||
|
|
||||||
describe('AppService', () => {
|
|
||||||
let service: YahooFinanceService;
|
|
||||||
|
|
||||||
beforeAll(async () => {
|
|
||||||
const app = await Test.createTestingModule({
|
|
||||||
imports: [],
|
|
||||||
providers: [YahooFinanceService]
|
|
||||||
}).compile();
|
|
||||||
|
|
||||||
service = app.get<YahooFinanceService>(YahooFinanceService);
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('get', () => {
|
|
||||||
it('should return data for USDCHF', () => {
|
|
||||||
expect(service.get(['USDCHF'])).toEqual('{}');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
*/
|
|
@ -1,14 +1,19 @@
|
|||||||
|
import { LookupItem } from '@ghostfolio/api/app/symbol/interfaces/lookup-item.interface';
|
||||||
|
import { UNKNOWN_KEY } from '@ghostfolio/common/config';
|
||||||
|
import { isCrypto, isCurrency, parseCurrency } from '@ghostfolio/common/helper';
|
||||||
|
import { Granularity } from '@ghostfolio/common/types';
|
||||||
import { Injectable } from '@nestjs/common';
|
import { Injectable } from '@nestjs/common';
|
||||||
|
import { DataSource } from '@prisma/client';
|
||||||
|
import * as bent from 'bent';
|
||||||
import { format } from 'date-fns';
|
import { format } from 'date-fns';
|
||||||
import { isCrypto, isCurrency, parseCurrency } from 'libs/helper/src';
|
|
||||||
import * as yahooFinance from 'yahoo-finance';
|
import * as yahooFinance from 'yahoo-finance';
|
||||||
|
|
||||||
import { DataProviderInterface } from '../../interfaces/data-provider.interface';
|
import { DataProviderInterface } from '../../interfaces/data-provider.interface';
|
||||||
import { Granularity } from '../../interfaces/granularity.type';
|
|
||||||
import {
|
import {
|
||||||
IDataProviderHistoricalResponse,
|
IDataProviderHistoricalResponse,
|
||||||
IDataProviderResponse,
|
IDataProviderResponse,
|
||||||
Industry,
|
Industry,
|
||||||
|
MarketState,
|
||||||
Sector,
|
Sector,
|
||||||
Type
|
Type
|
||||||
} from '../../interfaces/interfaces';
|
} from '../../interfaces/interfaces';
|
||||||
@ -19,8 +24,14 @@ import {
|
|||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class YahooFinanceService implements DataProviderInterface {
|
export class YahooFinanceService implements DataProviderInterface {
|
||||||
|
private yahooFinanceHostname = 'https://query1.finance.yahoo.com';
|
||||||
|
|
||||||
public constructor() {}
|
public constructor() {}
|
||||||
|
|
||||||
|
public canHandle(symbol: string) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
public async get(
|
public async get(
|
||||||
aSymbols: string[]
|
aSymbols: string[]
|
||||||
): Promise<{ [symbol: string]: IDataProviderResponse }> {
|
): Promise<{ [symbol: string]: IDataProviderResponse }> {
|
||||||
@ -48,9 +59,12 @@ export class YahooFinanceService implements DataProviderInterface {
|
|||||||
|
|
||||||
response[symbol] = {
|
response[symbol] = {
|
||||||
currency: parseCurrency(value.price?.currency),
|
currency: parseCurrency(value.price?.currency),
|
||||||
|
dataSource: DataSource.YAHOO,
|
||||||
exchange: this.parseExchange(value.price?.exchangeName),
|
exchange: this.parseExchange(value.price?.exchangeName),
|
||||||
isMarketOpen:
|
marketState:
|
||||||
value.price?.marketState === 'REGULAR' || isCrypto(symbol),
|
value.price?.marketState === 'REGULAR' || isCrypto(symbol)
|
||||||
|
? MarketState.open
|
||||||
|
: MarketState.closed,
|
||||||
marketPrice: value.price?.regularMarketPrice || 0,
|
marketPrice: value.price?.regularMarketPrice || 0,
|
||||||
name: value.price?.longName || value.price?.shortName || symbol,
|
name: value.price?.longName || value.price?.shortName || symbol,
|
||||||
type: this.parseType(this.getType(symbol, value))
|
type: this.parseType(this.getType(symbol, value))
|
||||||
@ -130,6 +144,49 @@ export class YahooFinanceService implements DataProviderInterface {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async search(aSymbol: string): Promise<{ items: LookupItem[] }> {
|
||||||
|
let items = [];
|
||||||
|
|
||||||
|
try {
|
||||||
|
const get = bent(
|
||||||
|
`${this.yahooFinanceHostname}/v1/finance/search?q=${aSymbol}&lang=en-US®ion=US"esCount=8&newsCount=0&enableFuzzyQuery=false"esQueryId=tss_match_phrase_query&multiQuoteQueryId=multi_quote_single_token_query&newsQueryId=news_cie_vespa&enableCb=true&enableNavLinks=false&enableEnhancedTrivialQuery=true`,
|
||||||
|
'GET',
|
||||||
|
'json',
|
||||||
|
200
|
||||||
|
);
|
||||||
|
|
||||||
|
const result = await get();
|
||||||
|
items = result.quotes
|
||||||
|
.filter((quote) => {
|
||||||
|
return quote.isYahooFinance;
|
||||||
|
})
|
||||||
|
.filter(({ quoteType }) => {
|
||||||
|
return (
|
||||||
|
quoteType === 'CRYPTOCURRENCY' ||
|
||||||
|
quoteType === 'EQUITY' ||
|
||||||
|
quoteType === 'ETF'
|
||||||
|
);
|
||||||
|
})
|
||||||
|
.filter(({ quoteType, symbol }) => {
|
||||||
|
if (quoteType === 'CRYPTOCURRENCY') {
|
||||||
|
// Only allow cryptocurrencies in USD
|
||||||
|
return symbol.includes('USD');
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
})
|
||||||
|
.map(({ longname, shortname, symbol }) => {
|
||||||
|
return {
|
||||||
|
dataSource: DataSource.YAHOO,
|
||||||
|
name: longname || shortname,
|
||||||
|
symbol: convertFromYahooSymbol(symbol)
|
||||||
|
};
|
||||||
|
});
|
||||||
|
} catch {}
|
||||||
|
|
||||||
|
return { items };
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Converts a symbol to a Yahoo symbol
|
* Converts a symbol to a Yahoo symbol
|
||||||
*
|
*
|
||||||
@ -165,7 +222,7 @@ export class YahooFinanceService implements DataProviderInterface {
|
|||||||
|
|
||||||
private parseExchange(aString: string): string {
|
private parseExchange(aString: string): string {
|
||||||
if (aString?.toLowerCase() === 'ccc') {
|
if (aString?.toLowerCase() === 'ccc') {
|
||||||
return 'Other';
|
return UNKNOWN_KEY;
|
||||||
}
|
}
|
||||||
|
|
||||||
return aString;
|
return aString;
|
||||||
@ -195,7 +252,7 @@ export class YahooFinanceService implements DataProviderInterface {
|
|||||||
return Industry.Software;
|
return Industry.Software;
|
||||||
}
|
}
|
||||||
|
|
||||||
return Industry.Other;
|
return Industry.Unknown;
|
||||||
}
|
}
|
||||||
|
|
||||||
private parseSector(aString: string): Sector {
|
private parseSector(aString: string): Sector {
|
||||||
@ -217,7 +274,7 @@ export class YahooFinanceService implements DataProviderInterface {
|
|||||||
return Sector.Technology;
|
return Sector.Technology;
|
||||||
}
|
}
|
||||||
|
|
||||||
return Sector.Other;
|
return Sector.Unknown;
|
||||||
}
|
}
|
||||||
|
|
||||||
private parseType(aString: string): Type {
|
private parseType(aString: string): Type {
|
||||||
@ -229,7 +286,7 @@ export class YahooFinanceService implements DataProviderInterface {
|
|||||||
return Type.Stock;
|
return Type.Stock;
|
||||||
}
|
}
|
||||||
|
|
||||||
return Type.Other;
|
return Type.Unknown;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { getYesterday } from '@ghostfolio/helper';
|
import { getYesterday } from '@ghostfolio/common/helper';
|
||||||
import { Injectable } from '@nestjs/common';
|
import { Injectable } from '@nestjs/common';
|
||||||
import { Currency } from '@prisma/client';
|
import { Currency } from '@prisma/client';
|
||||||
import { format } from 'date-fns';
|
import { format } from 'date-fns';
|
||||||
@ -58,8 +58,8 @@ export class ExchangeRateDataService {
|
|||||||
if (!this.currencies[pair]) {
|
if (!this.currencies[pair]) {
|
||||||
// Not found, calculate indirectly via USD
|
// Not found, calculate indirectly via USD
|
||||||
this.currencies[pair] =
|
this.currencies[pair] =
|
||||||
resultExtended[`${currency1}${Currency.USD}`][date].marketPrice *
|
resultExtended[`${currency1}${Currency.USD}`]?.[date]?.marketPrice *
|
||||||
resultExtended[`${Currency.USD}${currency2}`][date].marketPrice;
|
resultExtended[`${Currency.USD}${currency2}`]?.[date]?.marketPrice;
|
||||||
|
|
||||||
// Calculate the opposite direction
|
// Calculate the opposite direction
|
||||||
this.currencies[`${currency2}${currency1}`] = 1 / this.currencies[pair];
|
this.currencies[`${currency2}${currency1}`] = 1 / this.currencies[pair];
|
||||||
|
@ -1,10 +1,14 @@
|
|||||||
import { Granularity } from './granularity.type';
|
import { LookupItem } from '@ghostfolio/api/app/symbol/interfaces/lookup-item.interface';
|
||||||
|
import { Granularity } from '@ghostfolio/common/types';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
IDataProviderHistoricalResponse,
|
IDataProviderHistoricalResponse,
|
||||||
IDataProviderResponse
|
IDataProviderResponse
|
||||||
} from './interfaces';
|
} from './interfaces';
|
||||||
|
|
||||||
export interface DataProviderInterface {
|
export interface DataProviderInterface {
|
||||||
|
canHandle(symbol: string): boolean;
|
||||||
|
|
||||||
get(aSymbols: string[]): Promise<{ [symbol: string]: IDataProviderResponse }>;
|
get(aSymbols: string[]): Promise<{ [symbol: string]: IDataProviderResponse }>;
|
||||||
|
|
||||||
getHistorical(
|
getHistorical(
|
||||||
@ -15,4 +19,6 @@ export interface DataProviderInterface {
|
|||||||
): Promise<{
|
): Promise<{
|
||||||
[symbol: string]: { [date: string]: IDataProviderHistoricalResponse };
|
[symbol: string]: { [date: string]: IDataProviderHistoricalResponse };
|
||||||
}>;
|
}>;
|
||||||
|
|
||||||
|
search(aSymbol: string): Promise<{ items: LookupItem[] }>;
|
||||||
}
|
}
|
||||||
|
@ -4,8 +4,11 @@ export interface Environment extends CleanedEnvAccessors {
|
|||||||
ACCESS_TOKEN_SALT: string;
|
ACCESS_TOKEN_SALT: string;
|
||||||
ALPHA_VANTAGE_API_KEY: string;
|
ALPHA_VANTAGE_API_KEY: string;
|
||||||
CACHE_TTL: number;
|
CACHE_TTL: number;
|
||||||
|
DATA_SOURCES: string | string[]; // string is not correct, error in envalid?
|
||||||
|
ENABLE_FEATURE_CUSTOM_SYMBOLS: boolean;
|
||||||
ENABLE_FEATURE_FEAR_AND_GREED_INDEX: boolean;
|
ENABLE_FEATURE_FEAR_AND_GREED_INDEX: boolean;
|
||||||
ENABLE_FEATURE_SOCIAL_LOGIN: boolean;
|
ENABLE_FEATURE_SOCIAL_LOGIN: boolean;
|
||||||
|
ENABLE_FEATURE_SUBSCRIPTION: boolean;
|
||||||
GOOGLE_CLIENT_ID: string;
|
GOOGLE_CLIENT_ID: string;
|
||||||
GOOGLE_SECRET: string;
|
GOOGLE_SECRET: string;
|
||||||
JWT_SECRET_KEY: string;
|
JWT_SECRET_KEY: string;
|
||||||
@ -15,4 +18,5 @@ export interface Environment extends CleanedEnvAccessors {
|
|||||||
REDIS_HOST: string;
|
REDIS_HOST: string;
|
||||||
REDIS_PORT: number;
|
REDIS_PORT: number;
|
||||||
ROOT_URL: string;
|
ROOT_URL: string;
|
||||||
|
WEB_AUTH_RP_ID: string;
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import { Currency, Platform } from '@prisma/client';
|
import { UNKNOWN_KEY } from '@ghostfolio/common/config';
|
||||||
|
import { Account, Currency, DataSource, SymbolProfile } from '@prisma/client';
|
||||||
|
|
||||||
import { OrderType } from '../../models/order-type';
|
import { OrderType } from '../../models/order-type';
|
||||||
|
|
||||||
@ -7,33 +8,40 @@ export const Industry = {
|
|||||||
Biotechnology: 'Biotechnology',
|
Biotechnology: 'Biotechnology',
|
||||||
Food: 'Food',
|
Food: 'Food',
|
||||||
Internet: 'Internet',
|
Internet: 'Internet',
|
||||||
Other: 'Other',
|
|
||||||
Pharmaceutical: 'Pharmaceutical',
|
Pharmaceutical: 'Pharmaceutical',
|
||||||
Software: 'Software'
|
Software: 'Software',
|
||||||
|
Unknown: UNKNOWN_KEY
|
||||||
|
};
|
||||||
|
|
||||||
|
export const MarketState = {
|
||||||
|
closed: 'closed',
|
||||||
|
delayed: 'delayed',
|
||||||
|
open: 'open'
|
||||||
};
|
};
|
||||||
|
|
||||||
export const Sector = {
|
export const Sector = {
|
||||||
Consumer: 'Consumer',
|
Consumer: 'Consumer',
|
||||||
Healthcare: 'Healthcare',
|
Healthcare: 'Healthcare',
|
||||||
Other: 'Other',
|
Technology: 'Technology',
|
||||||
Technology: 'Technology'
|
Unknown: UNKNOWN_KEY
|
||||||
};
|
};
|
||||||
|
|
||||||
export const Type = {
|
export const Type = {
|
||||||
Cryptocurrency: 'Cryptocurrency',
|
Cryptocurrency: 'Cryptocurrency',
|
||||||
ETF: 'ETF',
|
ETF: 'ETF',
|
||||||
Other: 'Other',
|
Stock: 'Stock',
|
||||||
Stock: 'Stock'
|
Unknown: UNKNOWN_KEY
|
||||||
};
|
};
|
||||||
|
|
||||||
export interface IOrder {
|
export interface IOrder {
|
||||||
|
account: Account;
|
||||||
currency: Currency;
|
currency: Currency;
|
||||||
date: string;
|
date: string;
|
||||||
fee: number;
|
fee: number;
|
||||||
id?: string;
|
id?: string;
|
||||||
platform: Platform;
|
|
||||||
quantity: number;
|
quantity: number;
|
||||||
symbol: string;
|
symbol: string;
|
||||||
|
symbolProfile: SymbolProfile;
|
||||||
type: OrderType;
|
type: OrderType;
|
||||||
unitPrice: number;
|
unitPrice: number;
|
||||||
}
|
}
|
||||||
@ -45,20 +53,29 @@ export interface IDataProviderHistoricalResponse {
|
|||||||
|
|
||||||
export interface IDataProviderResponse {
|
export interface IDataProviderResponse {
|
||||||
currency: Currency;
|
currency: Currency;
|
||||||
|
dataSource: DataSource;
|
||||||
exchange?: string;
|
exchange?: string;
|
||||||
industry?: Industry;
|
industry?: Industry;
|
||||||
isMarketOpen: boolean;
|
|
||||||
marketChange?: number;
|
marketChange?: number;
|
||||||
marketChangePercent?: number;
|
marketChangePercent?: number;
|
||||||
marketPrice: number;
|
marketPrice: number;
|
||||||
|
marketState: MarketState;
|
||||||
name: string;
|
name: string;
|
||||||
sector?: Sector;
|
sector?: Sector;
|
||||||
type?: Type;
|
type?: Type;
|
||||||
url?: string;
|
url?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface IDataGatheringItem {
|
||||||
|
dataSource: DataSource;
|
||||||
|
date?: Date;
|
||||||
|
symbol: string;
|
||||||
|
}
|
||||||
|
|
||||||
export type Industry = typeof Industry[keyof typeof Industry];
|
export type Industry = typeof Industry[keyof typeof Industry];
|
||||||
|
|
||||||
|
export type MarketState = typeof MarketState[keyof typeof MarketState];
|
||||||
|
|
||||||
export type Sector = typeof Sector[keyof typeof Sector];
|
export type Sector = typeof Sector[keyof typeof Sector];
|
||||||
|
|
||||||
export type Type = typeof Type[keyof typeof Type];
|
export type Type = typeof Type[keyof typeof Type];
|
||||||
|
@ -2,7 +2,8 @@ import { Injectable, OnModuleDestroy, OnModuleInit } from '@nestjs/common';
|
|||||||
import { PrismaClient } from '@prisma/client';
|
import { PrismaClient } from '@prisma/client';
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class PrismaService extends PrismaClient
|
export class PrismaService
|
||||||
|
extends PrismaClient
|
||||||
implements OnModuleInit, OnModuleDestroy {
|
implements OnModuleInit, OnModuleDestroy {
|
||||||
async onModuleInit() {
|
async onModuleInit() {
|
||||||
await this.$connect();
|
await this.$connect();
|
||||||
|
@ -2,14 +2,14 @@ import { Injectable } from '@nestjs/common';
|
|||||||
|
|
||||||
import { Portfolio } from '../models/portfolio';
|
import { Portfolio } from '../models/portfolio';
|
||||||
import { Rule } from '../models/rule';
|
import { Rule } from '../models/rule';
|
||||||
|
import { AccountClusterRiskCurrentInvestment } from '../models/rules/account-cluster-risk/current-investment';
|
||||||
|
import { AccountClusterRiskInitialInvestment } from '../models/rules/account-cluster-risk/initial-investment';
|
||||||
|
import { AccountClusterRiskSingleAccount } from '../models/rules/account-cluster-risk/single-account';
|
||||||
import { CurrencyClusterRiskBaseCurrencyCurrentInvestment } from '../models/rules/currency-cluster-risk/base-currency-current-investment';
|
import { CurrencyClusterRiskBaseCurrencyCurrentInvestment } from '../models/rules/currency-cluster-risk/base-currency-current-investment';
|
||||||
import { CurrencyClusterRiskBaseCurrencyInitialInvestment } from '../models/rules/currency-cluster-risk/base-currency-initial-investment';
|
import { CurrencyClusterRiskBaseCurrencyInitialInvestment } from '../models/rules/currency-cluster-risk/base-currency-initial-investment';
|
||||||
import { CurrencyClusterRiskCurrentInvestment } from '../models/rules/currency-cluster-risk/current-investment';
|
import { CurrencyClusterRiskCurrentInvestment } from '../models/rules/currency-cluster-risk/current-investment';
|
||||||
import { CurrencyClusterRiskInitialInvestment } from '../models/rules/currency-cluster-risk/initial-investment';
|
import { CurrencyClusterRiskInitialInvestment } from '../models/rules/currency-cluster-risk/initial-investment';
|
||||||
import { FeeRatioInitialInvestment } from '../models/rules/fees/fee-ratio-initial-investment';
|
import { FeeRatioInitialInvestment } from '../models/rules/fees/fee-ratio-initial-investment';
|
||||||
import { PlatformClusterRiskCurrentInvestment } from '../models/rules/platform-cluster-risk/current-investment';
|
|
||||||
import { PlatformClusterRiskInitialInvestment } from '../models/rules/platform-cluster-risk/initial-investment';
|
|
||||||
import { PlatformClusterRiskSinglePlatform } from '../models/rules/platform-cluster-risk/single-platform';
|
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class RulesService {
|
export class RulesService {
|
||||||
@ -39,6 +39,17 @@ export class RulesService {
|
|||||||
|
|
||||||
private getDefaultRuleSettings(aUserSettings: { baseCurrency: string }) {
|
private getDefaultRuleSettings(aUserSettings: { baseCurrency: string }) {
|
||||||
return {
|
return {
|
||||||
|
[AccountClusterRiskCurrentInvestment.name]: {
|
||||||
|
baseCurrency: aUserSettings.baseCurrency,
|
||||||
|
isActive: true,
|
||||||
|
threshold: 0.5
|
||||||
|
},
|
||||||
|
[AccountClusterRiskInitialInvestment.name]: {
|
||||||
|
baseCurrency: aUserSettings.baseCurrency,
|
||||||
|
isActive: true,
|
||||||
|
threshold: 0.5
|
||||||
|
},
|
||||||
|
[AccountClusterRiskSingleAccount.name]: { isActive: true },
|
||||||
[CurrencyClusterRiskBaseCurrencyInitialInvestment.name]: {
|
[CurrencyClusterRiskBaseCurrencyInitialInvestment.name]: {
|
||||||
baseCurrency: aUserSettings.baseCurrency,
|
baseCurrency: aUserSettings.baseCurrency,
|
||||||
isActive: true
|
isActive: true
|
||||||
@ -61,18 +72,7 @@ export class RulesService {
|
|||||||
baseCurrency: aUserSettings.baseCurrency,
|
baseCurrency: aUserSettings.baseCurrency,
|
||||||
isActive: true,
|
isActive: true,
|
||||||
threshold: 0.01
|
threshold: 0.01
|
||||||
},
|
}
|
||||||
[PlatformClusterRiskCurrentInvestment.name]: {
|
|
||||||
baseCurrency: aUserSettings.baseCurrency,
|
|
||||||
isActive: true,
|
|
||||||
threshold: 0.5
|
|
||||||
},
|
|
||||||
[PlatformClusterRiskInitialInvestment.name]: {
|
|
||||||
baseCurrency: aUserSettings.baseCurrency,
|
|
||||||
isActive: true,
|
|
||||||
threshold: 0.5
|
|
||||||
},
|
|
||||||
[PlatformClusterRiskSinglePlatform.name]: { isActive: true }
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import {
|
import {
|
||||||
DEFAULT_DATE_FORMAT,
|
DEFAULT_DATE_FORMAT,
|
||||||
DEFAULT_DATE_FORMAT_MONTH_YEAR
|
DEFAULT_DATE_FORMAT_MONTH_YEAR
|
||||||
} from 'libs/helper/src';
|
} from '@ghostfolio/common/config';
|
||||||
|
|
||||||
export const DateFormats = {
|
export const DateFormats = {
|
||||||
display: {
|
display: {
|
||||||
|
@ -9,11 +9,6 @@ const routes: Routes = [
|
|||||||
loadChildren: () =>
|
loadChildren: () =>
|
||||||
import('./pages/about/about-page.module').then((m) => m.AboutPageModule)
|
import('./pages/about/about-page.module').then((m) => m.AboutPageModule)
|
||||||
},
|
},
|
||||||
{
|
|
||||||
path: 'admin',
|
|
||||||
loadChildren: () =>
|
|
||||||
import('./pages/admin/admin-page.module').then((m) => m.AdminPageModule)
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
path: 'account',
|
path: 'account',
|
||||||
loadChildren: () =>
|
loadChildren: () =>
|
||||||
@ -21,28 +16,40 @@ const routes: Routes = [
|
|||||||
(m) => m.AccountPageModule
|
(m) => m.AccountPageModule
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: 'accounts',
|
||||||
|
loadChildren: () =>
|
||||||
|
import('./pages/accounts/accounts-page.module').then(
|
||||||
|
(m) => m.AccountsPageModule
|
||||||
|
)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'admin',
|
||||||
|
loadChildren: () =>
|
||||||
|
import('./pages/admin/admin-page.module').then((m) => m.AdminPageModule)
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: 'auth',
|
path: 'auth',
|
||||||
loadChildren: () =>
|
loadChildren: () =>
|
||||||
import('./pages/auth/auth-page.module').then((m) => m.AuthPageModule)
|
import('./pages/auth/auth-page.module').then((m) => m.AuthPageModule)
|
||||||
},
|
},
|
||||||
{
|
|
||||||
path: 'analysis',
|
|
||||||
loadChildren: () =>
|
|
||||||
import('./pages/analysis/analysis-page.module').then(
|
|
||||||
(m) => m.AnalysisPageModule
|
|
||||||
)
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
path: 'home',
|
path: 'home',
|
||||||
loadChildren: () =>
|
loadChildren: () =>
|
||||||
import('./pages/home/home-page.module').then((m) => m.HomePageModule)
|
import('./pages/home/home-page.module').then((m) => m.HomePageModule)
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'report',
|
path: 'pricing',
|
||||||
loadChildren: () =>
|
loadChildren: () =>
|
||||||
import('./pages/report/report-page.module').then(
|
import('./pages/pricing/pricing-page.module').then(
|
||||||
(m) => m.ReportPageModule
|
(m) => m.PricingPageModule
|
||||||
|
)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'register',
|
||||||
|
loadChildren: () =>
|
||||||
|
import('./pages/register/register-page.module').then(
|
||||||
|
(m) => m.RegisterPageModule
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -55,7 +62,28 @@ const routes: Routes = [
|
|||||||
{
|
{
|
||||||
path: 'start',
|
path: 'start',
|
||||||
loadChildren: () =>
|
loadChildren: () =>
|
||||||
import('./pages/login/login-page.module').then((m) => m.LoginPageModule)
|
import('./pages/landing/landing-page.module').then(
|
||||||
|
(m) => m.LandingPageModule
|
||||||
|
)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'tools',
|
||||||
|
loadChildren: () =>
|
||||||
|
import('./pages/tools/tools-page.module').then((m) => m.ToolsPageModule)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'tools/analysis',
|
||||||
|
loadChildren: () =>
|
||||||
|
import('./pages/tools/analysis/analysis-page.module').then(
|
||||||
|
(m) => m.AnalysisPageModule
|
||||||
|
)
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'tools/report',
|
||||||
|
loadChildren: () =>
|
||||||
|
import('./pages/tools/report/report-page.module').then(
|
||||||
|
(m) => m.ReportPageModule
|
||||||
|
)
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'transactions',
|
path: 'transactions',
|
||||||
@ -64,11 +92,16 @@ const routes: Routes = [
|
|||||||
(m) => m.TransactionsPageModule
|
(m) => m.TransactionsPageModule
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: 'zen',
|
||||||
|
loadChildren: () =>
|
||||||
|
import('./pages/zen/zen-page.module').then((m) => m.ZenPageModule)
|
||||||
|
},
|
||||||
{
|
{
|
||||||
// wildcard, if requested url doesn't match any paths for routes defined
|
// wildcard, if requested url doesn't match any paths for routes defined
|
||||||
// earlier
|
// earlier
|
||||||
path: '**',
|
path: '**',
|
||||||
redirectTo: '/home',
|
redirectTo: 'home',
|
||||||
pathMatch: 'full'
|
pathMatch: 'full'
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
@ -81,8 +114,7 @@ const routes: Routes = [
|
|||||||
{
|
{
|
||||||
preloadingStrategy: ModulePreloadService,
|
preloadingStrategy: ModulePreloadService,
|
||||||
// enableTracing: true // <-- debugging purposes only
|
// enableTracing: true // <-- debugging purposes only
|
||||||
relativeLinkResolution: 'legacy',
|
relativeLinkResolution: 'legacy'
|
||||||
scrollPositionRestoration: 'enabled'
|
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
[currentRoute]="currentRoute"
|
[currentRoute]="currentRoute"
|
||||||
[info]="info"
|
[info]="info"
|
||||||
[user]="user"
|
[user]="user"
|
||||||
|
(signOut)="onSignOut()"
|
||||||
></gf-header>
|
></gf-header>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
@ -11,13 +12,15 @@
|
|||||||
<div *ngIf="canCreateAccount" class="container create-account-container">
|
<div *ngIf="canCreateAccount" class="container create-account-container">
|
||||||
<div class="row mb-5">
|
<div class="row mb-5">
|
||||||
<div class="col-md-6 offset-md-3">
|
<div class="col-md-6 offset-md-3">
|
||||||
<div
|
<a [routerLink]="['/']">
|
||||||
|
<mat-card
|
||||||
class="create-account-box p-2 text-center"
|
class="create-account-box p-2 text-center"
|
||||||
(click)="onCreateAccount()"
|
(click)="onCreateAccount()"
|
||||||
>
|
>
|
||||||
<div class="mt-1" i18n>You are using the Live Demo.</div>
|
<div class="mt-1" i18n>You are using the Live Demo.</div>
|
||||||
<button mat-button color="primary" i18n>Create Account</button>
|
<button mat-button color="primary" i18n>Create Account</button>
|
||||||
</div>
|
</mat-card></a
|
||||||
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -25,7 +28,10 @@
|
|||||||
<router-outlet></router-outlet>
|
<router-outlet></router-outlet>
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer class="footer d-flex justify-content-center position-absolute w-100">
|
<footer
|
||||||
|
*ngIf="currentRoute === 'start' || deviceType !== 'mobile'"
|
||||||
|
class="footer d-flex justify-content-center position-absolute w-100"
|
||||||
|
>
|
||||||
<div class="container text-center">
|
<div class="container text-center">
|
||||||
<div>
|
<div>
|
||||||
© {{ currentYear }} <a href="https://ghostfol.io">Ghostfolio</a>
|
© {{ currentYear }} <a href="https://ghostfol.io">Ghostfolio</a>
|
||||||
|
@ -5,8 +5,6 @@
|
|||||||
padding: 5rem 0;
|
padding: 5rem 0;
|
||||||
|
|
||||||
.create-account-box {
|
.create-account-box {
|
||||||
border: 1px solid rgba(var(--palette-primary-500), 1);
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
|
|
||||||
|
@ -5,18 +5,19 @@ import {
|
|||||||
OnDestroy,
|
OnDestroy,
|
||||||
OnInit
|
OnInit
|
||||||
} from '@angular/core';
|
} from '@angular/core';
|
||||||
import { NavigationEnd, Router } from '@angular/router';
|
import { NavigationEnd, PRIMARY_OUTLET, Router } from '@angular/router';
|
||||||
|
import { primaryColorHex, secondaryColorHex } from '@ghostfolio/common/config';
|
||||||
|
import { InfoItem, User } from '@ghostfolio/common/interfaces';
|
||||||
|
import { hasPermission, permissions } from '@ghostfolio/common/permissions';
|
||||||
import { MaterialCssVarsService } from 'angular-material-css-vars';
|
import { MaterialCssVarsService } from 'angular-material-css-vars';
|
||||||
import { InfoItem } from 'apps/api/src/app/info/interfaces/info-item.interface';
|
import { DeviceDetectorService } from 'ngx-device-detector';
|
||||||
import { User } from 'apps/api/src/app/user/interfaces/user.interface';
|
|
||||||
import { primaryColorHex, secondaryColorHex } from 'libs/helper/src';
|
|
||||||
import { hasPermission, permissions } from 'libs/helper/src';
|
|
||||||
import { Subject } from 'rxjs';
|
import { Subject } from 'rxjs';
|
||||||
import { filter, takeUntil } from 'rxjs/operators';
|
import { filter, takeUntil } from 'rxjs/operators';
|
||||||
|
|
||||||
import { environment } from '../environments/environment';
|
import { environment } from '../environments/environment';
|
||||||
import { DataService } from './services/data.service';
|
import { DataService } from './services/data.service';
|
||||||
import { TokenStorageService } from './services/token-storage.service';
|
import { TokenStorageService } from './services/token-storage.service';
|
||||||
|
import { UserService } from './services/user/user.service';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'gf-root',
|
selector: 'gf-root',
|
||||||
@ -28,57 +29,70 @@ export class AppComponent implements OnDestroy, OnInit {
|
|||||||
public canCreateAccount: boolean;
|
public canCreateAccount: boolean;
|
||||||
public currentRoute: string;
|
public currentRoute: string;
|
||||||
public currentYear = new Date().getFullYear();
|
public currentYear = new Date().getFullYear();
|
||||||
|
public deviceType: string;
|
||||||
public info: InfoItem;
|
public info: InfoItem;
|
||||||
public isLoggedIn = false;
|
|
||||||
public user: User;
|
public user: User;
|
||||||
public version = environment.version;
|
public version = environment.version;
|
||||||
|
|
||||||
private unsubscribeSubject = new Subject<void>();
|
private unsubscribeSubject = new Subject<void>();
|
||||||
|
|
||||||
public constructor(
|
public constructor(
|
||||||
private cd: ChangeDetectorRef,
|
private changeDetectorRef: ChangeDetectorRef,
|
||||||
private dataService: DataService,
|
private dataService: DataService,
|
||||||
|
private deviceService: DeviceDetectorService,
|
||||||
private materialCssVarsService: MaterialCssVarsService,
|
private materialCssVarsService: MaterialCssVarsService,
|
||||||
private router: Router,
|
private router: Router,
|
||||||
private tokenStorageService: TokenStorageService
|
private tokenStorageService: TokenStorageService,
|
||||||
|
private userService: UserService
|
||||||
) {
|
) {
|
||||||
this.initializeTheme();
|
this.initializeTheme();
|
||||||
this.user = undefined;
|
this.user = undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
public ngOnInit() {
|
public ngOnInit() {
|
||||||
|
this.deviceType = this.deviceService.getDeviceInfo().deviceType;
|
||||||
|
|
||||||
this.dataService.fetchInfo().subscribe((info) => {
|
this.dataService.fetchInfo().subscribe((info) => {
|
||||||
this.info = info;
|
this.info = info;
|
||||||
});
|
});
|
||||||
|
|
||||||
this.router.events
|
this.router.events
|
||||||
.pipe(filter((event) => event instanceof NavigationEnd))
|
.pipe(filter((event) => event instanceof NavigationEnd))
|
||||||
.subscribe((test) => {
|
.subscribe(() => {
|
||||||
this.currentRoute = this.router.url.toString().substring(1);
|
const urlTree = this.router.parseUrl(this.router.url);
|
||||||
// this.initializeTheme();
|
const urlSegmentGroup = urlTree.root.children[PRIMARY_OUTLET];
|
||||||
|
const urlSegments = urlSegmentGroup.segments;
|
||||||
|
this.currentRoute = urlSegments[0].path;
|
||||||
});
|
});
|
||||||
|
|
||||||
this.tokenStorageService
|
this.userService.stateChanged
|
||||||
.onChangeHasToken()
|
|
||||||
.pipe(takeUntil(this.unsubscribeSubject))
|
.pipe(takeUntil(this.unsubscribeSubject))
|
||||||
.subscribe(() => {
|
.subscribe((state) => {
|
||||||
this.isLoggedIn = !!this.tokenStorageService.getToken();
|
this.user = state.user;
|
||||||
|
|
||||||
if (this.isLoggedIn) {
|
|
||||||
this.dataService.fetchUser().subscribe((user) => {
|
|
||||||
this.user = user;
|
|
||||||
|
|
||||||
this.canCreateAccount = hasPermission(
|
this.canCreateAccount = hasPermission(
|
||||||
this.user.permissions,
|
this.user?.permissions,
|
||||||
permissions.createAccount
|
permissions.createUserAccount
|
||||||
);
|
);
|
||||||
|
|
||||||
this.cd.markForCheck();
|
this.changeDetectorRef.markForCheck();
|
||||||
});
|
});
|
||||||
} else {
|
|
||||||
this.user = null;
|
|
||||||
}
|
}
|
||||||
});
|
|
||||||
|
public onCreateAccount() {
|
||||||
|
this.tokenStorageService.signOut();
|
||||||
|
}
|
||||||
|
|
||||||
|
public onSignOut() {
|
||||||
|
this.tokenStorageService.signOut();
|
||||||
|
this.userService.remove();
|
||||||
|
|
||||||
|
window.location.reload();
|
||||||
|
}
|
||||||
|
|
||||||
|
public ngOnDestroy() {
|
||||||
|
this.unsubscribeSubject.next();
|
||||||
|
this.unsubscribeSubject.complete();
|
||||||
}
|
}
|
||||||
|
|
||||||
private initializeTheme() {
|
private initializeTheme() {
|
||||||
@ -93,14 +107,4 @@ export class AppComponent implements OnDestroy, OnInit {
|
|||||||
this.materialCssVarsService.setPrimaryColor(primaryColorHex);
|
this.materialCssVarsService.setPrimaryColor(primaryColorHex);
|
||||||
this.materialCssVarsService.setAccentColor(secondaryColorHex);
|
this.materialCssVarsService.setAccentColor(secondaryColorHex);
|
||||||
}
|
}
|
||||||
|
|
||||||
public onCreateAccount() {
|
|
||||||
this.tokenStorageService.signOut();
|
|
||||||
window.location.reload();
|
|
||||||
}
|
|
||||||
|
|
||||||
public ngOnDestroy() {
|
|
||||||
this.unsubscribeSubject.next();
|
|
||||||
this.unsubscribeSubject.complete();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@ import { Platform } from '@angular/cdk/platform';
|
|||||||
import { HttpClientModule } from '@angular/common/http';
|
import { HttpClientModule } from '@angular/common/http';
|
||||||
import { NgModule } from '@angular/core';
|
import { NgModule } from '@angular/core';
|
||||||
import { MatButtonModule } from '@angular/material/button';
|
import { MatButtonModule } from '@angular/material/button';
|
||||||
|
import { MatCardModule } from '@angular/material/card';
|
||||||
import {
|
import {
|
||||||
DateAdapter,
|
DateAdapter,
|
||||||
MAT_DATE_FORMATS,
|
MAT_DATE_FORMATS,
|
||||||
@ -22,7 +23,7 @@ import { AppComponent } from './app.component';
|
|||||||
import { GfHeaderModule } from './components/header/header.module';
|
import { GfHeaderModule } from './components/header/header.module';
|
||||||
import { authInterceptorProviders } from './core/auth.interceptor';
|
import { authInterceptorProviders } from './core/auth.interceptor';
|
||||||
import { httpResponseInterceptorProviders } from './core/http-response.interceptor';
|
import { httpResponseInterceptorProviders } from './core/http-response.interceptor';
|
||||||
import { LanguageManager } from './core/language-manager.service';
|
import { LanguageService } from './core/language.service';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
declarations: [AppComponent],
|
declarations: [AppComponent],
|
||||||
@ -34,6 +35,7 @@ import { LanguageManager } from './core/language-manager.service';
|
|||||||
HttpClientModule,
|
HttpClientModule,
|
||||||
MarkdownModule.forRoot(),
|
MarkdownModule.forRoot(),
|
||||||
MatButtonModule,
|
MatButtonModule,
|
||||||
|
MatCardModule,
|
||||||
MaterialCssVarsModule.forRoot({
|
MaterialCssVarsModule.forRoot({
|
||||||
darkThemeClass: 'is-dark-theme',
|
darkThemeClass: 'is-dark-theme',
|
||||||
isAutoContrast: true,
|
isAutoContrast: true,
|
||||||
@ -46,11 +48,11 @@ import { LanguageManager } from './core/language-manager.service';
|
|||||||
providers: [
|
providers: [
|
||||||
authInterceptorProviders,
|
authInterceptorProviders,
|
||||||
httpResponseInterceptorProviders,
|
httpResponseInterceptorProviders,
|
||||||
LanguageManager,
|
LanguageService,
|
||||||
{
|
{
|
||||||
provide: DateAdapter,
|
provide: DateAdapter,
|
||||||
useClass: CustomDateAdapter,
|
useClass: CustomDateAdapter,
|
||||||
deps: [LanguageManager, MAT_DATE_LOCALE, Platform]
|
deps: [LanguageService, MAT_DATE_LOCALE, Platform]
|
||||||
},
|
},
|
||||||
{ provide: MAT_DATE_FORMATS, useValue: DateFormats }
|
{ provide: MAT_DATE_FORMATS, useValue: DateFormats }
|
||||||
],
|
],
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
<table mat-table [dataSource]="dataSource" class="w-100">
|
<table class="gf-table w-100" mat-table [dataSource]="dataSource">
|
||||||
<ng-container matColumnDef="granteeAlias">
|
<ng-container matColumnDef="granteeAlias">
|
||||||
<th mat-header-cell *matHeaderCellDef i18n>User</th>
|
<th *matHeaderCellDef class="px-1" i18n mat-header-cell>User</th>
|
||||||
<td mat-cell *matCellDef="let element">
|
<td *matCellDef="let element" class="px-1" mat-cell>
|
||||||
{{ element.granteeAlias }}
|
{{ element.granteeAlias }}
|
||||||
</td></ng-container
|
</td></ng-container
|
||||||
>
|
>
|
||||||
|
|
||||||
<ng-container matColumnDef="type">
|
<ng-container matColumnDef="type">
|
||||||
<th mat-header-cell *matHeaderCellDef i18n>Type</th>
|
<th *matHeaderCellDef class="px-1" i18n mat-header-cell>Type</th>
|
||||||
<td mat-cell *matCellDef="let element">
|
<td *matCellDef="let element" class="px-1" mat-cell>
|
||||||
<ion-icon class="mr-1" name="lock-closed-outline"></ion-icon>
|
<ion-icon class="mr-1" name="lock-closed-outline"></ion-icon>
|
||||||
Restricted Access
|
Restricted Access
|
||||||
</td></ng-container
|
</td></ng-container
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
@import '~apps/client/src/styles/ghostfolio-style';
|
||||||
|
|
||||||
:host {
|
:host {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,7 @@ import {
|
|||||||
OnInit
|
OnInit
|
||||||
} from '@angular/core';
|
} from '@angular/core';
|
||||||
import { MatTableDataSource } from '@angular/material/table';
|
import { MatTableDataSource } from '@angular/material/table';
|
||||||
import { Access } from 'apps/api/src/app/access/interfaces/access.interface';
|
import { Access } from '@ghostfolio/common/interfaces';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'gf-access-table',
|
selector: 'gf-access-table',
|
||||||
|
@ -0,0 +1,77 @@
|
|||||||
|
<table class="gf-table w-100" mat-table [dataSource]="dataSource">
|
||||||
|
<ng-container matColumnDef="account">
|
||||||
|
<th *matHeaderCellDef class="px-1" i18n mat-header-cell>Name</th>
|
||||||
|
<td *matCellDef="let element" class="px-1" mat-cell>
|
||||||
|
{{ element.name }}
|
||||||
|
<span
|
||||||
|
*ngIf="element.isDefault"
|
||||||
|
class="d-lg-inline-block d-none text-muted"
|
||||||
|
>(Default)</span
|
||||||
|
>
|
||||||
|
</td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
|
<ng-container matColumnDef="platform">
|
||||||
|
<th *matHeaderCellDef class="px-1" i18n mat-header-cell>Platform</th>
|
||||||
|
<td *matCellDef="let element" class="px-1" mat-cell>
|
||||||
|
<div class="d-flex">
|
||||||
|
<gf-symbol-icon
|
||||||
|
*ngIf="element.Platform?.url"
|
||||||
|
class="mr-1"
|
||||||
|
[tooltip]=""
|
||||||
|
[url]="element.Platform?.url"
|
||||||
|
></gf-symbol-icon>
|
||||||
|
<span>{{ element.Platform?.name }}</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
|
<ng-container matColumnDef="actions">
|
||||||
|
<th *matHeaderCellDef class="px-1 text-center" i18n mat-header-cell></th>
|
||||||
|
<td *matCellDef="let element" class="px-1 text-center" mat-cell>
|
||||||
|
<button
|
||||||
|
class="mx-1 no-min-width px-2"
|
||||||
|
mat-button
|
||||||
|
[matMenuTriggerFor]="accountMenu"
|
||||||
|
(click)="$event.stopPropagation()"
|
||||||
|
>
|
||||||
|
<ion-icon name="ellipsis-vertical"></ion-icon>
|
||||||
|
</button>
|
||||||
|
<mat-menu #accountMenu="matMenu" xPosition="before">
|
||||||
|
<button i18n mat-menu-item (click)="onUpdateAccount(element)">
|
||||||
|
Edit
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
i18n
|
||||||
|
mat-menu-item
|
||||||
|
[disabled]="element.isDefault || element.Order?.length > 0"
|
||||||
|
(click)="onDeleteAccount(element.id)"
|
||||||
|
>
|
||||||
|
Delete
|
||||||
|
</button>
|
||||||
|
</mat-menu>
|
||||||
|
</td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
|
<ng-container matColumnDef="transactions">
|
||||||
|
<th *matHeaderCellDef class="text-right" i18n mat-header-cell>
|
||||||
|
Transactions
|
||||||
|
</th>
|
||||||
|
<td *matCellDef="let element" class="text-right" mat-cell>
|
||||||
|
{{ element.Order?.length }}
|
||||||
|
</td>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
|
<tr *matHeaderRowDef="displayedColumns" mat-header-row></tr>
|
||||||
|
<tr *matRowDef="let row; columns: displayedColumns" mat-row></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<ngx-skeleton-loader
|
||||||
|
*ngIf="isLoading"
|
||||||
|
animation="pulse"
|
||||||
|
class="px-4 py-3"
|
||||||
|
[theme]="{
|
||||||
|
height: '1.5rem',
|
||||||
|
width: '100%'
|
||||||
|
}"
|
||||||
|
></ngx-skeleton-loader>
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user