summaryrefslogtreecommitdiff
path: root/app/scrapers
diff options
context:
space:
mode:
Diffstat (limited to 'app/scrapers')
-rw-r--r--app/scrapers/base.ts1
-rw-r--r--app/scrapers/club-quattro.ts1
-rw-r--r--app/scrapers/fad-yokohama.ts1
-rw-r--r--app/scrapers/fever-shindaita.ts1
-rw-r--r--app/scrapers/flat-nishiogikubo.ts1
-rw-r--r--app/scrapers/liquid-room.ts1
-rw-r--r--app/scrapers/meets-otsuka.ts1
-rw-r--r--app/scrapers/mod-shibasaki.ts1
-rw-r--r--app/scrapers/moon-step-nakano.ts1
-rw-r--r--app/scrapers/navey-floor.ts1
-rw-r--r--app/scrapers/nine-spices.ts1
-rw-r--r--app/scrapers/nishieifuku-jam.ts1
-rw-r--r--app/scrapers/pitbar-nishiogikubo.ts1
-rw-r--r--app/scrapers/shibuya-o.ts1
-rw-r--r--app/scrapers/shimokitazawa-era.ts1
-rw-r--r--app/scrapers/shinjuku-loft.ts1
-rw-r--r--app/scrapers/warp-kichijoji.ts1
-rw-r--r--app/scrapers/www-shibuya.ts1
18 files changed, 18 insertions, 0 deletions
diff --git a/app/scrapers/base.ts b/app/scrapers/base.ts
index 512fcbb..8369797 100644
--- a/app/scrapers/base.ts
+++ b/app/scrapers/base.ts
@@ -5,6 +5,7 @@ export interface VenueMeta {
name: string;
url: string;
area: string;
+ capacity?: number;
}
export interface Scraper {
diff --git a/app/scrapers/club-quattro.ts b/app/scrapers/club-quattro.ts
index 946b9a4..10b60e9 100644
--- a/app/scrapers/club-quattro.ts
+++ b/app/scrapers/club-quattro.ts
@@ -7,6 +7,7 @@ export const venue: VenueMeta = {
name: "CLUB QUATTRO",
url: "https://www.club-quattro.com",
area: "渋谷",
+ capacity: 750,
};
export const scraper: Scraper = {
diff --git a/app/scrapers/fad-yokohama.ts b/app/scrapers/fad-yokohama.ts
index e1aa95c..a01ea0d 100644
--- a/app/scrapers/fad-yokohama.ts
+++ b/app/scrapers/fad-yokohama.ts
@@ -9,6 +9,7 @@ export const venue: VenueMeta = {
name: "F.A.D YOKOHAMA",
url: "http://www.fad-music.com/fad/",
area: "横浜",
+ capacity: 380,
};
function getMonthContext(html: string): {
diff --git a/app/scrapers/fever-shindaita.ts b/app/scrapers/fever-shindaita.ts
index 71c31f6..62c2e2c 100644
--- a/app/scrapers/fever-shindaita.ts
+++ b/app/scrapers/fever-shindaita.ts
@@ -20,6 +20,7 @@ export const venue: VenueMeta = {
name: "新代田 FEVER",
url: "https://www.fever-popo.com",
area: "新代田",
+ capacity: 300,
};
async function scrapeMonth(yyyymm: string): Promise<EventInput[]> {
diff --git a/app/scrapers/flat-nishiogikubo.ts b/app/scrapers/flat-nishiogikubo.ts
index da6752f..50ba688 100644
--- a/app/scrapers/flat-nishiogikubo.ts
+++ b/app/scrapers/flat-nishiogikubo.ts
@@ -21,6 +21,7 @@ export const venue: VenueMeta = {
name: "FLAT 西荻窪",
url: "https://www.flat.rinky.info",
area: "西荻窪",
+ capacity: 80,
};
const SCHEDULE_URL = "https://www.flat.rinky.info/schedule";
diff --git a/app/scrapers/liquid-room.ts b/app/scrapers/liquid-room.ts
index f577ee6..1eeade6 100644
--- a/app/scrapers/liquid-room.ts
+++ b/app/scrapers/liquid-room.ts
@@ -7,6 +7,7 @@ export const venue: VenueMeta = {
name: "LIQUID ROOM",
url: "https://www.liquidroom.net",
area: "恵比寿",
+ capacity: 1000,
};
export const scraper: Scraper = {
diff --git a/app/scrapers/meets-otsuka.ts b/app/scrapers/meets-otsuka.ts
index 57cf120..0b56251 100644
--- a/app/scrapers/meets-otsuka.ts
+++ b/app/scrapers/meets-otsuka.ts
@@ -18,6 +18,7 @@ export const venue: VenueMeta = {
name: "Meets 大塚",
url: "https://meets.rinky.info",
area: "大塚",
+ capacity: 100,
};
export const scraper: Scraper = {
diff --git a/app/scrapers/mod-shibasaki.ts b/app/scrapers/mod-shibasaki.ts
index 0e2a96b..7642805 100644
--- a/app/scrapers/mod-shibasaki.ts
+++ b/app/scrapers/mod-shibasaki.ts
@@ -21,6 +21,7 @@ export const venue: VenueMeta = {
name: "shibasaki mod",
url: "https://shibasakimod.com",
area: "柴崎",
+ capacity: 80,
};
const SCHEDULE_URL = "https://shibasakimod.com/schedule";
diff --git a/app/scrapers/moon-step-nakano.ts b/app/scrapers/moon-step-nakano.ts
index e67e128..cc2a0f0 100644
--- a/app/scrapers/moon-step-nakano.ts
+++ b/app/scrapers/moon-step-nakano.ts
@@ -15,6 +15,7 @@ export const venue: VenueMeta = {
name: "中野 MOON STEP",
url: "https://nakano-dynamite.com/moonstep",
area: "中野",
+ capacity: 200,
};
const API_URL = "https://nakano-dynamite.com/moonstep/wp-json/tribe/events/v1/events";
diff --git a/app/scrapers/navey-floor.ts b/app/scrapers/navey-floor.ts
index 806193e..14736da 100644
--- a/app/scrapers/navey-floor.ts
+++ b/app/scrapers/navey-floor.ts
@@ -7,6 +7,7 @@ export const venue: VenueMeta = {
name: "navey floor",
url: "https://navey-floor.com",
area: "赤坂",
+ capacity: 150,
};
function parseNaveyDate(text: string): string | null {
diff --git a/app/scrapers/nine-spices.ts b/app/scrapers/nine-spices.ts
index f4afa3d..5d60ed4 100644
--- a/app/scrapers/nine-spices.ts
+++ b/app/scrapers/nine-spices.ts
@@ -18,6 +18,7 @@ export const venue: VenueMeta = {
name: "Nine Spices",
url: "https://9spices.rinky.info",
area: "新宿",
+ capacity: 200,
};
export const scraper: Scraper = {
diff --git a/app/scrapers/nishieifuku-jam.ts b/app/scrapers/nishieifuku-jam.ts
index c93b051..7408e02 100644
--- a/app/scrapers/nishieifuku-jam.ts
+++ b/app/scrapers/nishieifuku-jam.ts
@@ -17,6 +17,7 @@ export const venue: VenueMeta = {
name: "西永福JAM",
url: "https://jam.rinky.info",
area: "西永福",
+ capacity: 250,
};
export const scraper: Scraper = {
diff --git a/app/scrapers/pitbar-nishiogikubo.ts b/app/scrapers/pitbar-nishiogikubo.ts
index 54d25d5..2553002 100644
--- a/app/scrapers/pitbar-nishiogikubo.ts
+++ b/app/scrapers/pitbar-nishiogikubo.ts
@@ -20,6 +20,7 @@ export const venue: VenueMeta = {
name: "Pitbar 西荻窪",
url: "https://ameblo.jp/pitbar",
area: "西荻窪",
+ capacity: 100,
};
const CALENDAR_URL = "http://freecalend.com/open/mem25771";
diff --git a/app/scrapers/shibuya-o.ts b/app/scrapers/shibuya-o.ts
index 3d6f192..c674cfc 100644
--- a/app/scrapers/shibuya-o.ts
+++ b/app/scrapers/shibuya-o.ts
@@ -20,6 +20,7 @@ export const venue: VenueMeta = {
name: "渋谷 O-EAST / O-WEST / O-Crest / O-nest",
url: "https://shibuya-o.com",
area: "渋谷",
+ capacity: 1300,
};
const SUB_VENUES = ["east", "west", "crest", "nest"];
diff --git a/app/scrapers/shimokitazawa-era.ts b/app/scrapers/shimokitazawa-era.ts
index a35f8e2..3678a57 100644
--- a/app/scrapers/shimokitazawa-era.ts
+++ b/app/scrapers/shimokitazawa-era.ts
@@ -7,6 +7,7 @@ export const venue: VenueMeta = {
name: "下北沢ERA",
url: "http://s-era.jp",
area: "下北沢",
+ capacity: 200,
};
export const scraper: Scraper = {
diff --git a/app/scrapers/shinjuku-loft.ts b/app/scrapers/shinjuku-loft.ts
index d5602e7..837d6e5 100644
--- a/app/scrapers/shinjuku-loft.ts
+++ b/app/scrapers/shinjuku-loft.ts
@@ -7,6 +7,7 @@ export const venue: VenueMeta = {
name: "新宿 LOFT",
url: "https://www.loft-prj.co.jp",
area: "新宿",
+ capacity: 500,
};
export const scraper: Scraper = {
diff --git a/app/scrapers/warp-kichijoji.ts b/app/scrapers/warp-kichijoji.ts
index 8929fef..765d1fc 100644
--- a/app/scrapers/warp-kichijoji.ts
+++ b/app/scrapers/warp-kichijoji.ts
@@ -24,6 +24,7 @@ export const venue: VenueMeta = {
name: "吉祥寺 WARP",
url: "http://warp.rinky.info",
area: "吉祥寺",
+ capacity: 180,
};
export const scraper: Scraper = {
diff --git a/app/scrapers/www-shibuya.ts b/app/scrapers/www-shibuya.ts
index d561332..2c85080 100644
--- a/app/scrapers/www-shibuya.ts
+++ b/app/scrapers/www-shibuya.ts
@@ -7,6 +7,7 @@ export const venue: VenueMeta = {
name: "WWW / WWW X",
url: "https://www-shibuya.jp",
area: "渋谷",
+ capacity: 700,
};
export const scraper: Scraper = {