forked from hebcal/hebcal-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdafyomi.js
144 lines (126 loc) · 5.42 KB
/
dafyomi.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/*
Hebcal - A Jewish Calendar Generator
Copyright (C) 1994-2004 Danny Sadinoff
Portions Copyright (c) 2002 Michael J. Radwin. All Rights Reserved.
https://github.com/hebcal/hebcal-js
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Danny Sadinoff can be reached at danny@sadinoff.com
Michael Radwin has made significant contributions as a result of
maintaining hebcal.com.
The JavaScript code was completely rewritten in 2014 by Eyal Schachter.
*/
var c = require('./common'),
greg = require('./greg'),
gematriya = require('gematriya');
var shas = [
// sname, aname, hname, blatt
[ "Berachot", "Berachos", "ברכות", 64 ],
[ "Shabbat", "Shabbos", "שבת", 157 ],
[ "Eruvin", "Eruvin", "ערובין", 105 ],
[ "Pesachim", 0, "פסחים", 121 ],
[ "Shekalim", 0, "שקלים", 22 ],
[ "Yoma", 0, "יומא", 88 ],
[ "Sukkah", 0, "סוכה", 56 ],
[ "Beitzah", 0, "ביצה", 40 ],
[ "Rosh Hashana", 0, "ראש השנה", 35 ],
[ "Taanit", "Taanis", "תענית", 31 ],
[ "Megillah", 0, "מגילה", 32 ],
[ "Moed Katan", 0, "מועד קטן", 29 ],
[ "Chagigah", 0, "חגיגה", 27 ],
[ "Yevamot", "Yevamos", "יבמות", 122 ],
[ "Ketubot", "Kesubos", "כתובות", 112 ],
[ "Nedarim", 0, "נדרים", 91 ],
[ "Nazir", 0, "נזיר", 66 ],
[ "Sotah", 0, "סוטה", 49 ],
[ "Gitin", 0, "גיטין", 90 ],
[ "Kiddushin", 0, "קידושין", 82 ],
[ "Baba Kamma", 0, "בבא קמא", 119 ],
[ "Baba Metzia", 0, "בבא מציעא", 119 ],
[ "Baba Batra", "Baba Basra", "בבא בתרא", 176 ],
[ "Sanhedrin", 0, "סנהדרין", 113 ],
[ "Makkot", "Makkos", "מכות", 24 ],
[ "Shevuot", "Shevuos", "שבועות", 49 ],
[ "Avodah Zarah", 0, "עבודה זרה", 76 ],
[ "Horayot", "Horayos", "הוריות", 14 ],
[ "Zevachim", 0, "זבכים", 120 ],
[ "Menachot", "Menachos", "מנחות", 110 ],
[ "Chullin", 0, "חולין", 142 ],
[ "Bechorot", "Bechoros", "בכורות", 61 ],
[ "Arachin", 0, "ערכין", 34 ],
[ "Temurah", 0, "תמורה", 34 ],
[ "Keritot", "Kerisos", "כריתות", 28 ],
[ "Meilah", 0, "מעילה", 22 ],
[ "Kinnim", 0, "כינים", 4 ],
[ "Tamid", 0, "תמיד", 10 ],
[ "Midot", "Midos", "מידות", 4 ],
[ "Niddah", 0, "נידה", 73 ]
].map(function(m){
return {name: m.slice(0,3), blatt: m[3]};
});
exports.dafyomi = function(gregdate) {
var dafcnt = 40, cno, dno, osday, nsday, total, count, j, cday, blatt;
if (!(gregdate instanceof Date)) {
throw new TypeError('non-date given to dafyomi');
}
osday = greg.greg2abs(new Date(1923, 8, 11));
nsday = greg.greg2abs(new Date(1975, 5, 24));
cday = greg.greg2abs(gregdate);
if (cday < osday) { // no cycle; dy didn't start yet
return {name: [], blatt: 0};
}
if (cday >= nsday) { // "new" cycle
cno = 8 + ( (cday - nsday) / 2711 );
dno = (cday - nsday) % 2711;
} else { // old cycle
cno = 1 + ( (cday - osday) / 2702 );
dno = (cday - osday) / 2702;
}
// Find the daf taking note that the cycle changed slightly after cycle 7.
total = blatt = 0;
count = -1;
// Fix Shekalim for old cycles
if (cno <= 7) {
shas[4].blatt = 13;
} else {
shas[4].blatt = 22;
}
// Find the daf
j = 0;
while (j < dafcnt) {
count++;
total = total + shas[j].blatt - 1;
if (dno < total) {
blatt = (shas[j].blatt + 1) - (total - dno);
// fiddle with the weird ones near the end
switch (count) {
case 36:
blatt = blatt + 21;
break;
case 37:
blatt = blatt + 24;
break;
case 38:
blatt = blatt + 33;
break;
default:
break;
}
// Bailout
j = 1 + dafcnt;
}
j++;
}
return {name: shas[count].name, blatt: blatt};
};
exports.dafname = function(daf, o) {
return c.LANG(daf.name, o) + ' ' + (o === 'h' ? gematriya(daf.blatt) : daf.blatt);
};