Skip to content

Commit f887b68

Browse files
committed
subgraph init
0 parents  commit f887b68

10 files changed

+504
-0
lines changed

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
build/
2+
generated/
3+
abis/
4+
yarn.lock
5+
package-lock.json
6+
subgraph.yaml
7+
node_modules/

ascii_logo.ts

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
export const logo = `
2+
# .d88888b. .d8888b. 888 888 .d888 888 .d88888b. 8888888b. 888
3+
# d88P" "Y88b d88P Y88b 888 888 d88P" 888 d88P" "Y88b 888 "Y88b 888
4+
# 888 888 Y88b. 888 888 888 888 888 888 888 888 888
5+
# 888 888 88888b. .d88b. 88888b. "Y888b. 88888b. .d88b. 888 888888 888 888 888 88888b. .d88b. 88888b. 888 888 .d88b. .d8888b 888 888
6+
# 888 888 888 "88b d8P Y8b 888 "88b "Y88b. 888 "88b d8P Y8b 888 888 888 888 888 "88b d8P Y8b 888 "88b 888 888 d8P Y8b 88K 888 .88P
7+
# 888 888 888 888 88888888 888 888 "888 888 888 88888888 888 888 888 888 888 888 888 88888888 888 888 888 888 88888888 "Y8888b. 888888K
8+
# Y88b. .d88P 888 d88P Y8b. 888 888 Y88b d88P 888 888 Y8b. 888 888 888 Y88b. .d88P 888 d88P Y8b. 888 888 888 .d88P Y8b. X88 888 "88b
9+
# "Y88888P" 88888P" "Y8888 888 888 "Y8888P" 888 888 "Y8888 888 888 888 "Y88888P" 88888P" "Y8888 888 888 8888888P" "Y8888 88888P' 888 888
10+
# 888 888 888
11+
# 888 888
12+
# 888 888
13+
`;

mappings/Book.ts

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
import { dataSource } from "@graphprotocol/graph-ts";
2+
import { Book, BookMetaData } from "../generated/schema";
3+
4+
let context = dataSource.context();
5+
let bookId = context.getString("bookId");
6+
let newBook = Book.load(bookId);
7+
8+
// BookBought(uint256,indexed address, uint256)
9+
// handleBookBought
10+
11+
// BookTransferred(uint256,indexed address)
12+
// handleBookTransferred
13+
14+
// PriceUpdated(uint256)
15+
// handlePriceUpdated
16+
17+
// SellingPriceUpdated(uint256,uint256)
18+
// handleSellingPriceUpdated
19+
20+
// MarketSupplyIncreased(uint256)
21+
// handleMarketSupplyIncreased
22+
23+
// SupplyUnlimited()
24+
// handleSupplyUnlimited
25+
26+
// SupplyLimited()
27+
// handleSupplyLimited
28+
29+
// RoyaltyUpdated(uint256)
30+
// RoyaltyUpdated
31+
32+
// BookRedeemed(uint256,uint256,indexed address)
33+
// handleBookRedeemed
34+
35+
// CoverPageUpdated(bytes32)
36+
// handleCoverPageUpdated
37+
38+
// ContributorAdded(indexed address, uint96)
39+
// handleContributorAdded
40+
41+
// ContributorRemoved(indexed address)
42+
// handleContributorRemoved
43+
44+
// ContributorUpdated(indexed address, uint96)
45+
// handleContributorUpdated
46+
47+
// RevenueWithdrawn(uint256)
48+
// evenueWithdrawn
49+
50+
// BookLocked(uint256,indexed address)
51+
// handleBookLocked
52+
53+
// BookUnlocked(uint256)
54+
// handleBookUnlocked

mappings/Exchange.ts

Whitespace-only changes.

mappings/Publisher.ts

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
import { BigInt, DataSourceContext } from "@graphprotocol/graph-ts";
2+
import { BookPublished } from "../generated/Publisher/Publisher";
3+
import { Book, BookMetaData } from "../generated/schema";
4+
import { Book as BookContract } from "../generated/templates";
5+
6+
export function handleBookPublished(event: BookPublished): void {
7+
let book = Book.load(event.params.bookId.toString());
8+
if (!book) {
9+
let context = new DataSourceContext();
10+
context.setString("bookId", event.params.bookId.toString());
11+
BookContract.createWithContext(event.params.bookAddress, context);
12+
let newBook = new Book(event.params.bookId.toString());
13+
newBook.metadataUri = event.params.metadataUri.toString();
14+
newBook.coverPageUri = event.params.coverPageUri.toString();
15+
newBook.price = event.params.price;
16+
newBook.royalty = event.params.royalty;
17+
newBook.edition = event.params.edition;
18+
newBook.prequel = event.params.prequel;
19+
newBook.supplyLimited = event.params.supplyLimited;
20+
newBook.pricedBookSupplyLimit = event.params.pricedBookSupplyLimit;
21+
newBook.publishedOn = event.block.timestamp;
22+
newBook.totalRevenue = new BigInt(0);
23+
newBook.withdrawableRevenue = new BigInt(0);
24+
newBook.pricedBooksPrinted = new BigInt(0);
25+
newBook.freeBooksPrinted = new BigInt(0);
26+
newBook.contributors = [];
27+
newBook.save();
28+
}
29+
}
30+
31+
// remining IPFS

mappings/Rentor.ts

Whitespace-only changes.

metadata_schemas.json

+141
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
{
2+
"Schema": {
3+
"bookMetaData": {
4+
"bookId": "uint",
5+
"title": "string",
6+
"subTitle": "string",
7+
"language": "string",
8+
"datePublished": "date",
9+
"author": [{ "authorId": "uint", "share": "percentage" }],
10+
"contributors": ["unit"],
11+
"description": "string",
12+
"copyrights": "string",
13+
"keywords": ["", "", ""],
14+
"supplyLimit": {
15+
"limited": "bool",
16+
"limit": "unit"
17+
},
18+
"series": {
19+
"seriesId": "uint",
20+
"seriesNo": "unit"
21+
},
22+
"fiction": "bool",
23+
"genre": ["", "", ""],
24+
"bookCoverImage": "string",
25+
"currency": "string",
26+
"price": "decimal",
27+
"royalties": "percentage"
28+
},
29+
30+
"authorMetaData": {
31+
"id": "uint",
32+
"profile": ["address"]
33+
},
34+
35+
"contributorMetaData": {
36+
"id": "uint",
37+
"role": "string",
38+
"profile": ["address"]
39+
},
40+
41+
"profileMetaData": {
42+
"address": "address",
43+
"name": "string",
44+
"handles": {
45+
"instagram": "string",
46+
"twitter": "string",
47+
"linkedin": "string",
48+
"goodReads": "string"
49+
},
50+
"aboutMe": "string"
51+
}
52+
},
53+
54+
"categories": {
55+
"genre": [
56+
"action",
57+
"adventure",
58+
"classics",
59+
"comic",
60+
"graphic novel",
61+
"detective and mystery",
62+
"fantasy",
63+
"historical fiction",
64+
"horror",
65+
"literary fiction",
66+
"romance",
67+
"science fiction",
68+
"short stories",
69+
"suspense & thrillers",
70+
"women's fiction",
71+
"biographies",
72+
"auto-biographies",
73+
"cookbooks",
74+
"essays",
75+
"history",
76+
"memoir",
77+
"poetry",
78+
"self help",
79+
"art & architecture",
80+
"business & economics",
81+
"children's",
82+
"diary",
83+
"crime",
84+
"encyclopedia",
85+
"drama",
86+
"guide",
87+
"fairy tale",
88+
"health & fitness",
89+
"home & garden",
90+
"humour",
91+
"journal",
92+
"math",
93+
"picture book",
94+
"philosophy",
95+
"prayer",
96+
"political thriller",
97+
"religion & spirituality",
98+
"sport & leisure",
99+
"western",
100+
"travel",
101+
"young adult"
102+
],
103+
"role": [
104+
"editor",
105+
"foreword",
106+
"illustrator & photographer",
107+
"narrator",
108+
"introduction & preface",
109+
"translator"
110+
],
111+
"accessRole": ["admin", "author", "reader", "contributor"]
112+
},
113+
114+
"functionalities": {
115+
"admin": ["withdraw(fees withdraw)", "setFees(for direct/indirect sale)"],
116+
"author": [
117+
"publishBook",
118+
"updatePrice",
119+
"withdrawRevenue(make two variables withdrawableAmount, totalRevenue)",
120+
"updateMarketSupply"
121+
],
122+
"reader": [
123+
"buyPrimaryMarket",
124+
"buySecondaryMarket",
125+
"sellSecondaryMarket",
126+
"redeemVoucher",
127+
"putOnRent",
128+
"removeFromRent",
129+
"takeBookOnRent",
130+
"returnBookOnRent"
131+
],
132+
"TheGraph": [
133+
"getRecentLaunches",
134+
"getBestSellers",
135+
"searchByAuthor",
136+
"searchByBookTitle",
137+
"searchByGenre"
138+
],
139+
"contributor": []
140+
}
141+
}

package.json

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "subgraph",
3+
"version": "0.1.0",
4+
"description": "OpenShelf-OpenDesk Subgraph",
5+
"main": "index.js",
6+
"scripts": {
7+
"codegen": "graph codegen ./subgraph.yaml",
8+
"auth": "graph auth --product hosted-service",
9+
"deploy": "graph deploy --product hosted-service nonitmittal/openshelf-opendesk-subgraph"
10+
},
11+
"repository": {
12+
"type": "git",
13+
"url": "git+https://github.com/OpenShelf-OpenDesk/subgraph.git"
14+
},
15+
"keywords": [
16+
"TheGraph protocol",
17+
"subgraph"
18+
],
19+
"author": "ishitagupta03, nonitmittal, rg12301",
20+
"license": "ISC",
21+
"bugs": {
22+
"url": "https://github.com/OpenShelf-OpenDesk/subgraph/issues"
23+
},
24+
"homepage": "https://github.com/OpenShelf-OpenDesk/subgraph#readme",
25+
"dependencies": {
26+
"@graphprotocol/graph-cli": "^0.26.0",
27+
"@graphprotocol/graph-ts": "^0.24.1"
28+
}
29+
}

schema.graphql

+95
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
type Book @entity {
2+
id: ID!
3+
publisher: Bytes!
4+
metadataUri: String!
5+
coverPageUri: String!
6+
bookMetaData: BookMetaData!
7+
price: BigInt!
8+
royalty: BigInt!
9+
edition: BigInt!
10+
prequel: Bytes!
11+
supplyLimited: Boolean!
12+
pricedBookSupplyLimit: BigInt!
13+
contributors: [Contributor!]!
14+
publishedOn: BigInt!
15+
totalRevenue: BigInt!
16+
withdrawableRevenue: BigInt!
17+
pricedBooksPrinted: BigInt!
18+
freeBooksPrinted: BigInt!
19+
}
20+
21+
type BookMetaData @entity {
22+
id: ID!
23+
title: String!
24+
subTitle: String!
25+
language: String!
26+
BigIntPublished: BigInt!
27+
description: String!
28+
copyrights: String!
29+
keywords: [String!]!
30+
fiction: Boolean!
31+
genre: [String!]!
32+
currency: String!
33+
}
34+
35+
interface User {
36+
id: ID!
37+
profiles: [Profile!]!
38+
}
39+
40+
type Profile @entity {
41+
id: ID!
42+
address: Bytes!
43+
name: String!
44+
aboutMe: String
45+
handles: [Handle!]!
46+
}
47+
48+
enum Platform {
49+
Instagram
50+
Twitter
51+
LinkedIn
52+
GoodReads
53+
}
54+
55+
type Handle @entity {
56+
id: ID!
57+
platform: Platform!
58+
handle: String!
59+
}
60+
61+
type Contributor implements User @entity {
62+
id: ID!
63+
profiles: [Profile!]!
64+
role: String!
65+
share: BigInt!
66+
books: [Book!]! @derivedFrom(field: "contributors")
67+
}
68+
69+
type Reader implements User @entity {
70+
id: ID!
71+
profiles: [Profile!]!
72+
purchasedCopies: [Copy!]! @derivedFrom(field: "owner")
73+
receivedCopies: [DistributedCopy!]! @derivedFrom(field: "receiver")
74+
}
75+
76+
type Copy @entity {
77+
id: ID!
78+
book: Book!
79+
owner: Reader!
80+
previousOwner: Bytes!
81+
lockedWith: Bytes!
82+
sellingPrice: BigInt!
83+
originalPrice: BigInt!
84+
coverPageUri: String!
85+
purchasedOn: BigInt!
86+
}
87+
88+
type DistributedCopy @entity {
89+
id: ID!
90+
book: Book!
91+
receiver: Reader!
92+
originalPrice: BigInt!
93+
coverPageUri: String!
94+
receivedOn: BigInt!
95+
}

0 commit comments

Comments
 (0)