gnuboard5-activitypub/README.md

116 lines
3.7 KiB
Markdown
Raw Normal View History

2022-06-29 12:10:49 +00:00
# gnuboard5-activitypub
ActivityPub implementation for GNUBOARD 5
2022-07-05 09:46:57 +00:00
## References
* https://www.w3.org/TR/activitypub/
* https://www.w3.org/TR/activitystreams-core/
* https://www.w3.org/TR/activitystreams-vocabulary/
* https://github.com/w3c/activitypub/issues/194
* https://docs.joinmastodon.org/spec/webfinger/
* https://organicdesign.nz/ActivityPub_Code
* https://socialhub.activitypub.rocks/t/posting-to-pleroma-inbox/1184
* https://github.com/broidHQ/integrations/tree/master/broid-schemas#readme
2022-06-29 12:11:50 +00:00
## 사용 전 설정
* `apstreams` 게시판 추가
2022-06-29 12:11:59 +00:00
* `apstreams` 사용자 추가
2022-07-01 09:31:46 +00:00
## 작업진행
2022-07-01 09:32:30 +00:00
- [x] WebFinger
2022-07-01 09:32:14 +00:00
- [x] User
- [x] Inbox
2022-07-03 14:54:00 +00:00
- [x] Outbox
2022-07-01 09:32:14 +00:00
- [x] Followers
- [x] Following
- [x] Liked
2022-07-05 09:48:31 +00:00
- [x] (Added) Geolocation
- [ ] (Added) File attachment
2022-07-01 09:33:59 +00:00
2022-07-06 09:08:19 +00:00
## 부가기능 (옵션)
2022-07-06 09:10:10 +00:00
- [x] 날씨 (openweathermap.org)
- [x] 환율 (koreaexim.go.kr)
2022-07-06 09:08:19 +00:00
2022-07-07 09:45:14 +00:00
## 향후 지원 예정
- [ ] w3id.org 표준 지원
2022-07-05 09:25:05 +00:00
## 전문 예시
```json
{
2022-07-05 09:38:19 +00:00
"@context": "https://www.w3.org/ns/activitystreams",
2022-07-05 09:25:05 +00:00
"type": "Create",
2022-07-07 03:13:33 +00:00
"id": "http://example.org/bbs/board.php?bo_table=apstreams&wr_id=235",
2022-07-06 09:08:19 +00:00
"to": ["https://www.w3.org/ns/activitystreams#Public", "http://example.org/?route=activitypub.user&mb_id=admin"],
"actor": "http://example.org/?route=activitypub.user&mb_id=admin",
2022-07-05 09:25:05 +00:00
"object": {
"type": "Note",
2022-07-06 08:17:25 +00:00
"generator": "GNUBOARD5 ActivityPub Plugin (INSTANCE_ID: 4d6076784cbd864ade7c746690d37051, INSTANCE_VERSION: 0.1.11-dev)",
2022-07-07 03:13:33 +00:00
"id": "http://example.org/bbs/board.php?bo_table=free&wr_id=1",
2022-07-06 09:08:19 +00:00
"attributedTo": "http://example.org/?route=activitypub.user&mb_id=admin",
2022-07-07 03:13:33 +00:00
"content": "안녕하세요 @admin@example.org",
2022-07-05 09:38:19 +00:00
"icon": "https://www.gravatar.com/avatar/bdbd5eb70305f1eaaa0340687758676a",
2022-07-05 09:25:05 +00:00
"location": {
2022-07-07 03:13:33 +00:00
"name": "xxx.xxx.xxx.xxx, 서울특별시 금천구 가산동 (Korea Telecom), Seoul, Seoul-teukbyeolsi, Korea (Republic of), KR, 06030, +09:00",
2022-07-05 09:25:05 +00:00
"type": "Place",
2022-07-07 03:13:33 +00:00
"longitude": 126.8917326,
"latitude": 37.4769094,
2022-07-06 08:12:08 +00:00
"units": "m",
2022-07-06 09:06:13 +00:00
"_weather": {
2022-07-07 03:13:33 +00:00
"dt": 1657163472,
"sunrise": 1657138663,
"sunset": 1657191385,
"temp": 305.42,
"feels_like": 309.65,
2022-07-06 08:12:08 +00:00
"pressure": 1005,
2022-07-07 03:13:33 +00:00
"humidity": 56,
"dew_point": 295.52,
"uvi": 8.53,
"clouds": 100,
2022-07-06 08:12:08 +00:00
"visibility": 10000,
2022-07-07 03:13:33 +00:00
"wind_speed": 5.72,
"wind_deg": 186,
"wind_gust": 10.14,
2022-07-06 08:12:08 +00:00
"weather": [{
2022-07-07 03:13:33 +00:00
"id": 804,
2022-07-06 08:12:08 +00:00
"main": "Clouds",
2022-07-07 03:13:33 +00:00
"description": "overcast clouds",
2022-07-06 08:12:08 +00:00
"icon": "04d"
}]
2022-07-06 09:06:13 +00:00
},
"_exchange": {
2022-07-06 10:38:44 +00:00
"KRW": {
2022-07-07 03:13:33 +00:00
"AED": 355.94,
"AUD": 887.07,
"BHD": 3467.72,
"BND": 930.73,
"CAD": 1003.15,
"CHF": 1346.86,
"CNH": 194.76,
"DKK": 178.9,
"EUR": 1331.33,
"GBP": 1558.81,
"HKD": 166.61,
"IDR(100)": 8.72,
"JPY(100)": 960.93,
2022-07-06 10:38:44 +00:00
"KRW": 0,
2022-07-07 03:13:33 +00:00
"KWD": 4253.09,
"MYR": 295.49,
"NOK": 128.98,
"NZD": 804.44,
"SAR": 348.27,
"SEK": 124.02,
"SGD": 930.73,
"THB": 36.12,
"USD": 1307.4
2022-07-06 10:38:44 +00:00
}
2022-07-06 08:12:08 +00:00
}
2022-07-05 09:25:05 +00:00
}
},
2022-07-07 03:13:33 +00:00
"published": "2022-07-07T03:11:12Z",
"updated": "2022-07-07T03:11:12Z"
2022-07-05 09:25:05 +00:00
}
```
2022-07-01 09:33:59 +00:00
## 문의
* gnh1201@gmail.com