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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
|
<?php
/**
* Service for looking up page revisions.
*
* 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 2 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, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* Attribution notice: when this file was created, much of its content was taken
* from the Revision.php file as present in release 1.30. Refer to the history
* of that file for original authorship (that file was removed entirely in 1.37,
* but its history can still be found in prior versions of MediaWiki).
*
* @file
*/
namespace MediaWiki\Revision;
use ActorMigration;
use BagOStuff;
use CommentStore;
use CommentStoreComment;
use Content;
use DBAccessObjectUtils;
use FallbackContent;
use IDBAccessObject;
use InvalidArgumentException;
use LogicException;
use MediaWiki\Content\IContentHandlerFactory;
use MediaWiki\DAO\WikiAwareEntity;
use MediaWiki\HookContainer\HookContainer;
use MediaWiki\HookContainer\HookRunner;
use MediaWiki\Linker\LinkTarget;
use MediaWiki\Page\LegacyArticleIdAccess;
use MediaWiki\Page\PageIdentity;
use MediaWiki\Page\PageIdentityValue;
use MediaWiki\Page\PageStore;
use MediaWiki\Permissions\Authority;
use MediaWiki\Storage\BlobAccessException;
use MediaWiki\Storage\BlobStore;
use MediaWiki\Storage\NameTableStore;
use MediaWiki\Storage\RevisionSlotsUpdate;
use MediaWiki\Storage\SqlBlobStore;
use MediaWiki\User\ActorStore;
use MediaWiki\User\UserIdentity;
use MWException;
use MWTimestamp;
use MWUnknownContentModelException;
use Psr\Log\LoggerAwareInterface;
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;
use RecentChange;
use RuntimeException;
use StatusValue;
use stdClass;
use Title;
use TitleFactory;
use Traversable;
use WANObjectCache;
use Wikimedia\Assert\Assert;
use Wikimedia\IPUtils;
use Wikimedia\Rdbms\Database;
use Wikimedia\Rdbms\DBConnRef;
use Wikimedia\Rdbms\IDatabase;
use Wikimedia\Rdbms\ILoadBalancer;
use Wikimedia\Rdbms\IResultWrapper;
/**
* Service for looking up page revisions.
*
* @since 1.31
* @since 1.32 Renamed from MediaWiki\Storage\RevisionStore
*
* @note This was written to act as a drop-in replacement for the corresponding
* static methods in the old Revision class (which was later removed in 1.37).
*/
class RevisionStore
implements IDBAccessObject, RevisionFactory, RevisionLookup, LoggerAwareInterface {
use LegacyArticleIdAccess;
public const ROW_CACHE_KEY = 'revision-row-1.29';
public const ORDER_OLDEST_TO_NEWEST = 'ASC';
public const ORDER_NEWEST_TO_OLDEST = 'DESC';
// Constants for get(...)Between methods
public const INCLUDE_OLD = 'include_old';
public const INCLUDE_NEW = 'include_new';
public const INCLUDE_BOTH = 'include_both';
/**
* @var SqlBlobStore
*/
private $blobStore;
/**
* @var false|string
*/
private $wikiId;
/**
* @var ILoadBalancer
*/
private $loadBalancer;
/**
* @var WANObjectCache
*/
private $cache;
/**
* @var BagOStuff
*/
private $localCache;
/**
* @var CommentStore
*/
private $commentStore;
/**
* @var ActorMigration
*/
private $actorMigration;
/** @var ActorStore */
private $actorStore;
/**
* @var LoggerInterface
*/
private $logger;
/**
* @var NameTableStore
*/
private $contentModelStore;
/**
* @var NameTableStore
*/
private $slotRoleStore;
/** @var SlotRoleRegistry */
private $slotRoleRegistry;
/** @var IContentHandlerFactory */
private $contentHandlerFactory;
/** @var HookRunner */
private $hookRunner;
/** @var PageStore */
private $pageStore;
/** @var TitleFactory */
private $titleFactory;
/**
* @param ILoadBalancer $loadBalancer
* @param SqlBlobStore $blobStore
* @param WANObjectCache $cache A cache for caching revision rows. This can be the local
* wiki's default instance even if $wikiId refers to a different wiki, since
* makeGlobalKey() is used to constructed a key that allows cached revision rows from
* the same database to be re-used between wikis. For example, enwiki and frwiki will
* use the same cache keys for revision rows from the wikidatawiki database, regardless
* of the cache's default key space.
* @param BagOStuff $localCache Another layer of cache, best to use APCu here.
* @param CommentStore $commentStore
* @param NameTableStore $contentModelStore
* @param NameTableStore $slotRoleStore
* @param SlotRoleRegistry $slotRoleRegistry
* @param ActorMigration $actorMigration
* @param ActorStore $actorStore
* @param IContentHandlerFactory $contentHandlerFactory
* @param PageStore $pageStore
* @param TitleFactory $titleFactory
* @param HookContainer $hookContainer
* @param false|string $wikiId Relevant wiki id or WikiAwareEntity::LOCAL for the current one
*
* @todo $blobStore should be allowed to be any BlobStore!
*
*/
public function __construct(
ILoadBalancer $loadBalancer,
SqlBlobStore $blobStore,
WANObjectCache $cache,
BagOStuff $localCache,
CommentStore $commentStore,
NameTableStore $contentModelStore,
NameTableStore $slotRoleStore,
SlotRoleRegistry $slotRoleRegistry,
ActorMigration $actorMigration,
ActorStore $actorStore,
IContentHandlerFactory $contentHandlerFactory,
PageStore $pageStore,
TitleFactory $titleFactory,
HookContainer $hookContainer,
$wikiId = WikiAwareEntity::LOCAL
) {
Assert::parameterType( [ 'string', 'false' ], $wikiId, '$wikiId' );
$this->loadBalancer = $loadBalancer;
$this->blobStore = $blobStore;
$this->cache = $cache;
$this->localCache = $localCache;
$this->commentStore = $commentStore;
$this->contentModelStore = $contentModelStore;
$this->slotRoleStore = $slotRoleStore;
$this->slotRoleRegistry = $slotRoleRegistry;
$this->actorMigration = $actorMigration;
$this->actorStore = $actorStore;
$this->wikiId = $wikiId;
$this->logger = new NullLogger();
$this->contentHandlerFactory = $contentHandlerFactory;
$this->pageStore = $pageStore;
$this->titleFactory = $titleFactory;
$this->hookRunner = new HookRunner( $hookContainer );
}
public function setLogger( LoggerInterface $logger ) {
$this->logger = $logger;
}
/**
* @return bool Whether the store is read-only
*/
public function isReadOnly() {
return $this->blobStore->isReadOnly();
}
/**
* @return ILoadBalancer
*/
private function getDBLoadBalancer() {
return $this->loadBalancer;
}
/**
* Get the ID of the wiki this revision belongs to.
*
* @return string|false The wiki's logical name, of false to indicate the local wiki.
*/
public function getWikiId() {
return $this->wikiId;
}
/**
* @param int $queryFlags a bit field composed of READ_XXX flags
*
* @return DBConnRef
*/
private function getDBConnectionRefForQueryFlags( $queryFlags ) {
list( $mode, ) = DBAccessObjectUtils::getDBOptions( $queryFlags );
return $this->getDBConnectionRef( $mode );
}
/**
* @param int $mode DB_PRIMARY or DB_REPLICA
*
* @param array $groups
* @return DBConnRef
*/
private function getDBConnectionRef( $mode, $groups = [] ) {
$lb = $this->getDBLoadBalancer();
return $lb->getConnectionRef( $mode, $groups, $this->wikiId );
}
/**
* Determines the page Title based on the available information.
*
* MCR migration note: this corresponded to Revision::getTitle
*
* @deprecated since 1.36, Use RevisionRecord::getPage() instead.
* @note The resulting Title object will be misleading if the RevisionStore is not
* for the local wiki.
*
* @param int|null $pageId
* @param int|null $revId
* @param int $queryFlags
*
* @return Title
* @throws RevisionAccessException
*/
public function getTitle( $pageId, $revId, $queryFlags = self::READ_NORMAL ) {
// TODO: Hard-deprecate this once getPage() returns a PageRecord. T195069
if ( $this->wikiId !== WikiAwareEntity::LOCAL ) {
wfDeprecatedMsg( 'Using a Title object to refer to a page on another site.', '1.36' );
}
$page = $this->getPage( $pageId, $revId, $queryFlags );
// @phan-suppress-next-line PhanTypeMismatchReturnNullable castFrom does not return null here
return $this->titleFactory->castFromPageIdentity( $page );
}
/**
* Determines the page based on the available information.
*
* @param int|null $pageId
* @param int|null $revId
* @param int $queryFlags
*
* @return PageIdentity
* @throws RevisionAccessException
*/
private function getPage( ?int $pageId, ?int $revId, int $queryFlags = self::READ_NORMAL ) {
if ( !$pageId && !$revId ) {
throw new InvalidArgumentException( '$pageId and $revId cannot both be 0 or null' );
}
// This method recalls itself with READ_LATEST if READ_NORMAL doesn't get us a Title
// So ignore READ_LATEST_IMMUTABLE flags and handle the fallback logic in this method
if ( DBAccessObjectUtils::hasFlags( $queryFlags, self::READ_LATEST_IMMUTABLE ) ) {
$queryFlags = self::READ_NORMAL;
}
// Loading by ID is best
if ( $pageId !== null && $pageId > 0 ) {
$page = $this->pageStore->getPageById( $pageId, $queryFlags );
if ( $page ) {
return $this->wrapPage( $page );
}
}
// rev_id is defined as NOT NULL, but this revision may not yet have been inserted.
if ( $revId !== null && $revId > 0 ) {
$pageQuery = $this->pageStore->newSelectQueryBuilder( $queryFlags )
->join( 'revision', null, 'page_id=rev_page' )
->conds( [ 'rev_id' => $revId ] )
->caller( __METHOD__ );
$page = $pageQuery->fetchPageRecord();
if ( $page ) {
return $this->wrapPage( $page );
}
}
// If we still don't have a title, fallback to primary DB if that wasn't already happening.
if ( $queryFlags === self::READ_NORMAL ) {
$title = $this->getPage( $pageId, $revId, self::READ_LATEST );
if ( $title ) {
$this->logger->info(
__METHOD__ . ' fell back to READ_LATEST and got a Title.',
[ 'exception' => new RuntimeException() ]
);
return $title;
}
}
throw new RevisionAccessException(
'Could not determine title for page ID {page_id} and revision ID {rev_id}',
[
'page_id' => $pageId,
'rev_id' => $revId,
]
);
}
/**
* @param PageIdentity $page
*
* @return PageIdentity
*/
private function wrapPage( PageIdentity $page ): PageIdentity {
if ( $this->wikiId === WikiAwareEntity::LOCAL ) {
// NOTE: since there is still a lot of code that needs a full Title,
// and uses Title::castFromPageIdentity() to get one, it's beneficial
// to create a Title right away if we can, so we don't have to convert
// over and over later on.
// When there is less need to convert to Title, this special case can
// be removed.
// @phan-suppress-next-line PhanTypeMismatchReturnNullable castFrom does not return null here
return $this->titleFactory->castFromPageIdentity( $page );
} else {
return $page;
}
}
/**
* @param mixed $value
* @param string $name
*
* @throws IncompleteRevisionException if $value is null
* @return mixed $value, if $value is not null
*/
private function failOnNull( $value, $name ) {
if ( $value === null ) {
throw new IncompleteRevisionException(
"$name must not be " . var_export( $value, true ) . "!"
);
}
return $value;
}
/**
* @param mixed $value
* @param string $name
*
* @throws IncompleteRevisionException if $value is empty
* @return mixed $value, if $value is not null
*/
private function failOnEmpty( $value, $name ) {
if ( $value === null || $value === 0 || $value === '' ) {
throw new IncompleteRevisionException(
"$name must not be " . var_export( $value, true ) . "!"
);
}
return $value;
}
/**
* Insert a new revision into the database, returning the new revision record
* on success and dies horribly on failure.
*
* MCR migration note: this replaced Revision::insertOn
*
* @param RevisionRecord $rev
* @param IDatabase $dbw (primary connection)
*
* @return RevisionRecord the new revision record.
*/
public function insertRevisionOn( RevisionRecord $rev, IDatabase $dbw ) {
// TODO: pass in a DBTransactionContext instead of a database connection.
$this->checkDatabaseDomain( $dbw );
$slotRoles = $rev->getSlotRoles();
// Make sure the main slot is always provided throughout migration
if ( !in_array( SlotRecord::MAIN, $slotRoles ) ) {
throw new IncompleteRevisionException(
'main slot must be provided'
);
}
// Checks
$this->failOnNull( $rev->getSize(), 'size field' );
$this->failOnEmpty( $rev->getSha1(), 'sha1 field' );
$this->failOnEmpty( $rev->getTimestamp(), 'timestamp field' );
$comment = $this->failOnNull( $rev->getComment( RevisionRecord::RAW ), 'comment' );
$user = $this->failOnNull( $rev->getUser( RevisionRecord::RAW ), 'user' );
$this->failOnNull( $user->getId(), 'user field' );
$this->failOnEmpty( $user->getName(), 'user_text field' );
if ( !$rev->isReadyForInsertion() ) {
// This is here for future-proofing. At the time this check being added, it
// was redundant to the individual checks above.
throw new IncompleteRevisionException( 'Revision is incomplete' );
}
if ( $slotRoles == [ SlotRecord::MAIN ] ) {
// T239717: If the main slot is the only slot, make sure the revision's nominal size
// and hash match the main slot's nominal size and hash.
$mainSlot = $rev->getSlot( SlotRecord::MAIN, RevisionRecord::RAW );
Assert::precondition(
$mainSlot->getSize() === $rev->getSize(),
'The revisions\'s size must match the main slot\'s size (see T239717)'
);
Assert::precondition(
$mainSlot->getSha1() === $rev->getSha1(),
'The revisions\'s SHA1 hash must match the main slot\'s SHA1 hash (see T239717)'
);
}
$pageId = $this->failOnEmpty( $rev->getPageId( $this->wikiId ), 'rev_page field' ); // check this early
$parentId = $rev->getParentId() ?? $this->getPreviousRevisionId( $dbw, $rev );
/** @var RevisionRecord $rev */
$rev = $dbw->doAtomicSection(
__METHOD__,
function ( IDatabase $dbw, $fname ) use (
$rev,
$user,
$comment,
$pageId,
$parentId
) {
return $this->insertRevisionInternal(
$rev,
$dbw,
$user,
$comment,
$rev->getPage(),
$pageId,
$parentId
);
}
);
Assert::postcondition( $rev->getId( $this->wikiId ) > 0, 'revision must have an ID' );
Assert::postcondition( $rev->getPageId( $this->wikiId ) > 0, 'revision must have a page ID' );
Assert::postcondition(
$rev->getComment( RevisionRecord::RAW ) !== null,
'revision must have a comment'
);
Assert::postcondition(
$rev->getUser( RevisionRecord::RAW ) !== null,
'revision must have a user'
);
// Trigger exception if the main slot is missing.
// Technically, this could go away after MCR migration: while
// calling code may require a main slot to exist, RevisionStore
// really should not know or care about that requirement.
$rev->getSlot( SlotRecord::MAIN, RevisionRecord::RAW );
foreach ( $slotRoles as $role ) {
$slot = $rev->getSlot( $role, RevisionRecord::RAW );
Assert::postcondition(
$slot->getContent() !== null,
$role . ' slot must have content'
);
Assert::postcondition(
$slot->hasRevision(),
$role . ' slot must have a revision associated'
);
}
$this->hookRunner->onRevisionRecordInserted( $rev );
return $rev;
}
/**
* Update derived slots in an existing revision into the database, returning the modified
* slots on success.
*
* @param RevisionRecord $revision After this method returns, the $revision object will be
* obsolete in that it does not have the new slots.
* @param RevisionSlotsUpdate $revisionSlotsUpdate
* @param IDatabase $dbw (primary connection)
*
* @return SlotRecord[] the new slot records.
* @internal
*/
public function updateSlotsOn(
RevisionRecord $revision,
RevisionSlotsUpdate $revisionSlotsUpdate,
IDatabase $dbw
): array {
$this->checkDatabaseDomain( $dbw );
// Make sure all modified and removed slots are derived slots
foreach ( $revisionSlotsUpdate->getModifiedRoles() as $role ) {
Assert::precondition(
$this->slotRoleRegistry->getRoleHandler( $role )->isDerived(),
'Trying to modify a slot that is not derived'
);
}
foreach ( $revisionSlotsUpdate->getRemovedRoles() as $role ) {
$isDerived = $this->slotRoleRegistry->getRoleHandler( $role )->isDerived();
Assert::precondition(
$isDerived,
'Trying to remove a slot that is not derived'
);
throw new LogicException( 'Removing derived slots is not yet implemented. See T277394.' );
}
/** @var SlotRecord[] $slotRecords */
$slotRecords = $dbw->doAtomicSection(
__METHOD__,
function ( IDatabase $dbw, $fname ) use (
$revision,
$revisionSlotsUpdate
) {
return $this->updateSlotsInternal(
$revision,
$revisionSlotsUpdate,
$dbw
);
}
);
foreach ( $slotRecords as $role => $slot ) {
Assert::postcondition(
$slot->getContent() !== null,
$role . ' slot must have content'
);
Assert::postcondition(
$slot->hasRevision(),
$role . ' slot must have a revision associated'
);
}
return $slotRecords;
}
/**
* @param RevisionRecord $revision
* @param RevisionSlotsUpdate $revisionSlotsUpdate
* @param IDatabase $dbw
* @return SlotRecord[]
*/
private function updateSlotsInternal(
RevisionRecord $revision,
RevisionSlotsUpdate $revisionSlotsUpdate,
IDatabase $dbw
): array {
$page = $revision->getPage();
$revId = $revision->getId( $this->wikiId );
$blobHints = [
BlobStore::PAGE_HINT => $page->getId( $this->wikiId ),
BlobStore::REVISION_HINT => $revId,
BlobStore::PARENT_HINT => $revision->getParentId( $this->wikiId ),
];
$newSlots = [];
foreach ( $revisionSlotsUpdate->getModifiedRoles() as $role ) {
$slot = $revisionSlotsUpdate->getModifiedSlot( $role );
$newSlots[$role] = $this->insertSlotOn( $dbw, $revId, $slot, $page, $blobHints );
}
return $newSlots;
}
private function insertRevisionInternal(
RevisionRecord $rev,
IDatabase $dbw,
UserIdentity $user,
CommentStoreComment $comment,
PageIdentity $page,
$pageId,
$parentId
) {
$slotRoles = $rev->getSlotRoles();
$revisionRow = $this->insertRevisionRowOn(
$dbw,
$rev,
$parentId
);
$revisionId = $revisionRow['rev_id'];
$blobHints = [
BlobStore::PAGE_HINT => $pageId,
BlobStore::REVISION_HINT => $revisionId,
BlobStore::PARENT_HINT => $parentId,
];
$newSlots = [];
foreach ( $slotRoles as $role ) {
$slot = $rev->getSlot( $role, RevisionRecord::RAW );
// If the SlotRecord already has a revision ID set, this means it already exists
// in the database, and should already belong to the current revision.
// However, a slot may already have a revision, but no content ID, if the slot
// is emulated based on the archive table, because we are in SCHEMA_COMPAT_READ_OLD
// mode, and the respective archive row was not yet migrated to the new schema.
// In that case, a new slot row (and content row) must be inserted even during
// undeletion.
if ( $slot->hasRevision() && $slot->hasContentId() ) {
// TODO: properly abort transaction if the assertion fails!
Assert::parameter(
$slot->getRevision() === $revisionId,
'slot role ' . $slot->getRole(),
'Existing slot should belong to revision '
. $revisionId . ', but belongs to revision ' . $slot->getRevision() . '!'
);
// Slot exists, nothing to do, move along.
// This happens when restoring archived revisions.
$newSlots[$role] = $slot;
} else {
$newSlots[$role] = $this->insertSlotOn( $dbw, $revisionId, $slot, $page, $blobHints );
}
}
$this->insertIpChangesRow( $dbw, $user, $rev, $revisionId );
$rev = new RevisionStoreRecord(
$page,
$user,
$comment,
(object)$revisionRow,
new RevisionSlots( $newSlots ),
$this->wikiId
);
return $rev;
}
/**
* @param IDatabase $dbw
* @param int $revisionId
* @param SlotRecord $protoSlot
* @param PageIdentity $page
* @param array $blobHints See the BlobStore::XXX_HINT constants
* @return SlotRecord
*/
private function insertSlotOn(
IDatabase $dbw,
$revisionId,
SlotRecord $protoSlot,
PageIdentity $page,
array $blobHints = []
) {
if ( $protoSlot->hasAddress() ) {
$blobAddress = $protoSlot->getAddress();
} else {
$blobAddress = $this->storeContentBlob( $protoSlot, $page, $blobHints );
}
if ( $protoSlot->hasContentId() ) {
$contentId = $protoSlot->getContentId();
} else {
$contentId = $this->insertContentRowOn( $protoSlot, $dbw, $blobAddress );
}
$this->insertSlotRowOn( $protoSlot, $dbw, $revisionId, $contentId );
return SlotRecord::newSaved(
$revisionId,
$contentId,
$blobAddress,
$protoSlot
);
}
/**
* Insert IP revision into ip_changes for use when querying for a range.
* @param IDatabase $dbw
* @param UserIdentity $user
* @param RevisionRecord $rev
* @param int $revisionId
*/
private function insertIpChangesRow(
IDatabase $dbw,
UserIdentity $user,
RevisionRecord $rev,
$revisionId
) {
if ( !$user->isRegistered() && IPUtils::isValid( $user->getName() ) ) {
$ipcRow = [
'ipc_rev_id' => $revisionId,
'ipc_rev_timestamp' => $dbw->timestamp( $rev->getTimestamp() ),
'ipc_hex' => IPUtils::toHex( $user->getName() ),
];
$dbw->insert( 'ip_changes', $ipcRow, __METHOD__ );
}
}
/**
* @param IDatabase $dbw
* @param RevisionRecord $rev
* @param int $parentId
*
* @return array a revision table row
*
* @throws MWException
* @throws MWUnknownContentModelException
*/
private function insertRevisionRowOn(
IDatabase $dbw,
RevisionRecord $rev,
$parentId
) {
$revisionRow = $this->getBaseRevisionRow( $dbw, $rev, $parentId );
list( $commentFields, $commentCallback ) =
$this->commentStore->insertWithTempTable(
$dbw,
'rev_comment',
$rev->getComment( RevisionRecord::RAW )
);
$revisionRow += $commentFields;
list( $actorFields, $actorCallback ) =
$this->actorMigration->getInsertValuesWithTempTable(
$dbw,
'rev_user',
$rev->getUser( RevisionRecord::RAW )
);
$revisionRow += $actorFields;
$dbw->insert( 'revision', $revisionRow, __METHOD__ );
if ( !isset( $revisionRow['rev_id'] ) ) {
// only if auto-increment was used
$revisionRow['rev_id'] = intval( $dbw->insertId() );
if ( $dbw->getType() === 'mysql' ) {
// (T202032) MySQL until 8.0 and MariaDB until some version after 10.1.34 don't save the
// auto-increment value to disk, so on server restart it might reuse IDs from deleted
// revisions. We can fix that with an insert with an explicit rev_id value, if necessary.
$maxRevId = intval( $dbw->selectField( 'archive', 'MAX(ar_rev_id)', '', __METHOD__ ) );
$table = 'archive';
$maxRevId2 = intval( $dbw->selectField( 'slots', 'MAX(slot_revision_id)', '', __METHOD__ ) );
if ( $maxRevId2 >= $maxRevId ) {
$maxRevId = $maxRevId2;
$table = 'slots';
}
if ( $maxRevId >= $revisionRow['rev_id'] ) {
$this->logger->debug(
'__METHOD__: Inserted revision {revid} but {table} has revisions up to {maxrevid}.'
. ' Trying to fix it.',
[
'revid' => $revisionRow['rev_id'],
'table' => $table,
'maxrevid' => $maxRevId,
]
);
if ( !$dbw->lock( 'fix-for-T202032', __METHOD__ ) ) {
throw new MWException( 'Failed to get database lock for T202032' );
}
$fname = __METHOD__;
$dbw->onTransactionResolution(
static function ( $trigger, IDatabase $dbw ) use ( $fname ) {
$dbw->unlock( 'fix-for-T202032', $fname );
},
__METHOD__
);
$dbw->delete( 'revision', [ 'rev_id' => $revisionRow['rev_id'] ], __METHOD__ );
// The locking here is mostly to make MySQL bypass the REPEATABLE-READ transaction
// isolation (weird MySQL "feature"). It does seem to block concurrent auto-incrementing
// inserts too, though, at least on MariaDB 10.1.29.
//
// Don't try to lock `revision` in this way, it'll deadlock if there are concurrent
// transactions in this code path thanks to the row lock from the original ->insert() above.
//
// And we have to use raw SQL to bypass the "aggregation used with a locking SELECT" warning
// that's for non-MySQL DBs.
$row1 = $dbw->query(
$dbw->selectSQLText( 'archive', [ 'v' => "MAX(ar_rev_id)" ], '', __METHOD__ ) . ' FOR UPDATE',
__METHOD__
)->fetchObject();
$row2 = $dbw->query(
$dbw->selectSQLText( 'slots', [ 'v' => "MAX(slot_revision_id)" ], '', __METHOD__ )
. ' FOR UPDATE',
__METHOD__
)->fetchObject();
$maxRevId = max(
$maxRevId,
$row1 ? intval( $row1->v ) : 0,
$row2 ? intval( $row2->v ) : 0
);
// If we don't have SCHEMA_COMPAT_WRITE_NEW, all except the first of any concurrent
// transactions will throw a duplicate key error here. It doesn't seem worth trying
// to avoid that.
$revisionRow['rev_id'] = $maxRevId + 1;
$dbw->insert( 'revision', $revisionRow, __METHOD__ );
}
}
}
$commentCallback( $revisionRow['rev_id'] );
$actorCallback( $revisionRow['rev_id'], $revisionRow );
return $revisionRow;
}
/**
* @param IDatabase $dbw
* @param RevisionRecord $rev
* @param int $parentId
*
* @return array a revision table row
*/
private function getBaseRevisionRow(
IDatabase $dbw,
RevisionRecord $rev,
$parentId
) {
// Record the edit in revisions
$revisionRow = [
'rev_page' => $rev->getPageId( $this->wikiId ),
'rev_parent_id' => $parentId,
'rev_minor_edit' => $rev->isMinor() ? 1 : 0,
'rev_timestamp' => $dbw->timestamp( $rev->getTimestamp() ),
'rev_deleted' => $rev->getVisibility(),
'rev_len' => $rev->getSize(),
'rev_sha1' => $rev->getSha1(),
];
if ( $rev->getId( $this->wikiId ) !== null ) {
// Needed to restore revisions with their original ID
$revisionRow['rev_id'] = $rev->getId( $this->wikiId );
}
return $revisionRow;
}
/**
* @param SlotRecord $slot
* @param PageIdentity $page
* @param array $blobHints See the BlobStore::XXX_HINT constants
*
* @throws MWException
* @return string the blob address
*/
private function storeContentBlob(
SlotRecord $slot,
PageIdentity $page,
array $blobHints = []
) {
$content = $slot->getContent();
$format = $content->getDefaultFormat();
$model = $content->getModel();
$this->checkContent( $content, $page, $slot->getRole() );
return $this->blobStore->storeBlob(
$content->serialize( $format ),
// These hints "leak" some information from the higher abstraction layer to
// low level storage to allow for optimization.
array_merge(
$blobHints,
[
BlobStore::DESIGNATION_HINT => 'page-content',
BlobStore::ROLE_HINT => $slot->getRole(),
BlobStore::SHA1_HINT => $slot->getSha1(),
BlobStore::MODEL_HINT => $model,
BlobStore::FORMAT_HINT => $format,
]
)
);
}
/**
* @param SlotRecord $slot
* @param IDatabase $dbw
* @param int $revisionId
* @param int $contentId
*/
private function insertSlotRowOn( SlotRecord $slot, IDatabase $dbw, $revisionId, $contentId ) {
$slotRow = [
'slot_revision_id' => $revisionId,
'slot_role_id' => $this->slotRoleStore->acquireId( $slot->getRole() ),
'slot_content_id' => $contentId,
// If the slot has a specific origin use that ID, otherwise use the ID of the revision
// that we just inserted.
'slot_origin' => $slot->hasOrigin() ? $slot->getOrigin() : $revisionId,
];
$dbw->insert( 'slots', $slotRow, __METHOD__ );
}
/**
* @param SlotRecord $slot
* @param IDatabase $dbw
* @param string $blobAddress
* @return int content row ID
*/
private function insertContentRowOn( SlotRecord $slot, IDatabase $dbw, $blobAddress ) {
$contentRow = [
'content_size' => $slot->getSize(),
'content_sha1' => $slot->getSha1(),
'content_model' => $this->contentModelStore->acquireId( $slot->getModel() ),
'content_address' => $blobAddress,
];
$dbw->insert( 'content', $contentRow, __METHOD__ );
return intval( $dbw->insertId() );
}
/**
* MCR migration note: this corresponded to Revision::checkContentModel
*
* @param Content $content
* @param PageIdentity $page
* @param string $role
*
* @throws MWException
* @throws MWUnknownContentModelException
*/
private function checkContent( Content $content, PageIdentity $page, string $role ) {
// Note: may return null for revisions that have not yet been inserted
$model = $content->getModel();
$format = $content->getDefaultFormat();
$handler = $content->getContentHandler();
if ( !$handler->isSupportedFormat( $format ) ) {
throw new MWException(
"Can't use format $format with content model $model on $page role $role"
);
}
if ( !$content->isValid() ) {
throw new MWException(
"New content for $page role $role is not valid! Content model is $model"
);
}
}
/**
* Create a new null-revision for insertion into a page's
* history. This will not re-save the text, but simply refer
* to the text from the previous version.
*
* Such revisions can for instance identify page rename
* operations and other such meta-modifications.
*
* @note This method grabs a FOR UPDATE lock on the relevant row of the page table,
* to prevent a new revision from being inserted before the null revision has been written
* to the database.
*
* MCR migration note: this replaced Revision::newNullRevision
*
* @todo Introduce newFromParentRevision(). newNullRevision can then be based on that
* (or go away).
*
* @param IDatabase $dbw used for obtaining the lock on the page table row
* @param PageIdentity $page the page to read from
* @param CommentStoreComment $comment RevisionRecord's summary
* @param bool $minor Whether the revision should be considered as minor
* @param UserIdentity $user The user to attribute the revision to
*
* @return RevisionRecord|null RevisionRecord or null on error
*/
public function newNullRevision(
IDatabase $dbw,
PageIdentity $page,
CommentStoreComment $comment,
$minor,
UserIdentity $user
) {
$this->checkDatabaseDomain( $dbw );
$pageId = $this->getArticleId( $page );
// T51581: Lock the page table row to ensure no other process
// is adding a revision to the page at the same time.
// Avoid locking extra tables, compare T191892.
$pageLatest = $dbw->selectField(
'page',
'page_latest',
[ 'page_id' => $pageId ],
__METHOD__,
[ 'FOR UPDATE' ]
);
if ( !$pageLatest ) {
$msg = 'T235589: Failed to select table row during null revision creation' .
" Page id '$pageId' does not exist.";
$this->logger->error(
$msg,
[ 'exception' => new RuntimeException( $msg ) ]
);
return null;
}
// Fetch the actual revision row from primary DB, without locking all extra tables.
$oldRevision = $this->loadRevisionFromConds(
$dbw,
[ 'rev_id' => intval( $pageLatest ) ],
self::READ_LATEST,
$page
);
if ( !$oldRevision ) {
$msg = "Failed to load latest revision ID $pageLatest of page ID $pageId.";
$this->logger->error(
$msg,
[ 'exception' => new RuntimeException( $msg ) ]
);
return null;
}
// Construct the new revision
$timestamp = MWTimestamp::now( TS_MW );
$newRevision = MutableRevisionRecord::newFromParentRevision( $oldRevision );
$newRevision->setComment( $comment );
$newRevision->setUser( $user );
$newRevision->setTimestamp( $timestamp );
$newRevision->setMinorEdit( $minor );
return $newRevision;
}
/**
* MCR migration note: this replaced Revision::isUnpatrolled
*
* @todo This is overly specific, so move or kill this method.
*
* @param RevisionRecord $rev
*
* @return int Rcid of the unpatrolled row, zero if there isn't one
*/
public function getRcIdIfUnpatrolled( RevisionRecord $rev ) {
$rc = $this->getRecentChange( $rev );
if ( $rc && $rc->getAttribute( 'rc_patrolled' ) == RecentChange::PRC_UNPATROLLED ) {
return $rc->getAttribute( 'rc_id' );
} else {
return 0;
}
}
/**
* Get the RC object belonging to the current revision, if there's one
*
* MCR migration note: this replaced Revision::getRecentChange
*
* @todo move this somewhere else?
*
* @param RevisionRecord $rev
* @param int $flags (optional) $flags include:
* IDBAccessObject::READ_LATEST: Select the data from the primary DB
*
* @return null|RecentChange
*/
public function getRecentChange( RevisionRecord $rev, $flags = 0 ) {
list( $dbType, ) = DBAccessObjectUtils::getDBOptions( $flags );
$rc = RecentChange::newFromConds(
[ 'rc_this_oldid' => $rev->getId( $this->wikiId ) ],
__METHOD__,
$dbType
);
// XXX: cache this locally? Glue it to the RevisionRecord?
return $rc;
}
/**
* Loads a Content object based on a slot row.
*
* This method does not call $slot->getContent(), and may be used as a callback
* called by $slot->getContent().
*
* MCR migration note: this roughly corresponded to Revision::getContentInternal
*
* @param SlotRecord $slot The SlotRecord to load content for
* @param string|null $blobData The content blob, in the form indicated by $blobFlags
* @param string|null $blobFlags Flags indicating how $blobData needs to be processed.
* Use null if no processing should happen. That is in contrast to the empty string,
* which causes the blob to be decoded according to the configured legacy encoding.
* @param string|null $blobFormat MIME type indicating how $dataBlob is encoded
* @param int $queryFlags
*
* @throws RevisionAccessException
* @return Content
*/
private function loadSlotContent(
SlotRecord $slot,
?string $blobData = null,
?string $blobFlags = null,
?string $blobFormat = null,
int $queryFlags = 0
) {
if ( $blobData !== null ) {
$cacheKey = $slot->hasAddress() ? $slot->getAddress() : null;
if ( $blobFlags === null ) {
// No blob flags, so use the blob verbatim.
$data = $blobData;
} else {
$data = $this->blobStore->expandBlob( $blobData, $blobFlags, $cacheKey );
if ( $data === false ) {
throw new RevisionAccessException(
'Failed to expand blob data using flags {flags} (key: {cache_key})',
[
'flags' => $blobFlags,
'cache_key' => $cacheKey,
]
);
}
}
} else {
$address = $slot->getAddress();
try {
$data = $this->blobStore->getBlob( $address, $queryFlags );
} catch ( BlobAccessException $e ) {
throw new RevisionAccessException(
'Failed to load data blob from {address}'
. 'If this problem persist, use the findBadBlobs maintenance script '
. 'to investigate the issue and mark bad blobs.',
[ 'address' => $e->getMessage() ],
0,
$e
);
}
}
$model = $slot->getModel();
// If the content model is not known, don't fail here (T220594, T220793, T228921)
if ( !$this->contentHandlerFactory->isDefinedModel( $model ) ) {
$this->logger->warning(
"Undefined content model '$model', falling back to FallbackContent",
[
'content_address' => $slot->getAddress(),
'rev_id' => $slot->getRevision(),
'role_name' => $slot->getRole(),
'model_name' => $model,
'exception' => new RuntimeException()
]
);
return new FallbackContent( $data, $model );
}
return $this->contentHandlerFactory
->getContentHandler( $model )
->unserializeContent( $data, $blobFormat );
}
/**
* Load a page revision from a given revision ID number.
* Returns null if no such revision can be found.
*
* MCR migration note: this replaced Revision::newFromId
*
* $flags include:
* IDBAccessObject::READ_LATEST: Select the data from the primary DB
* IDBAccessObject::READ_LOCKING : Select & lock the data from the primary DB
*
* @param int $id
* @param int $flags (optional)
* @param PageIdentity|null $page The page the revision belongs to.
* Providing the page may improve performance.
*
* @return RevisionRecord|null
*/
public function getRevisionById( $id, $flags = 0, PageIdentity $page = null ) {
return $this->newRevisionFromConds( [ 'rev_id' => intval( $id ) ], $flags, $page );
}
/**
* Load either the current, or a specified, revision
* that's attached to a given link target. If not attached
* to that link target, will return null.
*
* MCR migration note: this replaced Revision::newFromTitle
*
* $flags include:
* IDBAccessObject::READ_LATEST: Select the data from the primary DB
* IDBAccessObject::READ_LOCKING : Select & lock the data from the primary DB
*
* @param LinkTarget|PageIdentity $page Calling with LinkTarget is deprecated since 1.36
* @param int $revId (optional)
* @param int $flags Bitfield (optional)
* @return RevisionRecord|null
*/
public function getRevisionByTitle( $page, $revId = 0, $flags = 0 ) {
$conds = [
'page_namespace' => $page->getNamespace(),
'page_title' => $page->getDBkey()
];
if ( $page instanceof LinkTarget ) {
// Only resolve LinkTarget to a Title when operating in the context of the local wiki (T248756)
$page = $this->wikiId === WikiAwareEntity::LOCAL ? Title::castFromLinkTarget( $page ) : null;
}
if ( $revId ) {
// Use the specified revision ID.
// Note that we use newRevisionFromConds here because we want to retry
// and fall back to primary DB if the page is not found on a replica.
// Since the caller supplied a revision ID, we are pretty sure the revision is
// supposed to exist, so we should try hard to find it.
$conds['rev_id'] = $revId;
return $this->newRevisionFromConds( $conds, $flags, $page );
} else {
// Use a join to get the latest revision.
// Note that we don't use newRevisionFromConds here because we don't want to retry
// and fall back to primary DB. The assumption is that we only want to force the fallback
// if we are quite sure the revision exists because the caller supplied a revision ID.
// If the page isn't found at all on a replica, it probably simply does not exist.
$db = $this->getDBConnectionRefForQueryFlags( $flags );
$conds[] = 'rev_id=page_latest';
return $this->loadRevisionFromConds( $db, $conds, $flags, $page );
}
}
/**
* Load either the current, or a specified, revision
* that's attached to a given page ID.
* Returns null if no such revision can be found.
*
* MCR migration note: this replaced Revision::newFromPageId
*
* $flags include:
* IDBAccessObject::READ_LATEST: Select the data from the primary DB (since 1.20)
* IDBAccessObject::READ_LOCKING : Select & lock the data from the primary DB
*
* @param int $pageId
* @param int $revId (optional)
* @param int $flags Bitfield (optional)
* @return RevisionRecord|null
*/
public function getRevisionByPageId( $pageId, $revId = 0, $flags = 0 ) {
$conds = [ 'page_id' => $pageId ];
if ( $revId ) {
// Use the specified revision ID.
// Note that we use newRevisionFromConds here because we want to retry
// and fall back to primary DB if the page is not found on a replica.
// Since the caller supplied a revision ID, we are pretty sure the revision is
// supposed to exist, so we should try hard to find it.
$conds['rev_id'] = $revId;
return $this->newRevisionFromConds( $conds, $flags );
} else {
// Use a join to get the latest revision.
// Note that we don't use newRevisionFromConds here because we don't want to retry
// and fall back to primary DB. The assumption is that we only want to force the fallback
// if we are quite sure the revision exists because the caller supplied a revision ID.
// If the page isn't found at all on a replica, it probably simply does not exist.
$db = $this->getDBConnectionRefForQueryFlags( $flags );
$conds[] = 'rev_id=page_latest';
return $this->loadRevisionFromConds( $db, $conds, $flags );
}
}
/**
* Load the revision for the given title with the given timestamp.
* WARNING: Timestamps may in some circumstances not be unique,
* so this isn't the best key to use.
*
* MCR migration note: this replaced Revision::loadFromTimestamp
*
* @param LinkTarget|PageIdentity $page Calling with LinkTarget is deprecated since 1.36
* @param string $timestamp
* @param int $flags Bitfield (optional) include:
* IDBAccessObject::READ_LATEST: Select the data from the primary DB
* IDBAccessObject::READ_LOCKING: Select & lock the data from the primary DB
* Default: IDBAccessObject::READ_NORMAL
* @return RevisionRecord|null
*/
public function getRevisionByTimestamp(
$page,
string $timestamp,
int $flags = IDBAccessObject::READ_NORMAL
): ?RevisionRecord {
if ( $page instanceof LinkTarget ) {
// Only resolve LinkTarget to a Title when operating in the context of the local wiki (T248756)
$page = $this->wikiId === WikiAwareEntity::LOCAL ? Title::castFromLinkTarget( $page ) : null;
}
$db = $this->getDBConnectionRefForQueryFlags( $flags );
return $this->newRevisionFromConds(
[
'rev_timestamp' => $db->timestamp( $timestamp ),
'page_namespace' => $page->getNamespace(),
'page_title' => $page->getDBkey()
],
$flags,
$page
);
}
/**
* @param int $revId The revision to load slots for.
* @param int $queryFlags
* @param PageIdentity $page
*
* @return SlotRecord[]
*/
private function loadSlotRecords( $revId, $queryFlags, PageIdentity $page ) {
// TODO: Find a way to add NS_MODULE from Scribunto here
if ( $page->getNamespace() !== NS_TEMPLATE ) {
$res = $this->loadSlotRecordsFromDb( $revId, $queryFlags, $page );
return $this->constructSlotRecords( $revId, $res, $queryFlags, $page );
}
// TODO: These caches should not be needed. See T297147#7563670
$res = $this->localCache->getWithSetCallback(
$this->localCache->makeKey(
'revision-slots',
$page->getWikiId(),
$page->getId( $page->getWikiId() ),
$revId
),
$this->localCache::TTL_HOUR,
function () use ( $revId, $queryFlags, $page ) {
return $this->cache->getWithSetCallback(
$this->cache->makeKey(
'revision-slots',
$page->getWikiId(),
$page->getId( $page->getWikiId() ),
$revId
),
WANObjectCache::TTL_DAY,
function () use ( $revId, $queryFlags, $page ) {
$res = $this->loadSlotRecordsFromDb( $revId, $queryFlags, $page );
if ( !$res ) {
// Avoid caching
return false;
}
return $res;
}
);
}
);
if ( !$res ) {
$res = [];
}
return $this->constructSlotRecords( $revId, $res, $queryFlags, $page );
}
private function loadSlotRecordsFromDb( $revId, $queryFlags, PageIdentity $page ): array {
$revQuery = $this->getSlotsQueryInfo( [ 'content' ] );
list( $dbMode, $dbOptions ) = DBAccessObjectUtils::getDBOptions( $queryFlags );
$db = $this->getDBConnectionRef( $dbMode );
$res = $db->select(
$revQuery['tables'],
$revQuery['fields'],
[
'slot_revision_id' => $revId,
],
__METHOD__,
$dbOptions,
$revQuery['joins']
);
if ( !$res->numRows() && !( $queryFlags & self::READ_LATEST ) ) {
// If we found no slots, try looking on the primary database (T212428, T252156)
$this->logger->info(
__METHOD__ . ' falling back to READ_LATEST.',
[
'revid' => $revId,
'exception' => new RuntimeException(),
]
);
return $this->loadSlotRecordsFromDb(
$revId,
$queryFlags | self::READ_LATEST,
$page
);
}
return iterator_to_array( $res );
}
/**
* Factory method for SlotRecords based on known slot rows.
*
* @param int $revId The revision to load slots for.
* @param \stdClass[]|IResultWrapper $slotRows
* @param int $queryFlags
* @param PageIdentity $page
* @param array|null $slotContents a map from blobAddress to slot
* content blob or Content object.
*
* @return SlotRecord[]
*/
private function constructSlotRecords(
$revId,
$slotRows,
$queryFlags,
PageIdentity $page,
$slotContents = null
) {
$slots = [];
foreach ( $slotRows as $row ) {
// Resolve role names and model names from in-memory cache, if they were not joined in.
if ( !isset( $row->role_name ) ) {
$row->role_name = $this->slotRoleStore->getName( (int)$row->slot_role_id );
}
if ( !isset( $row->model_name ) ) {
if ( isset( $row->content_model ) ) {
$row->model_name = $this->contentModelStore->getName( (int)$row->content_model );
} else {
// We may get here if $row->model_name is set but null, perhaps because it
// came from rev_content_model, which is NULL for the default model.
$slotRoleHandler = $this->slotRoleRegistry->getRoleHandler( $row->role_name );
$row->model_name = $slotRoleHandler->getDefaultModel( $page );
}
}
// We may have a fake blob_data field from getSlotRowsForBatch(), use it!
if ( isset( $row->blob_data ) ) {
$slotContents[$row->content_address] = $row->blob_data;
}
$contentCallback = function ( SlotRecord $slot ) use ( $slotContents, $queryFlags ) {
$blob = null;
if ( isset( $slotContents[$slot->getAddress()] ) ) {
$blob = $slotContents[$slot->getAddress()];
if ( $blob instanceof Content ) {
return $blob;
}
}
return $this->loadSlotContent( $slot, $blob, null, null, $queryFlags );
};
$slots[$row->role_name] = new SlotRecord( $row, $contentCallback );
}
if ( !isset( $slots[SlotRecord::MAIN] ) ) {
$this->logger->error(
__METHOD__ . ': Main slot of revision not found in database. See T212428.',
[
'revid' => $revId,
'queryFlags' => $queryFlags,
'exception' => new RuntimeException(),
]
);
throw new RevisionAccessException(
'Main slot of revision not found in database. See T212428.'
);
}
return $slots;
}
/**
* Factory method for RevisionSlots based on a revision ID.
*
* @note If other code has a need to construct RevisionSlots objects, this should be made
* public, since RevisionSlots instances should not be constructed directly.
*
* @param int $revId
* @param \stdClass $revisionRow
* @param \stdClass[]|null $slotRows
* @param int $queryFlags
* @param PageIdentity $page
*
* @return RevisionSlots
* @throws MWException
*/
private function newRevisionSlots(
$revId,
$revisionRow,
$slotRows,
$queryFlags,
PageIdentity $page
) {
if ( $slotRows ) {
$slots = new RevisionSlots(
$this->constructSlotRecords( $revId, $slotRows, $queryFlags, $page )
);
} else {
$slots = new RevisionSlots( function () use( $revId, $queryFlags, $page ) {
return $this->loadSlotRecords( $revId, $queryFlags, $page );
} );
}
return $slots;
}
/**
* Make a fake RevisionRecord object from an archive table row. This is queried
* for permissions or even inserted (as in Special:Undelete)
*
* The user ID and user name may optionally be supplied using the aliases
* ar_user and ar_user_text (the names of fields which existed before
* MW 1.34).
*
* MCR migration note: this replaced Revision::newFromArchiveRow
*
* @param \stdClass $row
* @param int $queryFlags
* @param PageIdentity|null $page
* @param array $overrides associative array with fields of $row to override. This may be
* used e.g. to force the parent revision ID or page ID. Keys in the array are fields
* names from the archive table without the 'ar_' prefix, i.e. use 'parent_id' to
* override ar_parent_id.
*
* @return RevisionRecord
* @throws MWException
*/
public function newRevisionFromArchiveRow(
$row,
$queryFlags = 0,
PageIdentity $page = null,
array $overrides = []
) {
return $this->newRevisionFromArchiveRowAndSlots( $row, null, $queryFlags, $page, $overrides );
}
/**
* @see RevisionFactory::newRevisionFromRow
*
* MCR migration note: this replaced Revision::newFromRow
*
* @param \stdClass $row A database row generated from a query based on getQueryInfo()
* @param int $queryFlags
* @param PageIdentity|null $page Preloaded page object
* @param bool $fromCache if true, the returned RevisionRecord will ensure that no stale
* data is returned from getters, by querying the database as needed
* @return RevisionRecord
*/
public function newRevisionFromRow(
$row,
$queryFlags = 0,
PageIdentity $page = null,
$fromCache = false
) {
return $this->newRevisionFromRowAndSlots( $row, null, $queryFlags, $page, $fromCache );
}
/**
* @see newRevisionFromArchiveRow()
* @since 1.35
*
* @param stdClass $row
* @param null|stdClass[]|RevisionSlots $slots
* - Database rows generated from a query based on getSlotsQueryInfo
* with the 'content' flag set. Or
* - RevisionSlots instance
* @param int $queryFlags
* @param PageIdentity|null $page
* @param array $overrides associative array with fields of $row to override. This may be
* used e.g. to force the parent revision ID or page ID. Keys in the array are fields
* names from the archive table without the 'ar_' prefix, i.e. use 'parent_id' to
* override ar_parent_id.
*
* @return RevisionRecord
* @throws MWException
*/
public function newRevisionFromArchiveRowAndSlots(
stdClass $row,
$slots,
int $queryFlags = 0,
?PageIdentity $page = null,
array $overrides = []
) {
if ( !$page && isset( $overrides['title'] ) ) {
if ( !( $overrides['title'] instanceof PageIdentity ) ) {
throw new MWException( 'title field override must contain a PageIdentity object.' );
}
$page = $overrides['title'];
}
if ( !isset( $page ) ) {
if ( isset( $row->ar_namespace ) && isset( $row->ar_title ) ) {
$page = Title::makeTitle( $row->ar_namespace, $row->ar_title );
} else {
throw new InvalidArgumentException(
'A Title or ar_namespace and ar_title must be given'
);
}
}
foreach ( $overrides as $key => $value ) {
$field = "ar_$key";
$row->$field = $value;
}
try {
$user = $this->actorStore->newActorFromRowFields(
$row->ar_user ?? null,
$row->ar_user_text ?? null,
$row->ar_actor ?? null
);
} catch ( InvalidArgumentException $ex ) {
$this->logger->warning( 'Could not load user for archive revision {rev_id}', [
'ar_rev_id' => $row->ar_rev_id,
'ar_actor' => $row->ar_actor ?? 'null',
'ar_user_text' => $row->ar_user_text ?? 'null',
'ar_user' => $row->ar_user ?? 'null',
'exception' => $ex
] );
$user = $this->actorStore->getUnknownActor();
}
$db = $this->getDBConnectionRefForQueryFlags( $queryFlags );
// Legacy because $row may have come from self::selectFields()
$comment = $this->commentStore->getCommentLegacy( $db, 'ar_comment', $row, true );
if ( !( $slots instanceof RevisionSlots ) ) {
$slots = $this->newRevisionSlots( (int)$row->ar_rev_id, $row, $slots, $queryFlags, $page );
}
return new RevisionArchiveRecord( $page, $user, $comment, $row, $slots, $this->wikiId );
}
/**
* @see newFromRevisionRow()
*
* @param stdClass $row A database row generated from a query based on getQueryInfo()
* @param null|stdClass[]|RevisionSlots $slots
* - Database rows generated from a query based on getSlotsQueryInfo
* with the 'content' flag set. Or
* - RevisionSlots instance
* @param int $queryFlags
* @param PageIdentity|null $page
* @param bool $fromCache if true, the returned RevisionRecord will ensure that no stale
* data is returned from getters, by querying the database as needed
*
* @return RevisionRecord
* @throws MWException
* @throws RevisionAccessException
* @see RevisionFactory::newRevisionFromRow
*/
public function newRevisionFromRowAndSlots(
stdClass $row,
$slots,
int $queryFlags = 0,
?PageIdentity $page = null,
bool $fromCache = false
) {
if ( !$page ) {
if ( isset( $row->page_id )
&& isset( $row->page_namespace )
&& isset( $row->page_title )
) {
$page = new PageIdentityValue(
(int)$row->page_id,
(int)$row->page_namespace,
$row->page_title,
$this->wikiId
);
$page = $this->wrapPage( $page );
} else {
$pageId = (int)( $row->rev_page ?? 0 );
$revId = (int)( $row->rev_id ?? 0 );
$page = $this->getPage( $pageId, $revId, $queryFlags );
}
} else {
$page = $this->ensureRevisionRowMatchesPage( $row, $page );
}
if ( !$page ) {
// This should already have been caught about, but apparently
// it not always is, see T286877.
throw new RevisionAccessException(
"Failed to determine page associated with revision {$row->rev_id}"
);
}
try {
$user = $this->actorStore->newActorFromRowFields(
$row->rev_user ?? null,
$row->rev_user_text ?? null,
$row->rev_actor ?? null
);
} catch ( InvalidArgumentException $ex ) {
$this->logger->warning( 'Could not load user for revision {rev_id}', [
'rev_id' => $row->rev_id,
'rev_actor' => $row->rev_actor ?? 'null',
'rev_user_text' => $row->rev_user_text ?? 'null',
'rev_user' => $row->rev_user ?? 'null',
'exception' => $ex
] );
$user = $this->actorStore->getUnknownActor();
}
$db = $this->getDBConnectionRefForQueryFlags( $queryFlags );
// Legacy because $row may have come from self::selectFields()
$comment = $this->commentStore->getCommentLegacy( $db, 'rev_comment', $row, true );
if ( !( $slots instanceof RevisionSlots ) ) {
$slots = $this->newRevisionSlots( (int)$row->rev_id, $row, $slots, $queryFlags, $page );
}
// If this is a cached row, instantiate a cache-aware RevisionRecord to avoid stale data.
if ( $fromCache ) {
$rev = new RevisionStoreCacheRecord(
function ( $revId ) use ( $queryFlags ) {
$db = $this->getDBConnectionRefForQueryFlags( $queryFlags );
$row = $this->fetchRevisionRowFromConds(
$db,
[ 'rev_id' => intval( $revId ) ]
);
if ( !$row && !( $queryFlags & self::READ_LATEST ) ) {
// If we found no slots, try looking on the primary database (T259738)
$this->logger->info(
'RevisionStoreCacheRecord refresh callback falling back to READ_LATEST.',
[
'revid' => $revId,
'exception' => new RuntimeException(),
]
);
$dbw = $this->getDBConnectionRefForQueryFlags( self::READ_LATEST );
$row = $this->fetchRevisionRowFromConds(
$dbw,
[ 'rev_id' => intval( $revId ) ]
);
}
if ( !$row ) {
return [ null, null ];
}
return [
$row->rev_deleted,
$this->actorStore->newActorFromRowFields(
$row->rev_user ?? null,
$row->rev_user_text ?? null,
$row->rev_actor ?? null
)
];
},
$page, $user, $comment, $row, $slots, $this->wikiId
);
} else {
$rev = new RevisionStoreRecord(
$page, $user, $comment, $row, $slots, $this->wikiId );
}
return $rev;
}
/**
* Check that the given row matches the given Title object.
* When a mismatch is detected, this tries to re-load the title from primary DB,
* to avoid spurious errors during page moves.
*
* @param \stdClass $row
* @param PageIdentity $page
* @param array $context
*
* @return Pageidentity
*/
private function ensureRevisionRowMatchesPage( $row, PageIdentity $page, $context = [] ) {
$revId = (int)( $row->rev_id ?? 0 );
$revPageId = (int)( $row->rev_page ?? 0 ); // XXX: also check $row->page_id?
$expectedPageId = $page->getId( $this->wikiId );
// Avoid fatal error when the Title's ID changed, T246720
if ( $revPageId && $expectedPageId && $revPageId !== $expectedPageId ) {
// NOTE: PageStore::getPageByReference may use the page ID, which we don't want here.
$pageRec = $this->pageStore->getPageByName(
$page->getNamespace(),
$page->getDBkey(),
PageStore::READ_LATEST
);
$masterPageId = $pageRec->getId( $this->wikiId );
$masterLatest = $pageRec->getLatest( $this->wikiId );
if ( $revPageId === $masterPageId ) {
if ( $page instanceof Title ) {
// If we were using a Title object, keep using it, but update the page ID.
// This way, we don't unexpectedly mix Titles with immutable value objects.
$page->resetArticleID( $masterPageId );
} else {
$page = $pageRec;
}
$this->logger->info(
"Encountered stale Title object",
[
'page_id_stale' => $expectedPageId,
'page_id_reloaded' => $masterPageId,
'page_latest' => $masterLatest,
'rev_id' => $revId,
'exception' => new RuntimeException(),
] + $context
);
} else {
$expectedTitle = (string)$page;
if ( $page instanceof Title ) {
// If we started with a Title, keep using a Title.
$page = $this->titleFactory->newFromID( $revPageId );
} else {
$page = $pageRec;
}
// This could happen if a caller to e.g. getRevisionById supplied a Title that is
// plain wrong. In this case, we should ideally throw an IllegalArgumentException.
// However, it is more likely that we encountered a race condition during a page
// move (T268910, T279832) or database corruption (T263340). That situation
// should not be ignored, but we can allow the request to continue in a reasonable
// manner without breaking things for the user.
$this->logger->error(
"Encountered mismatching Title object (see T259022, T268910, T279832, T263340)",
[
'expected_page_id' => $masterPageId,
'expected_page_title' => $expectedTitle,
'rev_page' => $revPageId,
'rev_page_title' => (string)$page,
'page_latest' => $masterLatest,
'rev_id' => $revId,
'exception' => new RuntimeException(),
] + $context
);
}
}
// @phan-suppress-next-line PhanTypeMismatchReturnNullable getPageByName/newFromID should not return null
return $page;
}
/**
* Construct a RevisionRecord instance for each row in $rows,
* and return them as an associative array indexed by revision ID.
* Use getQueryInfo() or getArchiveQueryInfo() to construct the
* query that produces the rows.
*
* @param IResultWrapper|\stdClass[] $rows the rows to construct revision records from
* @param array $options Supports the following options:
* 'slots' - whether metadata about revision slots should be
* loaded immediately. Supports falsy or truthy value as well
* as an explicit list of slot role names. The main slot will
* always be loaded.
* 'content' - whether the actual content of the slots should be
* preloaded.
* 'archive' - whether the rows where generated using getArchiveQueryInfo(),
* rather than getQueryInfo.
* @param int $queryFlags
* @param PageIdentity|null $page The page to which all the revision rows belong, if there
* is such a page and the caller has it handy, so we don't have to look it up again.
* If this parameter is given and any of the rows has a rev_page_id that is different
* from Article Id associated with the page, an InvalidArgumentException is thrown.
*
* @return StatusValue a status with a RevisionRecord[] of successfully fetched revisions
* and an array of errors for the revisions failed to fetch.
*/
public function newRevisionsFromBatch(
$rows,
array $options = [],
$queryFlags = 0,
PageIdentity $page = null
) {
$result = new StatusValue();
$archiveMode = $options['archive'] ?? false;
if ( $archiveMode ) {
$revIdField = 'ar_rev_id';
} else {
$revIdField = 'rev_id';
}
$rowsByRevId = [];
$pageIdsToFetchTitles = [];
$titlesByPageKey = [];
foreach ( $rows as $row ) {
if ( isset( $rowsByRevId[$row->$revIdField] ) ) {
$result->warning(
'internalerror_info',
"Duplicate rows in newRevisionsFromBatch, $revIdField {$row->$revIdField}"
);
}
// Attach a page key to the row, so we can find and reuse Title objects easily.
$row->_page_key =
$archiveMode ? $row->ar_namespace . ':' . $row->ar_title : $row->rev_page;
if ( $page ) {
if ( !$archiveMode && $row->rev_page != $this->getArticleId( $page ) ) {
throw new InvalidArgumentException(
"Revision {$row->$revIdField} doesn't belong to page "
. $this->getArticleId( $page )
);
}
if ( $archiveMode
&& ( $row->ar_namespace != $page->getNamespace()
|| $row->ar_title !== $page->getDBkey() )
) {
throw new InvalidArgumentException(
"Revision {$row->$revIdField} doesn't belong to page "
. $page
);
}
} elseif ( !isset( $titlesByPageKey[ $row->_page_key ] ) ) {
if ( isset( $row->page_namespace ) && isset( $row->page_title )
// This should always be true, but just in case we don't have a page_id
// set or it doesn't match rev_page, let's fetch the title again.
&& isset( $row->page_id ) && isset( $row->rev_page )
&& $row->rev_page === $row->page_id
) {
$titlesByPageKey[ $row->_page_key ] = Title::newFromRow( $row );
} elseif ( $archiveMode ) {
// Can't look up deleted pages by ID, but we have namespace and title
$titlesByPageKey[ $row->_page_key ] =
Title::makeTitle( $row->ar_namespace, $row->ar_title );
} else {
$pageIdsToFetchTitles[] = $row->rev_page;
}
}
$rowsByRevId[$row->$revIdField] = $row;
}
if ( empty( $rowsByRevId ) ) {
$result->setResult( true, [] );
return $result;
}
// If the page is not supplied, batch-fetch Title objects.
if ( $page ) {
// same logic as for $row->_page_key above
$pageKey = $archiveMode
? $page->getNamespace() . ':' . $page->getDBkey()
: $this->getArticleId( $page );
$titlesByPageKey[$pageKey] = $page;
} elseif ( !empty( $pageIdsToFetchTitles ) ) {
// Note: when we fetch titles by ID, the page key is also the ID.
// We should never get here if $archiveMode is true.
Assert::invariant( !$archiveMode, 'Titles are not loaded by ID in archive mode.' );
$pageIdsToFetchTitles = array_unique( $pageIdsToFetchTitles );
$pageRecords = $this->pageStore
->newSelectQueryBuilder()
->wherePageIds( $pageIdsToFetchTitles )
->caller( __METHOD__ )
->fetchPageRecordArray();
// Cannot array_merge because it re-indexes entries
$titlesByPageKey = $pageRecords + $titlesByPageKey;
}
// which method to use for creating RevisionRecords
$newRevisionRecord = [
$this,
$archiveMode ? 'newRevisionFromArchiveRowAndSlots' : 'newRevisionFromRowAndSlots'
];
if ( !isset( $options['slots'] ) ) {
$result->setResult(
true,
array_map(
static function ( $row )
use ( $queryFlags, $titlesByPageKey, $result, $newRevisionRecord, $revIdField ) {
try {
if ( !isset( $titlesByPageKey[$row->_page_key] ) ) {
$result->warning(
'internalerror_info',
"Couldn't find title for rev {$row->$revIdField} "
. "(page key {$row->_page_key})"
);
return null;
}
return $newRevisionRecord( $row, null, $queryFlags,
$titlesByPageKey[ $row->_page_key ] );
} catch ( MWException $e ) {
$result->warning( 'internalerror_info', $e->getMessage() );
return null;
}
},
$rowsByRevId
)
);
return $result;
}
$slotRowOptions = [
'slots' => $options['slots'] ?? true,
'blobs' => $options['content'] ?? false,
];
if ( is_array( $slotRowOptions['slots'] )
&& !in_array( SlotRecord::MAIN, $slotRowOptions['slots'] )
) {
// Make sure the main slot is always loaded, RevisionRecord requires this.
$slotRowOptions['slots'][] = SlotRecord::MAIN;
}
$slotRowsStatus = $this->getSlotRowsForBatch( $rowsByRevId, $slotRowOptions, $queryFlags );
$result->merge( $slotRowsStatus );
$slotRowsByRevId = $slotRowsStatus->getValue();
$result->setResult(
true,
array_map(
function ( $row )
use ( $slotRowsByRevId, $queryFlags, $titlesByPageKey, $result,
$revIdField, $newRevisionRecord
) {
if ( !isset( $slotRowsByRevId[$row->$revIdField] ) ) {
$result->warning(
'internalerror_info',
"Couldn't find slots for rev {$row->$revIdField}"
);
return null;
}
if ( !isset( $titlesByPageKey[$row->_page_key] ) ) {
$result->warning(
'internalerror_info',
"Couldn't find title for rev {$row->$revIdField} "
. "(page key {$row->_page_key})"
);
return null;
}
try {
return $newRevisionRecord(
$row,
new RevisionSlots(
$this->constructSlotRecords(
$row->$revIdField,
$slotRowsByRevId[$row->$revIdField],
$queryFlags,
$titlesByPageKey[$row->_page_key]
)
),
$queryFlags,
$titlesByPageKey[$row->_page_key]
);
} catch ( MWException $e ) {
$result->warning( 'internalerror_info', $e->getMessage() );
return null;
}
},
$rowsByRevId
)
);
return $result;
}
/**
* Gets the slot rows associated with a batch of revisions.
* The serialized content of each slot can be included by setting the 'blobs' option.
* Callers are responsible for unserializing and interpreting the content blobs
* based on the model_name and role_name fields.
*
* @param Traversable|array $rowsOrIds list of revision ids, or revision or archive rows
* from a db query.
* @param array $options Supports the following options:
* 'slots' - a list of slot role names to fetch. If omitted or true or null,
* all slots are fetched
* 'blobs' - whether the serialized content of each slot should be loaded.
* If true, the serialized content will be present in the slot row
* in the blob_data field.
* @param int $queryFlags
*
* @return StatusValue a status containing, if isOK() returns true, a two-level nested
* associative array, mapping from revision ID to an associative array that maps from
* role name to a database row object. The database row object will contain the fields
* defined by getSlotQueryInfo() with the 'content' flag set, plus the blob_data field
* if the 'blobs' is set in $options. The model_name and role_name fields will also be
* set.
*/
private function getSlotRowsForBatch(
$rowsOrIds,
array $options = [],
$queryFlags = 0
) {
$result = new StatusValue();
$revIds = [];
foreach ( $rowsOrIds as $row ) {
if ( is_object( $row ) ) {
$revIds[] = isset( $row->ar_rev_id ) ? (int)$row->ar_rev_id : (int)$row->rev_id;
} else {
$revIds[] = (int)$row;
}
}
// Nothing to do.
// Note that $rowsOrIds may not be "empty" even if $revIds is, e.g. if it's a ResultWrapper.
if ( empty( $revIds ) ) {
$result->setResult( true, [] );
return $result;
}
// We need to set the `content` flag to join in content meta-data
$slotQueryInfo = $this->getSlotsQueryInfo( [ 'content' ] );
$revIdField = $slotQueryInfo['keys']['rev_id'];
$slotQueryConds = [ $revIdField => $revIds ];
if ( isset( $options['slots'] ) && is_array( $options['slots'] ) ) {
if ( empty( $options['slots'] ) ) {
// Degenerate case: return no slots for each revision.
$result->setResult( true, array_fill_keys( $revIds, [] ) );
return $result;
}
$roleIdField = $slotQueryInfo['keys']['role_id'];
$slotQueryConds[$roleIdField] = array_map(
[ $this->slotRoleStore, 'getId' ],
$options['slots']
);
}
$db = $this->getDBConnectionRefForQueryFlags( $queryFlags );
$slotRows = $db->select(
$slotQueryInfo['tables'],
$slotQueryInfo['fields'],
$slotQueryConds,
__METHOD__,
[],
$slotQueryInfo['joins']
);
$slotContents = null;
if ( $options['blobs'] ?? false ) {
$blobAddresses = [];
foreach ( $slotRows as $slotRow ) {
$blobAddresses[] = $slotRow->content_address;
}
$slotContentFetchStatus = $this->blobStore
->getBlobBatch( $blobAddresses, $queryFlags );
foreach ( $slotContentFetchStatus->getErrors() as $error ) {
$result->warning( $error['message'], ...$error['params'] );
}
$slotContents = $slotContentFetchStatus->getValue();
}
$slotRowsByRevId = [];
foreach ( $slotRows as $slotRow ) {
if ( $slotContents === null ) {
// nothing to do
} elseif ( isset( $slotContents[$slotRow->content_address] ) ) {
$slotRow->blob_data = $slotContents[$slotRow->content_address];
} else {
$result->warning(
'internalerror_info',
"Couldn't find blob data for rev {$slotRow->slot_revision_id}"
);
$slotRow->blob_data = null;
}
// conditional needed for SCHEMA_COMPAT_READ_OLD
if ( !isset( $slotRow->role_name ) && isset( $slotRow->slot_role_id ) ) {
$slotRow->role_name = $this->slotRoleStore->getName( (int)$slotRow->slot_role_id );
}
// conditional needed for SCHEMA_COMPAT_READ_OLD
if ( !isset( $slotRow->model_name ) && isset( $slotRow->content_model ) ) {
$slotRow->model_name = $this->contentModelStore->getName( (int)$slotRow->content_model );
}
$slotRowsByRevId[$slotRow->slot_revision_id][$slotRow->role_name] = $slotRow;
}
$result->setResult( true, $slotRowsByRevId );
return $result;
}
/**
* Gets raw (serialized) content blobs for the given set of revisions.
* Callers are responsible for unserializing and interpreting the content blobs
* based on the model_name field and the slot role.
*
* This method is intended for bulk operations in maintenance scripts.
* It may be chosen over newRevisionsFromBatch by code that are only interested
* in raw content, as opposed to meta data. Code that needs to access meta data of revisions,
* slots, or content objects should use newRevisionsFromBatch() instead.
*
* @param Traversable|array $rowsOrIds list of revision ids, or revision rows from a db query.
* @param array|null $slots the role names for which to get slots.
* @param int $queryFlags
*
* @return StatusValue a status containing, if isOK() returns true, a two-level nested
* associative array, mapping from revision ID to an associative array that maps from
* role name to an anonymous object containing two fields:
* - model_name: the name of the content's model
* - blob_data: serialized content data
*/
public function getContentBlobsForBatch(
$rowsOrIds,
$slots = null,
$queryFlags = 0
) {
$result = $this->getSlotRowsForBatch(
$rowsOrIds,
[ 'slots' => $slots, 'blobs' => true ],
$queryFlags
);
if ( $result->isOK() ) {
// strip out all internal meta data that we don't want to expose
foreach ( $result->value as $revId => $rowsByRole ) {
foreach ( $rowsByRole as $role => $slotRow ) {
if ( is_array( $slots ) && !in_array( $role, $slots ) ) {
// In SCHEMA_COMPAT_READ_OLD mode we may get the main slot even
// if we didn't ask for it.
unset( $result->value[$revId][$role] );
continue;
}
$result->value[$revId][$role] = (object)[
'blob_data' => $slotRow->blob_data,
'model_name' => $slotRow->model_name,
];
}
}
}
return $result;
}
/**
* Given a set of conditions, fetch a revision
*
* This method should be used if we are pretty sure the revision exists.
* Unless $flags has READ_LATEST set, this method will first try to find the revision
* on a replica before hitting the primary database.
*
* MCR migration note: this corresponded to Revision::newFromConds
*
* @param array $conditions
* @param int $flags (optional)
* @param PageIdentity|null $page (optional)
* @param array $options (optional) additional query options
*
* @return RevisionRecord|null
*/
private function newRevisionFromConds(
array $conditions,
int $flags = IDBAccessObject::READ_NORMAL,
PageIdentity $page = null,
array $options = []
) {
$db = $this->getDBConnectionRefForQueryFlags( $flags );
$rev = $this->loadRevisionFromConds( $db, $conditions, $flags, $page, $options );
$lb = $this->getDBLoadBalancer();
// Make sure new pending/committed revision are visible later on
// within web requests to certain avoid bugs like T93866 and T94407.
if ( !$rev
&& !( $flags & self::READ_LATEST )
&& $lb->hasStreamingReplicaServers()
&& $lb->hasOrMadeRecentPrimaryChanges()
) {
$flags = self::READ_LATEST;
$dbw = $this->getDBConnectionRef( DB_PRIMARY );
$rev = $this->loadRevisionFromConds( $dbw, $conditions, $flags, $page, $options );
}
return $rev;
}
/**
* Given a set of conditions, fetch a revision from
* the given database connection.
*
* MCR migration note: this corresponded to Revision::loadFromConds
*
* @param IDatabase $db
* @param array $conditions
* @param int $flags (optional)
* @param PageIdentity|null $page (optional) additional query options
* @param array $options (optional) additional query options
*
* @return RevisionRecord|null
*/
private function loadRevisionFromConds(
IDatabase $db,
array $conditions,
int $flags = IDBAccessObject::READ_NORMAL,
PageIdentity $page = null,
array $options = []
) {
$row = $this->fetchRevisionRowFromConds( $db, $conditions, $flags, $options );
if ( $row ) {
return $this->newRevisionFromRow( $row, $flags, $page );
}
return null;
}
/**
* Throws an exception if the given database connection does not belong to the wiki this
* RevisionStore is bound to.
*
* @param IDatabase $db
* @throws MWException
*/
private function checkDatabaseDomain( IDatabase $db ) {
$dbDomain = $db->getDomainID();
$storeDomain = $this->loadBalancer->resolveDomainID( $this->wikiId );
if ( $dbDomain === $storeDomain ) {
return;
}
throw new MWException( "DB connection domain '$dbDomain' does not match '$storeDomain'" );
}
/**
* Given a set of conditions, return a row with the
* fields necessary to build RevisionRecord objects.
*
* MCR migration note: this corresponded to Revision::fetchFromConds
*
* @param IDatabase $db
* @param array $conditions
* @param int $flags (optional)
* @param array $options (optional) additional query options
*
* @return \stdClass|false data row as a raw object
*/
private function fetchRevisionRowFromConds(
IDatabase $db,
array $conditions,
int $flags = IDBAccessObject::READ_NORMAL,
array $options = []
) {
$this->checkDatabaseDomain( $db );
$revQuery = $this->getQueryInfo( [ 'page', 'user' ] );
if ( ( $flags & self::READ_LOCKING ) == self::READ_LOCKING ) {
$options[] = 'FOR UPDATE';
}
return $db->selectRow(
$revQuery['tables'],
$revQuery['fields'],
$conditions,
__METHOD__,
$options,
$revQuery['joins']
);
}
/**
* Return the tables, fields, and join conditions to be selected to create
* a new RevisionStoreRecord object.
*
* MCR migration note: this replaced Revision::getQueryInfo
*
* If the format of fields returned changes in any way then the cache key provided by
* self::getRevisionRowCacheKey should be updated.
*
* @since 1.31
*
* @param array $options Any combination of the following strings
* - 'page': Join with the page table, and select fields to identify the page
* - 'user': Join with the user table, and select the user name
*
* @return array[] With three keys:
* - tables: (string[]) to include in the `$table` to `IDatabase->select()` or `SelectQueryBuilder::tables`
* - fields: (string[]) to include in the `$vars` to `IDatabase->select()` or `SelectQueryBuilder::fields`
* - joins: (array) to include in the `$join_conds` to `IDatabase->select()` or `SelectQueryBuilder::joinConds`
* @phan-return array{tables:string[],fields:string[],joins:array}
*/
public function getQueryInfo( $options = [] ) {
$ret = [
'tables' => [],
'fields' => [],
'joins' => [],
];
$ret['tables'][] = 'revision';
$ret['fields'] = array_merge( $ret['fields'], [
'rev_id',
'rev_page',
'rev_timestamp',
'rev_minor_edit',
'rev_deleted',
'rev_len',
'rev_parent_id',
'rev_sha1',
] );
$commentQuery = $this->commentStore->getJoin( 'rev_comment' );
$ret['tables'] = array_merge( $ret['tables'], $commentQuery['tables'] );
$ret['fields'] = array_merge( $ret['fields'], $commentQuery['fields'] );
$ret['joins'] = array_merge( $ret['joins'], $commentQuery['joins'] );
$actorQuery = $this->actorMigration->getJoin( 'rev_user' );
$ret['tables'] = array_merge( $ret['tables'], $actorQuery['tables'] );
$ret['fields'] = array_merge( $ret['fields'], $actorQuery['fields'] );
$ret['joins'] = array_merge( $ret['joins'], $actorQuery['joins'] );
if ( in_array( 'page', $options, true ) ) {
$ret['tables'][] = 'page';
$ret['fields'] = array_merge( $ret['fields'], [
'page_namespace',
'page_title',
'page_id',
'page_latest',
'page_is_redirect',
'page_len',
] );
$ret['joins']['page'] = [ 'JOIN', [ 'page_id = rev_page' ] ];
}
if ( in_array( 'user', $options, true ) ) {
$ret['tables'][] = 'user';
$ret['fields'] = array_merge( $ret['fields'], [
'user_name',
] );
$u = $actorQuery['fields']['rev_user'];
$ret['joins']['user'] = [ 'LEFT JOIN', [ "$u != 0", "user_id = $u" ] ];
}
if ( in_array( 'text', $options, true ) ) {
throw new InvalidArgumentException(
'The `text` option is no longer supported in MediaWiki 1.35 and later.'
);
}
return $ret;
}
/**
* Return the tables, fields, and join conditions to be selected to create
* a new SlotRecord.
*
* @since 1.32
*
* @param array $options Any combination of the following strings
* - 'content': Join with the content table, and select content meta-data fields
* - 'model': Join with the content_models table, and select the model_name field.
* Only applicable if 'content' is also set.
* - 'role': Join with the slot_roles table, and select the role_name field
*
* @return array[] With three keys:
* - tables: (string[]) to include in the `$table` to `IDatabase->select()` or `SelectQueryBuilder::tables`
* - fields: (string[]) to include in the `$vars` to `IDatabase->select()` or `SelectQueryBuilder::fields`
* - joins: (array) to include in the `$join_conds` to `IDatabase->select()` or `SelectQueryBuilder::joinConds`
* - keys: (associative array) to look up fields to match against.
* In particular, the field that can be used to find slots by rev_id
* can be found in ['keys']['rev_id'].
* @phan-return array{tables:string[],fields:string[],joins:array,keys:array}
*/
public function getSlotsQueryInfo( $options = [] ) {
$ret = [
'tables' => [],
'fields' => [],
'joins' => [],
'keys' => [],
];
$ret['keys']['rev_id'] = 'slot_revision_id';
$ret['keys']['role_id'] = 'slot_role_id';
$ret['tables'][] = 'slots';
$ret['fields'] = array_merge( $ret['fields'], [
'slot_revision_id',
'slot_content_id',
'slot_origin',
'slot_role_id',
] );
if ( in_array( 'role', $options, true ) ) {
// Use left join to attach role name, so we still find the revision row even
// if the role name is missing. This triggers a more obvious failure mode.
$ret['tables'][] = 'slot_roles';
$ret['joins']['slot_roles'] = [ 'LEFT JOIN', [ 'slot_role_id = role_id' ] ];
$ret['fields'][] = 'role_name';
}
if ( in_array( 'content', $options, true ) ) {
$ret['keys']['model_id'] = 'content_model';
$ret['tables'][] = 'content';
$ret['fields'] = array_merge( $ret['fields'], [
'content_size',
'content_sha1',
'content_address',
'content_model',
] );
$ret['joins']['content'] = [ 'JOIN', [ 'slot_content_id = content_id' ] ];
if ( in_array( 'model', $options, true ) ) {
// Use left join to attach model name, so we still find the revision row even
// if the model name is missing. This triggers a more obvious failure mode.
$ret['tables'][] = 'content_models';
$ret['joins']['content_models'] = [ 'LEFT JOIN', [ 'content_model = model_id' ] ];
$ret['fields'][] = 'model_name';
}
}
return $ret;
}
/**
* Determine whether the parameter is a row containing all the fields
* that RevisionStore needs to create a RevisionRecord from the row.
*
* @param mixed $row
* @param string $table 'archive' or empty
* @return bool
*/
public function isRevisionRow( $row, string $table = '' ) {
if ( !( $row instanceof stdClass ) ) {
return false;
}
$queryInfo = $table === 'archive' ? $this->getArchiveQueryInfo() : $this->getQueryInfo();
foreach ( $queryInfo['fields'] as $alias => $field ) {
$name = is_numeric( $alias ) ? $field : $alias;
if ( !property_exists( $row, $name ) ) {
return false;
}
}
return true;
}
/**
* Return the tables, fields, and join conditions to be selected to create
* a new RevisionArchiveRecord object.
*
* Since 1.34, ar_user and ar_user_text have not been present in the
* database, but they continue to be available in query results as
* aliases.
*
* MCR migration note: this replaced Revision::getArchiveQueryInfo
*
* @since 1.31
*
* @return array[] With three keys:
* - tables: (string[]) to include in the `$table` to `IDatabase->select()` or `SelectQueryBuilder::tables`
* - fields: (string[]) to include in the `$vars` to `IDatabase->select()` or `SelectQueryBuilder::fields`
* - joins: (array) to include in the `$join_conds` to `IDatabase->select()` or `SelectQueryBuilder::joinConds`
* @phan-return array{tables:string[],fields:string[],joins:array}
*/
public function getArchiveQueryInfo() {
$commentQuery = $this->commentStore->getJoin( 'ar_comment' );
$ret = [
'tables' => [
'archive',
'archive_actor' => 'actor'
] + $commentQuery['tables'],
'fields' => [
'ar_id',
'ar_page_id',
'ar_namespace',
'ar_title',
'ar_rev_id',
'ar_timestamp',
'ar_minor_edit',
'ar_deleted',
'ar_len',
'ar_parent_id',
'ar_sha1',
'ar_actor',
'ar_user' => 'archive_actor.actor_user',
'ar_user_text' => 'archive_actor.actor_name',
] + $commentQuery['fields'],
'joins' => [
'archive_actor' => [ 'JOIN', 'actor_id=ar_actor' ]
] + $commentQuery['joins'],
];
return $ret;
}
/**
* Do a batched query for the sizes of a set of revisions.
*
* MCR migration note: this replaced Revision::getParentLengths
*
* @param int[] $revIds
* @return int[] associative array mapping revision IDs from $revIds to the nominal size
* of the corresponding revision.
*/
public function getRevisionSizes( array $revIds ) {
$dbr = $this->getDBConnectionRef( DB_REPLICA );
$revLens = [];
if ( !$revIds ) {
return $revLens; // empty
}
$res = $dbr->select(
'revision',
[ 'rev_id', 'rev_len' ],
[ 'rev_id' => $revIds ],
__METHOD__
);
foreach ( $res as $row ) {
$revLens[$row->rev_id] = intval( $row->rev_len );
}
return $revLens;
}
/**
* Implementation of getPreviousRevision and getNextRevision.
*
* @param RevisionRecord $rev
* @param int $flags
* @param string $dir 'next' or 'prev'
* @return RevisionRecord|null
*/
private function getRelativeRevision( RevisionRecord $rev, $flags, $dir ) {
$op = $dir === 'next' ? '>' : '<';
$sort = $dir === 'next' ? 'ASC' : 'DESC';
$revisionIdValue = $rev->getId( $this->wikiId );
if ( !$revisionIdValue || !$rev->getPageId( $this->wikiId ) ) {
// revision is unsaved or otherwise incomplete
return null;
}
if ( $rev instanceof RevisionArchiveRecord ) {
// revision is deleted, so it's not part of the page history
return null;
}
list( $dbType, ) = DBAccessObjectUtils::getDBOptions( $flags );
$db = $this->getDBConnectionRef( $dbType, [ 'contributions' ] );
$ts = $rev->getTimestamp();
if ( $ts === null ) {
$ts = $this->getTimestampFromId( $revisionIdValue, $flags );
}
if ( $ts === false ) {
// XXX Should this be moved into getTimestampFromId?
$ts = $db->selectField( 'archive', 'ar_timestamp',
[ 'ar_rev_id' => $revisionIdValue ], __METHOD__ );
if ( $ts === false ) {
// XXX Is this reachable? How can we have a page id but no timestamp?
return null;
}
}
$dbts = $db->addQuotes( $db->timestamp( $ts ) );
$revId = $db->selectField( 'revision', 'rev_id',
[
'rev_page' => $rev->getPageId( $this->wikiId ),
"rev_timestamp $op $dbts OR (rev_timestamp = $dbts AND rev_id $op $revisionIdValue )"
],
__METHOD__,
[
'ORDER BY' => [ "rev_timestamp $sort", "rev_id $sort" ],
'IGNORE INDEX' => 'rev_timestamp', // Probably needed for T159319
]
);
if ( $revId === false ) {
return null;
}
return $this->getRevisionById( intval( $revId ), $flags );
}
/**
* Get the revision before $rev in the page's history, if any.
* Will return null for the first revision but also for deleted or unsaved revisions.
*
* MCR migration note: this replaced Revision::getPrevious
*
* @see PageArchive::getPreviousRevisionRecord
*
* @param RevisionRecord $rev
* @param int $flags (optional) $flags include:
* IDBAccessObject::READ_LATEST: Select the data from the primary DB
*
* @return RevisionRecord|null
*/
public function getPreviousRevision( RevisionRecord $rev, $flags = self::READ_NORMAL ) {
return $this->getRelativeRevision( $rev, $flags, 'prev' );
}
/**
* Get the revision after $rev in the page's history, if any.
* Will return null for the latest revision but also for deleted or unsaved revisions.
*
* MCR migration note: this replaced Revision::getNext
*
* @param RevisionRecord $rev
* @param int $flags (optional) $flags include:
* IDBAccessObject::READ_LATEST: Select the data from the primary DB
* @return RevisionRecord|null
*/
public function getNextRevision( RevisionRecord $rev, $flags = self::READ_NORMAL ) {
return $this->getRelativeRevision( $rev, $flags, 'next' );
}
/**
* Get previous revision Id for this page_id
* This is used to populate rev_parent_id on save
*
* MCR migration note: this corresponded to Revision::getPreviousRevisionId
*
* @param IDatabase $db
* @param RevisionRecord $rev
*
* @return int
*/
private function getPreviousRevisionId( IDatabase $db, RevisionRecord $rev ) {
$this->checkDatabaseDomain( $db );
if ( $rev->getPageId( $this->wikiId ) === null ) {
return 0;
}
# Use page_latest if ID is not given
if ( !$rev->getId( $this->wikiId ) ) {
$prevId = $db->selectField(
'page', 'page_latest',
[ 'page_id' => $rev->getPageId( $this->wikiId ) ],
__METHOD__
);
} else {
$prevId = $db->selectField(
'revision', 'rev_id',
[ 'rev_page' => $rev->getPageId( $this->wikiId ), 'rev_id < ' . $rev->getId( $this->wikiId ) ],
__METHOD__,
[ 'ORDER BY' => 'rev_id DESC' ]
);
}
return intval( $prevId );
}
/**
* Get rev_timestamp from rev_id, without loading the rest of the row.
*
* Historically, there was an extra Title parameter that was passed before $id. This is no
* longer needed and is deprecated in 1.34.
*
* MCR migration note: this replaced Revision::getTimestampFromId
*
* @param int $id
* @param int $flags
* @return string|bool False if not found
*/
public function getTimestampFromId( $id, $flags = 0 ) {
if ( $id instanceof Title ) {
// Old deprecated calling convention supported for backwards compatibility
$id = $flags;
$flags = func_num_args() > 2 ? func_get_arg( 2 ) : 0;
}
// T270149: Bail out if we know the query will definitely return false. Some callers are
// passing RevisionRecord::getId() call directly as $id which can possibly return null.
// Null $id or $id <= 0 will lead to useless query with WHERE clause of 'rev_id IS NULL'
// or 'rev_id = 0', but 'rev_id' is always greater than zero and cannot be null.
// @todo typehint $id and remove the null check
if ( $id === null || $id <= 0 ) {
return false;
}
$db = $this->getDBConnectionRefForQueryFlags( $flags );
$timestamp =
$db->selectField( 'revision', 'rev_timestamp', [ 'rev_id' => $id ], __METHOD__ );
return ( $timestamp !== false ) ? MWTimestamp::convert( TS_MW, $timestamp ) : false;
}
/**
* Get count of revisions per page...not very efficient
*
* MCR migration note: this replaced Revision::countByPageId
*
* @param IDatabase $db
* @param int $id Page id
* @return int
*/
public function countRevisionsByPageId( IDatabase $db, $id ) {
$this->checkDatabaseDomain( $db );
$row = $db->selectRow( 'revision',
[ 'revCount' => 'COUNT(*)' ],
[ 'rev_page' => $id ],
__METHOD__
);
if ( $row ) {
return intval( $row->revCount );
}
return 0;
}
/**
* Get count of revisions per page...not very efficient
*
* MCR migration note: this replaced Revision::countByTitle
*
* @param IDatabase $db
* @param PageIdentity $page
* @return int
*/
public function countRevisionsByTitle( IDatabase $db, PageIdentity $page ) {
$id = $this->getArticleId( $page );
if ( $id ) {
return $this->countRevisionsByPageId( $db, $id );
}
return 0;
}
/**
* Check if no edits were made by other users since
* the time a user started editing the page. Limit to
* 50 revisions for the sake of performance.
*
* MCR migration note: this replaced Revision::userWasLastToEdit
*
* @deprecated since 1.31; Can possibly be removed, since the self-conflict suppression
* logic in EditPage that uses this seems conceptually dubious. Revision::userWasLastToEdit
* had been deprecated since 1.24 (the Revision class was removed entirely in 1.37).
*
* @param IDatabase $db The Database to perform the check on.
* @param int $pageId The ID of the page in question
* @param int $userId The ID of the user in question
* @param string $since Look at edits since this time
*
* @return bool True if the given user was the only one to edit since the given timestamp
*/
public function userWasLastToEdit( IDatabase $db, $pageId, $userId, $since ) {
$this->checkDatabaseDomain( $db );
if ( !$userId ) {
return false;
}
$revQuery = $this->getQueryInfo();
$res = $db->select(
$revQuery['tables'],
[
'rev_user' => $revQuery['fields']['rev_user'],
],
[
'rev_page' => $pageId,
'rev_timestamp > ' . $db->addQuotes( $db->timestamp( $since ) )
],
__METHOD__,
[ 'ORDER BY' => 'rev_timestamp ASC', 'LIMIT' => 50 ],
$revQuery['joins']
);
foreach ( $res as $row ) {
if ( $row->rev_user != $userId ) {
return false;
}
}
return true;
}
/**
* Load a revision based on a known page ID and current revision ID from the DB
*
* This method allows for the use of caching, though accessing anything that normally
* requires permission checks (aside from the text) will trigger a small DB lookup.
*
* MCR migration note: this replaced Revision::newKnownCurrent
*
* @param PageIdentity $page the associated page
* @param int $revId current revision of this page. Defaults to $title->getLatestRevID().
*
* @return RevisionRecord|bool Returns false if missing
*/
public function getKnownCurrentRevision( PageIdentity $page, $revId = 0 ) {
$db = $this->getDBConnectionRef( DB_REPLICA );
$revIdPassed = $revId;
$pageId = $this->getArticleId( $page );
if ( !$pageId ) {
return false;
}
if ( !$revId ) {
if ( $page instanceof Title ) {
$revId = $page->getLatestRevID();
} else {
$pageRecord = $this->pageStore->getPageByReference( $page );
if ( $pageRecord ) {
$revId = $pageRecord->getLatest( $this->getWikiId() );
}
}
}
if ( !$revId ) {
$this->logger->warning(
'No latest revision known for page {page} even though it exists with page ID {page_id}', [
'page' => $page->__toString(),
'page_id' => $pageId,
'wiki_id' => $this->getWikiId() ?: 'local',
] );
return false;
}
// Load the row from cache if possible. If not possible, populate the cache.
// As a minor optimization, remember if this was a cache hit or miss.
// We can sometimes avoid a database query later if this is a cache miss.
$fromCache = true;
$row = $this->cache->getWithSetCallback(
// Page/rev IDs passed in from DB to reflect history merges
$this->getRevisionRowCacheKey( $db, $pageId, $revId ),
WANObjectCache::TTL_WEEK,
function ( $curValue, &$ttl, array &$setOpts ) use (
$db, $revId, &$fromCache
) {
$setOpts += Database::getCacheSetOptions( $db );
$row = $this->fetchRevisionRowFromConds( $db, [ 'rev_id' => intval( $revId ) ] );
if ( $row ) {
$fromCache = false;
}
return $row; // don't cache negatives
}
);
// Reflect revision deletion and user renames.
if ( $row ) {
$title = $this->ensureRevisionRowMatchesPage( $row, $page, [
'from_cache_flag' => $fromCache,
'page_id_initial' => $pageId,
'rev_id_used' => $revId,
'rev_id_requested' => $revIdPassed,
] );
return $this->newRevisionFromRow( $row, 0, $title, $fromCache );
} else {
return false;
}
}
/**
* Get the first revision of a given page.
*
* @since 1.35
* @param LinkTarget|PageIdentity $page Calling with LinkTarget is deprecated since 1.36
* @param int $flags
* @return RevisionRecord|null
*/
public function getFirstRevision(
$page,
int $flags = IDBAccessObject::READ_NORMAL
): ?RevisionRecord {
if ( $page instanceof LinkTarget ) {
// Only resolve LinkTarget to a Title when operating in the context of the local wiki (T248756)
$page = $this->wikiId === WikiAwareEntity::LOCAL ? Title::castFromLinkTarget( $page ) : null;
}
return $this->newRevisionFromConds(
[
'page_namespace' => $page->getNamespace(),
'page_title' => $page->getDBkey()
],
$flags,
$page,
[
'ORDER BY' => [ 'rev_timestamp ASC', 'rev_id ASC' ],
'IGNORE INDEX' => [ 'revision' => 'rev_timestamp' ], // See T159319
]
);
}
/**
* Get a cache key for use with a row as selected with getQueryInfo( [ 'page', 'user' ] )
* Caching rows without 'page' or 'user' could lead to issues.
* If the format of the rows returned by the query provided by getQueryInfo changes the
* cache key should be updated to avoid conflicts.
*
* @param IDatabase $db
* @param int $pageId
* @param int $revId
* @return string
*/
private function getRevisionRowCacheKey( IDatabase $db, $pageId, $revId ) {
return $this->cache->makeGlobalKey(
self::ROW_CACHE_KEY,
$db->getDomainID(),
$pageId,
$revId
);
}
/**
* Asserts that if revision is provided, it's saved and belongs to the page with provided pageId.
* @param string $paramName
* @param int $pageId
* @param RevisionRecord|null $rev
* @throws InvalidArgumentException
*/
private function assertRevisionParameter( $paramName, $pageId, RevisionRecord $rev = null ) {
if ( $rev ) {
if ( $rev->getId( $this->wikiId ) === null ) {
throw new InvalidArgumentException( "Unsaved {$paramName} revision passed" );
}
if ( $rev->getPageId( $this->wikiId ) !== $pageId ) {
throw new InvalidArgumentException(
"Revision {$rev->getId( $this->wikiId )} doesn't belong to page {$pageId}"
);
}
}
}
/**
* Converts revision limits to query conditions.
*
* @param IDatabase $dbr
* @param RevisionRecord|null $old Old revision.
* If null is provided, count starting from the first revision (inclusive).
* @param RevisionRecord|null $new New revision.
* If null is provided, count until the last revision (inclusive).
* @param string|array $options Single option, or an array of options:
* RevisionStore::INCLUDE_OLD Include $old in the range; $new is excluded.
* RevisionStore::INCLUDE_NEW Include $new in the range; $old is excluded.
* RevisionStore::INCLUDE_BOTH Include both $old and $new in the range.
* @return array
*/
private function getRevisionLimitConditions(
IDatabase $dbr,
RevisionRecord $old = null,
RevisionRecord $new = null,
$options = []
) {
$options = (array)$options;
$oldCmp = '>';
$newCmp = '<';
if ( in_array( self::INCLUDE_OLD, $options ) ) {
$oldCmp = '>=';
}
if ( in_array( self::INCLUDE_NEW, $options ) ) {
$newCmp = '<=';
}
if ( in_array( self::INCLUDE_BOTH, $options ) ) {
$oldCmp = '>=';
$newCmp = '<=';
}
$conds = [];
if ( $old ) {
$oldTs = $dbr->addQuotes( $dbr->timestamp( $old->getTimestamp() ) );
$conds[] = "(rev_timestamp = {$oldTs} AND rev_id {$oldCmp} {$old->getId( $this->wikiId )}) " .
"OR rev_timestamp > {$oldTs}";
}
if ( $new ) {
$newTs = $dbr->addQuotes( $dbr->timestamp( $new->getTimestamp() ) );
$conds[] = "(rev_timestamp = {$newTs} AND rev_id {$newCmp} {$new->getId( $this->wikiId )}) " .
"OR rev_timestamp < {$newTs}";
}
return $conds;
}
/**
* Get IDs of revisions between the given revisions.
*
* @since 1.36
*
* @param int $pageId The id of the page
* @param RevisionRecord|null $old Old revision.
* If null is provided, count starting from the first revision (inclusive).
* @param RevisionRecord|null $new New revision.
* If null is provided, count until the last revision (inclusive).
* @param int|null $max Limit of Revisions to count, will be incremented by
* one to detect truncations.
* @param string|array $options Single option, or an array of options:
* RevisionStore::INCLUDE_OLD Include $old in the range; $new is excluded.
* RevisionStore::INCLUDE_NEW Include $new in the range; $old is excluded.
* RevisionStore::INCLUDE_BOTH Include both $old and $new in the range.
* @param string|null $order The direction in which the revisions should be sorted.
* Possible values:
* - RevisionStore::ORDER_OLDEST_TO_NEWEST
* - RevisionStore::ORDER_NEWEST_TO_OLDEST
* - null for no specific ordering (default value)
* @param int $flags
* @throws InvalidArgumentException in case either revision is unsaved or
* the revisions do not belong to the same page or unknown option is passed.
* @return int[]
*/
public function getRevisionIdsBetween(
int $pageId,
RevisionRecord $old = null,
RevisionRecord $new = null,
?int $max = null,
$options = [],
?string $order = null,
int $flags = IDBAccessObject::READ_NORMAL
): array {
$this->assertRevisionParameter( 'old', $pageId, $old );
$this->assertRevisionParameter( 'new', $pageId, $new );
$options = (array)$options;
$includeOld = in_array( self::INCLUDE_OLD, $options ) ||
in_array( self::INCLUDE_BOTH, $options );
$includeNew = in_array( self::INCLUDE_NEW, $options ) ||
in_array( self::INCLUDE_BOTH, $options );
// No DB query needed if old and new are the same revision.
// Can't check for consecutive revisions with 'getParentId' for a similar
// optimization as edge cases exist when there are revisions between
// a revision and it's parent. See T185167 for more details.
if ( $old && $new && $new->getId( $this->wikiId ) === $old->getId( $this->wikiId ) ) {
return $includeOld || $includeNew ? [ $new->getId( $this->wikiId ) ] : [];
}
$db = $this->getDBConnectionRefForQueryFlags( $flags );
$conds = array_merge(
[
'rev_page' => $pageId,
$db->bitAnd( 'rev_deleted', RevisionRecord::DELETED_TEXT ) . ' = 0'
],
$this->getRevisionLimitConditions( $db, $old, $new, $options )
);
$queryOptions = [];
if ( $order !== null ) {
$queryOptions['ORDER BY'] = [ "rev_timestamp $order", "rev_id $order" ];
}
if ( $max !== null ) {
$queryOptions['LIMIT'] = $max + 1; // extra to detect truncation
}
$values = $db->selectFieldValues(
'revision',
'rev_id',
$conds,
__METHOD__,
$queryOptions
);
return array_map( 'intval', $values );
}
/**
* Get the authors between the given revisions or revisions.
* Used for diffs and other things that really need it.
*
* @since 1.35
*
* @param int $pageId The id of the page
* @param RevisionRecord|null $old Old revision.
* If null is provided, count starting from the first revision (inclusive).
* @param RevisionRecord|null $new New revision.
* If null is provided, count until the last revision (inclusive).
* @param Authority|null $performer the user who's access rights to apply
* @param int|null $max Limit of Revisions to count, will be incremented to detect truncations.
* @param string|array $options Single option, or an array of options:
* RevisionStore::INCLUDE_OLD Include $old in the range; $new is excluded.
* RevisionStore::INCLUDE_NEW Include $new in the range; $old is excluded.
* RevisionStore::INCLUDE_BOTH Include both $old and $new in the range.
* @throws InvalidArgumentException in case either revision is unsaved or
* the revisions do not belong to the same page or unknown option is passed.
* @return UserIdentity[] Names of revision authors in the range
*/
public function getAuthorsBetween(
$pageId,
RevisionRecord $old = null,
RevisionRecord $new = null,
Authority $performer = null,
$max = null,
$options = []
) {
$this->assertRevisionParameter( 'old', $pageId, $old );
$this->assertRevisionParameter( 'new', $pageId, $new );
$options = (array)$options;
// No DB query needed if old and new are the same revision.
// Can't check for consecutive revisions with 'getParentId' for a similar
// optimization as edge cases exist when there are revisions between
//a revision and it's parent. See T185167 for more details.
if ( $old && $new && $new->getId( $this->wikiId ) === $old->getId( $this->wikiId ) ) {
if ( empty( $options ) ) {
return [];
} elseif ( $performer ) {
return [ $new->getUser( RevisionRecord::FOR_THIS_USER, $performer ) ];
} else {
return [ $new->getUser() ];
}
}
$dbr = $this->getDBConnectionRef( DB_REPLICA );
$conds = array_merge(
[
'rev_page' => $pageId,
$dbr->bitAnd( 'rev_deleted', RevisionRecord::DELETED_USER ) . " = 0"
],
$this->getRevisionLimitConditions( $dbr, $old, $new, $options )
);
$queryOpts = [ 'DISTINCT' ];
if ( $max !== null ) {
$queryOpts['LIMIT'] = $max + 1;
}
$actorQuery = $this->actorMigration->getJoin( 'rev_user' );
return array_map( function ( $row ) {
return $this->actorStore->newActorFromRowFields(
$row->rev_user,
$row->rev_user_text,
$row->rev_actor
);
}, iterator_to_array( $dbr->select(
array_merge( [ 'revision' ], $actorQuery['tables'] ),
$actorQuery['fields'],
$conds, __METHOD__,
$queryOpts,
$actorQuery['joins']
) ) );
}
/**
* Get the number of authors between the given revisions.
* Used for diffs and other things that really need it.
*
* @since 1.35
*
* @param int $pageId The id of the page
* @param RevisionRecord|null $old Old revision .
* If null is provided, count starting from the first revision (inclusive).
* @param RevisionRecord|null $new New revision.
* If null is provided, count until the last revision (inclusive).
* @param Authority|null $performer the user who's access rights to apply
* @param int|null $max Limit of Revisions to count, will be incremented to detect truncations.
* @param string|array $options Single option, or an array of options:
* RevisionStore::INCLUDE_OLD Include $old in the range; $new is excluded.
* RevisionStore::INCLUDE_NEW Include $new in the range; $old is excluded.
* RevisionStore::INCLUDE_BOTH Include both $old and $new in the range.
* @throws InvalidArgumentException in case either revision is unsaved or
* the revisions do not belong to the same page or unknown option is passed.
* @return int Number of revisions authors in the range.
*/
public function countAuthorsBetween(
$pageId,
RevisionRecord $old = null,
RevisionRecord $new = null,
Authority $performer = null,
$max = null,
$options = []
) {
// TODO: Implement with a separate query to avoid cost of selecting unneeded fields
// and creation of UserIdentity stuff.
return count( $this->getAuthorsBetween( $pageId, $old, $new, $performer, $max, $options ) );
}
/**
* Get the number of revisions between the given revisions.
* Used for diffs and other things that really need it.
*
* @since 1.35
*
* @param int $pageId The id of the page
* @param RevisionRecord|null $old Old revision.
* If null is provided, count starting from the first revision (inclusive).
* @param RevisionRecord|null $new New revision.
* If null is provided, count until the last revision (inclusive).
* @param int|null $max Limit of Revisions to count, will be incremented to detect truncations.
* @param string|array $options Single option, or an array of options:
* RevisionStore::INCLUDE_OLD Include $old in the range; $new is excluded.
* RevisionStore::INCLUDE_NEW Include $new in the range; $old is excluded.
* RevisionStore::INCLUDE_BOTH Include both $old and $new in the range.
* @throws InvalidArgumentException in case either revision is unsaved or
* the revisions do not belong to the same page.
* @return int Number of revisions between these revisions.
*/
public function countRevisionsBetween(
$pageId,
RevisionRecord $old = null,
RevisionRecord $new = null,
$max = null,
$options = []
) {
$this->assertRevisionParameter( 'old', $pageId, $old );
$this->assertRevisionParameter( 'new', $pageId, $new );
// No DB query needed if old and new are the same revision.
// Can't check for consecutive revisions with 'getParentId' for a similar
// optimization as edge cases exist when there are revisions between
//a revision and it's parent. See T185167 for more details.
if ( $old && $new && $new->getId( $this->wikiId ) === $old->getId( $this->wikiId ) ) {
return 0;
}
$dbr = $this->getDBConnectionRef( DB_REPLICA );
$conds = array_merge(
[
'rev_page' => $pageId,
$dbr->bitAnd( 'rev_deleted', RevisionRecord::DELETED_TEXT ) . " = 0"
],
$this->getRevisionLimitConditions( $dbr, $old, $new, $options )
);
if ( $max !== null ) {
return $dbr->selectRowCount( 'revision', '1',
$conds,
__METHOD__,
[ 'LIMIT' => $max + 1 ] // extra to detect truncation
);
} else {
return (int)$dbr->selectField( 'revision', 'count(*)', $conds, __METHOD__ );
}
}
/**
* Tries to find a revision identical to $revision in $searchLimit most recent revisions
* of this page. The comparison is based on SHA1s of these revisions.
*
* @since 1.37
*
* @param RevisionRecord $revision which revision to compare to
* @param int $searchLimit How many recent revisions should be checked
*
* @return RevisionRecord|null
*/
public function findIdenticalRevision(
RevisionRecord $revision,
int $searchLimit
): ?RevisionRecord {
$revision->assertWiki( $this->wikiId );
$db = $this->getDBConnectionRef( DB_REPLICA );
$revQuery = $this->getQueryInfo();
$subquery = $db->buildSelectSubquery(
$revQuery['tables'],
$revQuery['fields'],
[ 'rev_page' => $revision->getPageId( $this->wikiId ) ],
__METHOD__,
[
'ORDER BY' => [
'rev_timestamp DESC',
// for cases where there are multiple revs with same timestamp
'rev_id DESC'
],
'LIMIT' => $searchLimit,
// skip the most recent edit, we can't revert to it anyway
'OFFSET' => 1
],
$revQuery['joins']
);
// selectRow effectively uses LIMIT 1 clause, returning only the first result
$revisionRow = $db->selectRow(
[ 'recent_revs' => $subquery ],
'*',
[ 'rev_sha1' => $revision->getSha1() ],
__METHOD__
);
return $revisionRow ? $this->newRevisionFromRow( $revisionRow ) : null;
}
// TODO: move relevant methods from Title here, e.g. isBigDeletion, etc.
}
|