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
|
{-# LANGUAGE AllowAmbiguousTypes #-}
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DeriveAnyClass #-}
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE ExtendedDefaultRules #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE QuasiQuotes #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE Strict #-}
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE TypeApplications #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE TypeOperators #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
-- Developer allocation
--
-- : out devalloc
-- : dep acid-state
-- : dep clay
-- : dep cmark
-- : sys cmark
-- : dep cmark-lucid
-- : dep docopt
-- : dep envy
-- : dep github
-- : dep http-api-data
-- : dep ixset
-- : dep lucid
-- : dep protolude
-- : dep rainbow
-- : dep req
-- : dep safecopy
-- : dep servant
-- : dep servant-auth
-- : dep servant-auth-server
-- : dep servant-lucid
-- : dep servant-server
-- : dep tasty
-- : dep tasty-hunit
-- : dep tasty-quickcheck
-- : dep uuid
-- : dep vector
-- : dep vector-algorithms
-- : dep warp
module Biz.Devalloc
( main,
test,
)
where
import Alpha hiding (rem, (<.>))
import qualified Biz.App as App
import qualified Biz.Cli as Cli
import qualified Biz.Id as Id
import qualified Biz.Log as Log
import qualified Biz.Look
import Biz.Test ((@=?), (@?!=), (@?=))
import qualified Biz.Test as Test
import qualified CMark as Cmark
import qualified CMark.Lucid as Cmark
import Clay (em, pct, px, rem, sec, (?))
import qualified Clay
import qualified Clay.Font
import qualified Clay.Render as Clay
import qualified Control.Concurrent.Async as Async
import qualified Control.Exception as Exception
import Control.Monad ((>=>))
import Crypto.JOSE.JWK (JWK)
import Data.Acid (makeAcidic)
import qualified Data.Acid as Acid
import qualified Data.Acid.Advanced as Acid
import qualified Data.Acid.Local as Acid
import qualified Data.Aeson as Aeson
import qualified Data.ByteString.Lazy as LBS
import Data.Data (Data, Typeable)
import Data.IxSet (Indexable (..), IxSet, ixFun, ixSet, (&&&), (@=))
import qualified Data.IxSet as IxSet
import qualified Data.List as List
import Data.SafeCopy (base, deriveSafeCopy)
import qualified Data.SafeCopy as SafeCopy
import qualified Data.Set as Set
import qualified Data.String as String
import qualified Data.Text as Text
import qualified Data.Text.Encoding as Encoding
import qualified Data.Time.Calendar as Time
import qualified Data.Time.Clock as Time
import qualified Data.Time.Format as Time
import Data.Vector (Vector)
import qualified Data.Vector as Vector
-- import qualified Data.Vector.Algorithms.Intro as Vector
import qualified GitHub
import qualified Lucid
import qualified Lucid.Base as Lucid
import qualified Lucid.Servant as Lucid
import Network.HTTP.Req ((/:), (=:))
import qualified Network.HTTP.Req as Req
import qualified Network.Wai as Wai
import qualified Network.Wai.Handler.Warp as Warp
import Servant
import Servant.API.Generic (ToServantApi, genericApi, toServant, (:-))
import qualified Servant.Auth as Auth
import qualified Servant.Auth.Server as Auth
import qualified Servant.HTML.Lucid as Lucid
import Servant.Server.Generic (AsServer)
import qualified System.Directory as Directory
import qualified System.Envy as Envy
import System.FilePath ((<.>), (</>))
import qualified System.Process as Process
import qualified Web.FormUrlEncoded as Web
-- * persistent data
-- This must go first because of template haskell splicing.
--
-- When changing a persisted type `T`, first copy the type `T == T0`, then make
-- the `SafeCopy.Migrate T` class compile, then make changes to `T`. If you
-- don't, there will be a runtime exception when you try to start the new
-- service. I'm not sure how to guard against this, except maybe run a test
-- deployment by copying a database backup locally, or something.
newtype UserEmail = UserEmail {unUserEmail :: Maybe Text}
deriving (Eq, Ord, Data, Typeable, Generic, Show)
instance Aeson.ToJSON UserEmail
instance Aeson.FromJSON UserEmail
instance Auth.ToJWT UserEmail
instance Auth.FromJWT UserEmail
instance Lucid.ToHtml UserEmail where
toHtmlRaw = Lucid.toHtml
toHtml (UserEmail (Just email)) = Lucid.toHtml email
toHtml (UserEmail Nothing) = mempty
$(deriveSafeCopy 0 'base ''UserEmail)
-- | In 'GitHub.Data.Definitions' this is '(Id User)', but I don't want the
-- extra complexity of 'Id', so just store the underlying Int
newtype GitHubId = GitHubId {unGitHubId :: Int}
deriving (Eq, Ord, Data, Typeable, Generic, Show)
instance Aeson.ToJSON GitHubId
instance Aeson.FromJSON GitHubId
instance Auth.ToJWT GitHubId
instance Auth.FromJWT GitHubId
$(deriveSafeCopy 0 'base ''GitHubId)
data Subscription = Free | Invoice
deriving (Eq, Data, Typeable, Ord, Generic, Show)
instance Web.FromForm Subscription where
fromForm f = case Web.parseUnique "user-subscription" f of
Right "Free" -> Right Free
Right "Invoice" -> Right Invoice
Right x -> Left <| "could not parse form value: " <> x
Left x -> Left <| "could not parse form value: " <> x
instance Aeson.ToJSON Subscription
instance Aeson.FromJSON Subscription
instance Auth.ToJWT Subscription
instance Auth.FromJWT Subscription
$(deriveSafeCopy 0 'base ''Subscription)
-- | The main representation of a user.
data User = User
{ userEmail :: UserEmail,
userGitHubId :: GitHubId,
-- | So we can make GitHub API calls on their behalf.
userGitHubToken :: Text,
userSubscription :: Subscription,
userId :: Id.Id User
}
deriving (Eq, Data, Typeable, Ord, Generic, Show)
instance Aeson.ToJSON User
instance Aeson.FromJSON User
instance Auth.ToJWT User
instance Auth.FromJWT User
$(deriveSafeCopy 0 'base ''User)
instance Indexable User where
empty =
ixSet
[ ixFun <| \User {..} -> [userEmail],
ixFun <| \User {..} -> [userGitHubId],
ixFun <| \User {..} -> [userSubscription]
]
newtype Commit = Sha Text
deriving (Eq, Data, Typeable, Ord, Generic, Show)
instance Lucid.ToHtml Commit where
toHtmlRaw = Lucid.toHtml
toHtml (Sha txt) = Lucid.toHtml txt
$(deriveSafeCopy 0 'base ''Commit)
newtype URL = URL Text
deriving (Eq, Data, Typeable, Ord, Generic, Show)
instance Envy.Var URL where
toVar (URL txt) = str txt
fromVar = Just <. URL <. str
instance Lucid.ToHtml URL where
toHtmlRaw = Lucid.toHtml
toHtml (URL txt) = Lucid.toHtml txt
$(deriveSafeCopy 0 'base ''URL)
data Visibility = Public | Private
deriving (Eq, Ord, Generic, Show, Data, Typeable)
$(deriveSafeCopy 0 'base ''Visibility)
data Analysis0 = Analysis0
{ analysisId :: Id.Id Analysis0,
url :: URL,
bareRepo :: FilePath,
blackholes :: [Text],
liabilities :: [Text],
stale :: [(FilePath, Int)],
score :: Integer,
totalFiles :: Integer,
activeAuthors :: [Text],
commit :: Commit,
askedBy :: Id.Id User
}
deriving (Eq, Ord, Generic, Show, Data, Typeable)
$(deriveSafeCopy 0 'base ''Analysis0)
-- | The result of analyzing a git repo.
data Analysis = Analysis
{ -- | Monotonic incrementing integer id
analysisId :: Id.Id Analysis,
-- | Canonical URL for the repo. I wish this was structured data instead of
-- just Text.
url :: URL,
-- | Where the repo is stored on the local disk.
bareRepo :: FilePath,
-- | If the repo is OSS or not
repoVisibility :: Visibility,
-- | A path with no active contributors
blackholes :: [Text],
-- | A path with < 3 active contributors
liabilities :: [Text],
-- | Files that have not been touched in 6 months
stale :: [(FilePath, Int)],
-- | Total score for the repo
score :: Integer,
-- | Total number of files
totalFiles :: Integer,
-- | List of all the active users we care about
activeAuthors :: [Text],
-- | Which commit this analysis was run against.
commit :: Commit,
-- | Who asked for this analysis
askedBy :: Id.Id User
}
deriving (Eq, Ord, Generic, Show, Data, Typeable)
instance SafeCopy.Migrate Analysis where
type MigrateFrom Analysis = Analysis0
migrate Analysis0 {..} =
Analysis
{ analysisId = Id.mk (Proxy :: Proxy Analysis) <| Id.untag analysisId,
repoVisibility = Public,
..
}
$(deriveSafeCopy 0 'base ''Id.Id)
$(deriveSafeCopy 0 'base ''Analysis)
instance Indexable Analysis where
empty =
ixSet
[ ixFun <| \Analysis {..} -> [analysisId],
ixFun <| \Analysis {..} -> [askedBy],
ixFun <| \Analysis {..} -> [url],
ixFun <| \Analysis {..} -> [commit],
ixFun <| \Analysis {..} -> [repoVisibility]
]
-- | The database.
data Keep = Keep
{ users :: IxSet User,
nextUserId :: Id.Id User,
analyses :: IxSet Analysis,
nextAnalysisId :: Id.Id Analysis
}
deriving (Data, Typeable)
$(deriveSafeCopy 0 'base ''Keep)
createUser :: User -> Acid.Update Keep User
createUser u = do
keep <- get
let newUser = u {userId = nextUserId keep}
put
<| keep
{ users = IxSet.insert newUser (users keep),
nextUserId = succ <| nextUserId keep
}
pure newUser
updateUser :: User -> Acid.Update Keep User
updateUser u@User {..} = do
keep <- get
put <| keep {users = IxSet.updateIx userGitHubId u (users keep)}
pure u
getUserByEmail :: UserEmail -> Acid.Query Keep (Maybe User)
getUserByEmail email = do
Keep {..} <- ask
pure <| IxSet.getOne <| users @= email
getUserByGitHubId :: GitHubId -> Acid.Query Keep (Maybe User)
getUserByGitHubId id = do
Keep {..} <- ask
pure <| IxSet.getOne <| users @= id
getUsers :: Acid.Query Keep [User]
getUsers = do
Keep {..} <- ask
pure <| IxSet.toList users
createAnalysis :: Analysis -> Acid.Update Keep Analysis
createAnalysis a = do
keep@Keep {..} <- get
let newAnalysis = a {analysisId = nextAnalysisId} :: Analysis
put
<| keep
{ analyses = IxSet.insert newAnalysis analyses,
nextAnalysisId = succ nextAnalysisId
}
pure newAnalysis
getAnalysisById :: Id.Id Analysis -> Acid.Query Keep (Maybe Analysis)
getAnalysisById id = do
Keep {..} <- ask
pure <| IxSet.getOne <| analyses @= id
getAllAnalyses :: Acid.Query Keep [Analysis]
getAllAnalyses = do
Keep {..} <- ask
pure <| IxSet.toList analyses
getAnalysesByAsker :: User -> Acid.Query Keep [Analysis]
getAnalysesByAsker user = do
Keep {..} <- ask
pure <| IxSet.toList <| analyses @= userId user
getAnalysesByUrl :: URL -> Acid.Query Keep [Analysis]
getAnalysesByUrl url = do
Keep {..} <- ask
pure <| IxSet.toList <| analyses @= url
getAnalysisByUrlAndCommit :: URL -> Commit -> Acid.Query Keep (Maybe Analysis)
getAnalysisByUrlAndCommit url sha = do
Keep {..} <- ask
pure <| IxSet.getOne <| analyses @= url &&& analyses @= sha
$( makeAcidic
''Keep
[ 'createUser,
'updateUser,
'getUsers,
'getUserByEmail,
'getUserByGitHubId,
'createAnalysis,
'getAnalysisById,
'getAllAnalyses,
'getAnalysesByAsker,
'getAnalysesByUrl,
'getAnalysisByUrlAndCommit
]
)
upsertGitHubUser ::
Acid.AcidState Keep ->
ByteString ->
GitHub.User ->
IO (Either Text User)
upsertGitHubUser keep tok ghUser =
ghUser
|> GitHub.userId
|> GitHub.untagId
|> GitHubId
|> GetUserByGitHubId
|> Acid.query keep
+> \case
Just user ->
-- if we already know this user, we need to refresh the token
UpdateUser user {userGitHubToken = Encoding.decodeUtf8 tok}
|> Acid.update keep
Nothing ->
CreateUser
User
{ userEmail = UserEmail <| GitHub.userEmail ghUser,
userGitHubId = GitHubId <. GitHub.untagId <| GitHub.userId ghUser,
userGitHubToken = Encoding.decodeUtf8 tok,
userSubscription = Free,
userId = mempty
}
|> Acid.update keep
/> Right
test_upsertGitHubUser :: IO (Config, Application, Acid.AcidState Keep) -> Test.Tree
test_upsertGitHubUser load =
Test.group
"upsertUser"
[ Test.unit "userId is not mempty" <| do
(_, _, k) <- load
Right User {..} <- upsertGitHubUser k "token" ghUser
userId @?!= mempty,
Test.unit "creates user when email is empty" <| do
(_, _, k) <- load
Right User {..} <- upsertGitHubUser k "token" ghUser {GitHub.userEmail = Nothing}
userEmail @?!= UserEmail Nothing
]
where
ghUser =
GitHub.User
{ GitHub.userId = GitHub.mkId (Proxy :: Proxy GitHub.User) 123,
GitHub.userEmail = Just "user@example.com",
GitHub.userLogin = "example",
GitHub.userName = Nothing,
GitHub.userType = GitHub.OwnerUser,
GitHub.userCreatedAt =
Time.UTCTime (Time.ModifiedJulianDay 1) (Time.secondsToDiffTime 100),
GitHub.userPublicGists = 123,
GitHub.userAvatarUrl = GitHub.URL "http://example.com",
GitHub.userFollowers = 0,
GitHub.userFollowing = 0,
GitHub.userHireable = Nothing,
GitHub.userBlog = Nothing,
GitHub.userBio = Nothing,
GitHub.userPublicRepos = 0,
GitHub.userLocation = Nothing,
GitHub.userCompany = Nothing,
GitHub.userUrl = GitHub.URL "http://example.com",
GitHub.userHtmlUrl = GitHub.URL "http://example.com"
}
init :: Keep
init =
Keep
{ nextAnalysisId = Id.mk (Proxy :: Proxy Analysis) 1,
nextUserId = Id.mk (Proxy :: Proxy User) 1,
users = IxSet.empty,
analyses = IxSet.empty
}
-- * main and test
main :: IO ()
main = Cli.main <| Cli.Plan help move test tidy
help :: Cli.Docopt
help =
[Cli.docopt|
devalloc
Usage:
devalloc [--quiet]
devalloc test
|]
move :: Cli.Arguments -> IO ()
move args =
Exception.bracket
(startup <| args `Cli.has` Cli.longOption "quiet")
shutdown
run
startup :: Bool -> IO (Config, Application, Acid.AcidState Keep)
startup quiet = do
cfg <- Envy.decodeWithDefaults Envy.defConfig
oAuthArgs <- Envy.decodeWithDefaults Envy.defConfig
kp <- Acid.openLocalStateFrom (keep cfg) init :: IO (Acid.AcidState Keep)
jwk <- Auth.generateKey
let URL url = homeExample cfg
unless quiet <| do
Log.info ["boot", "devalloc"] >> Log.br
Log.info ["boot", "area", show <| area cfg] >> Log.br
Log.info ["boot", "port", show <| port cfg] >> Log.br
Log.info ["boot", "depo", Text.pack <| depo cfg] >> Log.br
Log.info ["boot", "keep", Text.pack <| keep cfg] >> Log.br
Log.info ["boot", "home", "example", url] >> Log.br
let jwtCfg = Auth.defaultJWTSettings jwk
let cooks = case area cfg of
Test -> testCookieSettings
Live -> liveCookieSettings
let ctx = cooks :. jwtCfg :. EmptyContext
let app = serveWithContext paths ctx (toServant <| htmlApp cooks kp cfg jwk oAuthArgs)
unless quiet <| do Log.info ["boot", "ready"] >> Log.br
pure (cfg, app, kp)
shutdown :: (Config, Application, Acid.AcidState Keep) -> IO ()
shutdown (_, _, kp) = Acid.createCheckpointAndClose kp
tidy :: Config -> IO ()
tidy Config {..} = Directory.removeDirectoryRecursive keep
run :: (Config, Wai.Application, Acid.AcidState Keep) -> IO ()
run (cfg, app, _) = Warp.run (port cfg) (logMiddleware app)
logMiddleware :: Wai.Middleware
logMiddleware app req sendResponse =
app req <| \res ->
Log.info
[ str <| Wai.requestMethod req,
show <| Wai.remoteHost req,
str <| Wai.rawPathInfo req
]
>> Log.br
>> sendResponse res
liveCookieSettings :: Auth.CookieSettings
liveCookieSettings =
Auth.defaultCookieSettings
{ Auth.cookieIsSecure = Auth.Secure,
-- disable XSRF protection because we don't use any javascript
Auth.cookieXsrfSetting = Nothing
}
testCookieSettings :: Auth.CookieSettings
testCookieSettings =
Auth.defaultCookieSettings
{ Auth.cookieIsSecure = Auth.NotSecure,
Auth.cookieXsrfSetting = Nothing
}
test :: Test.Tree
test =
Test.group
"Biz.Devalloc"
[ test_calculateScore,
Test.with
(startup True)
(\t@(c, _, _) -> shutdown t >> tidy c)
test_upsertGitHubUser,
Test.with
(startup True)
(\t@(c, _, _) -> shutdown t >> tidy c)
test_analyzeGitHub
]
-- * app configurations
data Area = Test | Live
deriving (Generic, Show)
instance Envy.Var Area where
toVar = show
fromVar "Test" = Just Test
fromVar "Live" = Just Live
fromVar _ = Just Test
data Config = Config
{ port :: Warp.Port,
-- | The repo depo! Depository of repositories!
depo :: FilePath,
keep :: FilePath,
area :: Area,
-- | A user token for the GitHub API to be used in testing and when getting
-- the homepage/example analyses. Get a token with 'repo' scope from GitHub
-- and set in .envrc.local
-- https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token
tokn :: Text,
homeExample :: URL
}
deriving (Generic, Show)
instance Envy.DefConfig Config where
defConfig =
Config
{ port = 8005,
depo = "_/var/devalloc/depo",
keep = "_/var/devalloc/keep",
area = Test,
tokn = mempty,
homeExample = URL "https://github.com/github/training-kit"
}
instance Envy.FromEnv Config
-- | These are arguments that a 3rd-party OAuth provider needs in order for us
-- to authenticate a user.
data OAuthArgs = OAuthArgs
{ githubClientSecret :: Text,
githubClientId :: Text,
githubState :: Text
}
deriving (Generic, Show)
instance Envy.DefConfig OAuthArgs where
defConfig =
OAuthArgs
{ githubClientSecret = mempty,
githubClientId = mempty,
githubState = mempty
}
instance Envy.FromEnv OAuthArgs
-- * paths and pages
-- | Wraps pages in default HTML
instance (Lucid.ToHtml a, App.HasCss a) => Lucid.ToHtml (App.Html a) where
toHtmlRaw = Lucid.toHtml
toHtml (App.Html x) =
Lucid.doctypehtml_ <| do
Lucid.head_ <| do
Lucid.title_ "Devalloc.io :: Know your codebase, know your team."
Lucid.meta_
[ Lucid.name_ "description",
Lucid.content_ "Know your codebase, know your team."
]
Lucid.meta_
[ Lucid.name_ "viewport",
Lucid.content_ "width=device-width, initial-scale=1"
]
Lucid.meta_ [Lucid.charset_ "utf-8"]
jsRef "//unpkg.com/turbolinks@5.2.0/dist/turbolinks.js"
-- base styles
style baseStyle
-- page styles
style <| App.cssFor x
Lucid.body_ (Lucid.toHtml x)
where
style = Lucid.style_ <. toStrict <. Clay.renderWith Clay.compact []
jsRef _href =
Lucid.with
(Lucid.script_ mempty)
[ Lucid.makeAttribute "src" _href,
Lucid.makeAttribute "async" mempty,
Lucid.makeAttribute "defer" mempty
]
-- | All of the routes in the app.
data Paths path = Paths
{ home ::
path
:- Get '[Lucid.HTML] (App.Html Home),
login ::
path
:- "login"
:> Verb 'GET 301 '[Lucid.HTML] (Headers '[Header "Location" Text] NoContent),
githubAuth ::
path
:- "auth"
:> "github"
:> "callback"
:> QueryParam "code" Text
:> Get '[Lucid.HTML] (SetCookies (App.Html UserAccount)),
getAccount ::
path
:- Auth.Auth '[Auth.Cookie] User
:> "account"
:> Get '[Lucid.HTML] (App.Html UserAccount),
postAccount ::
path
:- Auth.Auth '[Auth.Cookie] User
:> "account"
:> ReqBody '[FormUrlEncoded] Subscription
:> Post '[Lucid.HTML] (App.Html UserAccount),
selectRepo ::
path
:- Auth.Auth '[Auth.Cookie] User
:> "select-repo"
:> Get '[Lucid.HTML] (App.Html SelectRepo),
getAnalyses ::
path
:- Auth.Auth '[Auth.Cookie] User
:> "analysis"
:> Get '[Lucid.HTML] (App.Html Analyses),
getAnalysis ::
path
:- Auth.Auth '[Auth.Cookie] User
:> "analysis"
:> Capture "analysisId" (Id.Id Analysis)
:> Get '[Lucid.HTML] (App.Html AnalysisDisplay),
postAnalysis ::
path
:- Auth.Auth '[Auth.Cookie] User
:> "analysis"
:> QueryParam "user" Text
:> QueryParam "repo" Text
:> Post '[Lucid.HTML] (App.Html AnalysisDisplay)
}
deriving (Generic)
type SetCookies ret =
(Headers '[Header "Set-Cookie" Auth.SetCookie, Header "Set-Cookie" Auth.SetCookie] ret)
paths :: Proxy (ToServantApi Paths)
paths = genericApi (Proxy :: Proxy Paths)
guardAuth ::
MonadError ServerError m =>
Auth.AuthResult a ->
m a
guardAuth = \case
Auth.NoSuchUser -> throwError err401 {errBody = "No such user"}
Auth.BadPassword -> throwError err401 {errBody = "Bad password"}
Auth.Indefinite -> throwError err401 {errBody = "No authentication found"}
Auth.Authenticated user -> pure user
requiredScopes :: Set Text
requiredScopes = Set.fromList ["repo"]
guardScope :: Text -> Handler ()
guardScope =
Text.split (== ',')
.> Set.fromList
.> Set.isSubsetOf requiredScopes
.> ( \ok ->
unless ok
<| throwError err503 {errBody = "Scopes are not correct"}
)
requireParam :: MonadError ServerError m => LBS.ByteString -> Maybe b -> m b
requireParam _ (Just b) = pure b
requireParam a Nothing =
throwError err406 {errBody = "Required param not found: " <> a}
-- | Main HTML handlers for all paths.
htmlApp ::
Auth.CookieSettings ->
Acid.AcidState Keep ->
Config ->
JWK ->
OAuthArgs ->
Paths AsServer
htmlApp cooks kp cfg jwk oAuthArgs =
Paths
{ home =
homeExample cfg
|> GetAnalysesByUrl
|> Acid.query' kp
/> head
/> Home oAuthArgs
/> App.Html,
login =
pure <| addHeader (githubLoginUrl oAuthArgs) NoContent,
githubAuth = \case
Nothing -> throwError err503 {errBody = "Bad response from GitHub API"}
Just code -> do
OAuthResponse {..} <- githubOauth oAuthArgs code |> liftIO
guardScope scope
let warn :: Text -> Handler a
warn msg =
Log.warn [msg]
>> Log.br
|> liftIO
>> throwError err502 {errBody = str msg}
user <-
GitHub.userInfoCurrentR
|> GitHub.github (userGitHubAuth access_token)
|> liftIO
+> either (show .> warn) pure
+> upsertGitHubUser kp (Encoding.encodeUtf8 access_token)
.> liftIO
+> either warn pure
Auth.acceptLogin cooks (Auth.defaultJWTSettings jwk) user
|> liftIO
+> \case
Nothing -> throwError err502 {errBody = "login didn't work"}
-- I think this should redirect to instead of rendering UserAccount
Just applyCookies ->
UserAccount user
|> App.Html
|> applyCookies
|> pure,
getAccount =
guardAuth >=> UserAccount .> App.Html .> pure,
postAccount = \a subscription ->
guardAuth a
+> \user ->
UpdateUser user {userSubscription = subscription}
|> Acid.update' kp
+> UserAccount
.> App.Html
.> pure,
selectRepo =
guardAuth
>=> \user@User {..} ->
GitHub.github
(userGitHubAuth userGitHubToken)
(GitHub.currentUserReposR GitHub.RepoPublicityAll GitHub.FetchAll)
|> liftIO
+> \case
Left err -> throwError err502 {errBody = show err}
Right repos -> pure <. App.Html <| SelectRepo user repos,
getAnalyses =
guardAuth
>=> \user@User {..} ->
GetAnalysesByAsker user
|> Acid.query' kp
+> Analyses user
.> App.Html
.> pure,
getAnalysis = \a analysisId ->
guardAuth a
+> \user ->
GetAnalysisById analysisId
|> Acid.query' kp
+> \case
Nothing -> throwError err404
Just analysis -> pure <| App.Html <| AnalysisDisplay user analysis,
postAnalysis = \a mOwner mRepo ->
guardAuth a
+> \user@User {..} -> do
owner <- requireParam "owner" mOwner
repo <- requireParam "repo" mRepo
-- we just assume github for now
analyzeGitHub
kp
userId
(userGitHubAuth userGitHubToken)
(depo cfg)
owner
repo
|> liftIO
+> AnalysisDisplay user
.> App.Html
.> pure
}
baseStyle :: Clay.Css
baseStyle = do
Biz.Look.fuckingStyle
Biz.Look.whenDark <| do
"body" ? do
Clay.backgroundColor black
"a:link" <> "a:visited" ? do
Clay.textDecorationColor Clay.white
Clay.color Clay.white
"a:hover" ? do
Clay.textDecorationColor yellow
"select" <> "button" <> "input" ? do
Clay.backgroundColor black
Clay.color Clay.white
Biz.Look.whenLight <| do
"body" ? do
Clay.color black
"a:link" <> "a:visited" ? do
Clay.textDecorationColor black
Clay.color black
"a:hover" ? do
Clay.textDecorationColor yellow
"select" <> "button" <> "input" ? do
Clay.backgroundColor Clay.white
Clay.color black
"body" ? Biz.Look.fontStack
"header" ? do
Clay.maxWidth (pct 100)
"footer" ? do
Clay.fontStyle Clay.italic
Clay.fontSize (rem 0.8)
Clay.marginTop (em 6)
Clay.marginBottom (em 6)
"a" <> "input.link" ? do
Clay.transition "all" (sec 0.2) Clay.ease 0
Clay.transitionProperties
[ "text-decoration-color",
"text-decoration-thickness",
"text-decoration-width"
]
Clay.textDecoration Clay.underline
Biz.Look.textDecorationThickness (em 0.1)
Biz.Look.textDecorationWidth (em 0.1)
"a:hover" <> "input.link" ? do
Clay.textDecorationColor yellow
Clay.textDecoration Clay.underline
Biz.Look.textDecorationThickness (em 0.2)
Biz.Look.textDecorationWidth (em 0.2)
"select" <> "button" <> "input" ? do
Biz.Look.paddingAll (em 0.5)
Biz.Look.marginX (em 0.5)
Clay.borderColor yellow
Clay.borderStyle Clay.solid
-- for making POST requests with a form disguised as a link
"input.link" ? do
Clay.cursor Clay.pointer
Clay.borderWidth 0
Clay.fontSize (rem 1)
Biz.Look.marginAll (px 0)
Biz.Look.paddingAll (px 0)
".badge" ? do
Clay.borderWidth (px 1)
Clay.borderColor Clay.grey
Clay.borderStyle Clay.solid
Biz.Look.borderRadiusAll (rem 2)
Clay.fontSize (rem 0.8)
Biz.Look.marginAll (rem 1)
Biz.Look.paddingX (rem 0.5)
Biz.Look.paddingY (rem 0.25)
"label" ? do
Clay.display Clay.inlineBlock
Clay.width (px 100)
"nav" ? do
Clay.display Clay.flex
Clay.justifyContent Clay.spaceBetween
"a" ? do
Clay.padding (em 1) (em 1) (em 1) (em 1)
Clay.display Clay.block
"ul" ? do
Clay.display Clay.flex
Clay.justifyContent Clay.flexEnd
Clay.listStyleType Clay.none
Clay.margin (Clay.px 0) 0 0 0
"li" ? do
Clay.padding 0 (px 5) 0 (px 5)
"details" ? do
Clay.display Clay.inline
"summary" ? do
Clay.color "#6c757d"
Clay.display Clay.listItem
Clay.cursor Clay.pointer
yellow, black :: Clay.Color
yellow = "#ffe000"
black = "#121212"
-- | The front page pitch. Eventually I'd like to load the content from markdown
-- files or some other store of data so I can A/B test.
data Home = Home OAuthArgs (Maybe Analysis)
instance App.HasCss Home where
cssFor (Home _ mAnalysis) = do
"p" ? Clay.textAlign Clay.center
"h1" ? do
Clay.fontSize (Clay.rem 3)
"h1" <> "h2" ? do
Clay.textAlign Clay.center
".example" ? do
Clay.borderStyle Clay.solid
Clay.borderWidth (px 2)
Clay.borderColor "#aaa"
Biz.Look.borderRadiusAll (px 10)
Biz.Look.paddingX (em 2)
Biz.Look.paddingY (em 1)
maybe mempty App.cssFor mAnalysis
"section" ? do
Clay.padding (rem 3) 0 (rem 3) 0
"a#try-button" <> "a#try-button:visited" ? do
Clay.transition "all" (sec 0.2) Clay.ease 0
Clay.transitionProperties
["color", "background-color", "border-color"]
Clay.padding (em 0.5) (em 1) (em 0.5) (em 1)
Clay.display Clay.flex
Clay.flexDirection Clay.column
Clay.margin (em 3) Clay.auto 0 Clay.auto
Clay.width (px 250)
Clay.borderWidth (px 1)
Clay.borderStyle Clay.solid
Clay.borderColor black
Clay.backgroundColor yellow
Clay.color black
Clay.textDecoration Clay.none
Clay.justifyContent Clay.center
Clay.alignItems Clay.center
Clay.fontWeight Clay.bold
"small" ? do
Clay.fontSize (px 10)
"a#try-button:hover" ? do
Clay.borderColor yellow
Clay.color yellow
Clay.backgroundColor black
instance Lucid.ToHtml Home where
toHtmlRaw = Lucid.toHtml
toHtml (Home oAuthArgs analysis) = do
header Nothing
Lucid.main_ <| do
section <| do
h1 "Know your codebase."
h1 "Know your team."
p "Devalloc analyzes your codebase trends, finds patterns in how your developers work, and protects against tech debt."
p "Just hook it up to your CI system - Devalloc warns you when it finds a problem."
Lucid.toHtml <| tryButton oAuthArgs "Give it a try with GitHub" mempty
section <| do
h2 "Identify blackholes in your codebase"
p
"What if none of your active employees have touched some part of the codebase? \
\ This happens too often with legacy code, and then it turns into a huge source of tech debt. \
\ Devalloc finds these \"blackholes\" and warns you about them so you can be proactive in eliminating tech debt."
section <| do
h2 "Find developer hot spots"
p
"Which pieces of code get continually rewritten, taking up valuable dev time? \
\ Find these module hot spots before they become a costly time-sink."
section <| do
h2 "See an example analysis"
maybe
( Lucid.toHtml
<| tryButton oAuthArgs "Run a free complimentary analysis" mempty
)
(exampleWrapper <. Lucid.toHtml)
analysis
section <| do
h2 "Protect against lost knowledge"
p "Not everyone can know every part of a codebase. By finding pieces of code that only 1 or 2 people have touched, devalloc identifes siloed knowledge. This allows you to protect against the risk of this knowledge leaving the company if an employee leaves."
section <| do
h2 "Don't just measure code coverage - also know your dev coverage"
p "No matter how smart your employees are, if you are under- or over-utilizing your developers then you will never get optimal performance from your team."
p "Know how your devs work best: which ones have depth of knowledge, and which ones have breadth?"
section <| do
h2 "See how your teams *actually* organize themselves with cluster analysis"
p "Does your team feel splintered or not cohesive? Which developers work best together? Devalloc analyzes the collaboration patterns between devs and helps you form optimal pairings and teams based on shared code and mindspace."
section <| do
h1 <| "Ready to get going?"
Lucid.toHtml
<| tryButton
oAuthArgs
"Give it a try with GitHub"
"It's free for a limited time!"
footer
where
section = Lucid.section_
markdown = Cmark.renderNode [] <. Cmark.commonmarkToNode []
p = Lucid.p_ <. markdown
h1 = Lucid.h1_
h2 = Lucid.h2_ <. markdown
exampleWrapper = Lucid.div_ [Lucid.class_ "example"]
data Analyses = Analyses User [Analysis]
instance App.HasCss Analyses where
cssFor _ = mempty
instance Lucid.ToHtml Analyses where
toHtmlRaw = Lucid.toHtml
toHtml (Analyses user@User {..} analyses) = do
header <| Just user
Lucid.main_ <| do
Lucid.section_ <| do
Lucid.h2_ "Your Analyses"
Lucid.p_
<| Lucid.a_
[Lucid.linkHref_ "/" <| fieldLink selectRepo]
"Analyze one of your repos"
Lucid.div_ <| do
forM_ analyses <| \Analysis {..} ->
Lucid.a_
[ href analysisId,
css <| Biz.Look.marginAll (em 1)
<> Clay.textDecoration Clay.none
]
<| do
Lucid.div_ <| Lucid.toHtml url
Lucid.div_ [css <| Clay.fontSizeCustom Clay.Font.small]
<| Lucid.toHtml commit
footer
where
href aid = Lucid.linkHref_ "/" <| fieldLink getAnalysis aid
newtype UserAccount = UserAccount User
instance App.HasCss UserAccount where
cssFor (UserAccount _) = mempty
instance Lucid.ToHtml Subscription where
toHtmlRaw = Lucid.toHtml
toHtml Free = "Free"
toHtml Invoice = "Invoice me"
linkAction_ :: ToHttpApiData a => Text -> a -> Lucid.Attribute
linkAction_ baseUrl = Lucid.action_ <. (baseUrl <>) <. Servant.toUrlPiece
instance Lucid.ToHtml UserAccount where
toHtmlRaw = Lucid.toHtml
toHtml (UserAccount user@User {..}) = do
header <| Just user
Lucid.main_ <| do
Lucid.h1_ "Welcome!"
Lucid.section_ <| do
Lucid.h2_ "Subscription"
let action = linkAction_ "/" <| fieldLink postAccount
Lucid.form_ [action, Lucid.method_ "post"] <| do
let name = "user-subscription"
Lucid.label_ [Lucid.for_ name] "Your plan:"
Lucid.select_ [Lucid.name_ name] <| do
Lucid.option_
(Lucid.value_ "Free" : isSelected Free)
<| Lucid.toHtml Free
Lucid.option_
(Lucid.value_ "Invoice" : isSelected Invoice)
<| Lucid.toHtml Invoice
Lucid.input_ [Lucid.type_ "submit", Lucid.value_ "Save"]
when (userSubscription == Invoice) <| do
Lucid.p_ "Thanks! You will receive an invoice by email every month."
footer
where
isSelected sel =
if userSubscription == sel
then [Lucid.selected_ <| tshow sel]
else mempty
css :: Clay.Css -> Lucid.Attribute
css = Lucid.style_ <. toStrict <. Clay.renderWith Clay.htmlInline []
-- | A type for parsing JSON auth responses, used in 'githubOauth' below.
-- Should be moved to Biz.Auth with others.
data OAuthResponse = OAuthResponse
{ access_token :: Text,
scope :: Text,
token_type :: Text
}
deriving (Generic, Aeson.FromJSON)
userGitHubAuth ::
-- | Token from `User.userGitHubToken` or `Config.tokn`
Text ->
GitHub.Auth
userGitHubAuth = GitHub.OAuth <. Encoding.encodeUtf8
-- | POST to GitHub's OAuth service and get the user's oAuth token.
githubOauth ::
OAuthArgs ->
Text ->
-- | This should be GitHub.Token but GitHub.Auth doesn't export Token.
IO OAuthResponse
githubOauth OAuthArgs {..} code =
accessTokenRequest
/> Req.responseBody
|> Req.runReq Req.defaultHttpConfig
where
accessTokenRequest :: Req.Req (Req.JsonResponse OAuthResponse)
accessTokenRequest =
Req.req
Req.POST
(Req.https "github.com" /: "login" /: "oauth" /: "access_token")
Req.NoReqBody
Req.jsonResponse
<| "client_id" =: githubClientId
<> "client_secret" =: githubClientSecret
<> "code" =: code
<> "state" =: githubState
-- GitHub OAuth endpoint. For what the parameters mean, see:
-- https://docs.github.com/en/developers/apps/authorizing-oauth-apps
githubLoginUrl :: OAuthArgs -> Text
githubLoginUrl OAuthArgs {..} =
"https://github.com/login/oauth/authorize?"
<> encodeParams
[ ("client_id", githubClientId),
("state", githubState),
("scope", Text.intercalate " " <| Set.toList requiredScopes)
]
-- | This view presents a list of repos to select for analysis.
data SelectRepo = SelectRepo User (Vector GitHub.Repo)
instance App.HasCss SelectRepo where
cssFor (SelectRepo _ _) = do
"ul" ? do
Clay.listStyleType Clay.none
Clay.margin (px 0) 0 0 0
Clay.padding (px 0) 0 0 0
"li" ? do
Clay.borderBottomWidth (px 1)
Clay.borderBottomColor "#999"
Clay.borderBottomStyle Clay.solid
Clay.padding (em 1.5) 0 (em 1.5) 0
".link" ? do
Clay.fontSize (em 1.17)
instance Lucid.ToHtml SelectRepo where
toHtmlRaw = Lucid.toHtml
toHtml (SelectRepo user repos) = do
header <| Just user
Lucid.main_ <| do
Lucid.h2_ "Select a repo to analyze"
Lucid.ul_ <| Lucid.toHtml <| traverse_ displayRepo (Vector.toList repos)
footer
where
displayRepo :: GitHub.Repo -> Lucid.Html ()
displayRepo repo =
Lucid.li_ <| do
let action =
linkAction_ "/"
<| fieldLink
postAnalysis
(Just <| GitHub.untagName <| GitHub.simpleOwnerLogin <| GitHub.repoOwner repo)
(Just <| GitHub.untagName <| GitHub.repoName repo)
Lucid.form_ [action, Lucid.method_ "post"] <| do
Lucid.input_
[ Lucid.type_ "submit",
Lucid.class_ "link",
Lucid.value_ <| GitHub.untagName
<| GitHub.repoName repo
]
when (GitHub.repoPrivate repo) <| privateBadge
maybe mempty (Lucid.p_ <. Lucid.toHtml) (GitHub.repoDescription repo)
privateBadge = Lucid.span_ [Lucid.class_ "badge"] "Private"
-- * parts
-- | Utility for turning a list of tuples into a URL querystring.
encodeParams :: [(Text, Text)] -> Text
encodeParams =
Encoding.decodeUtf8
<. LBS.toStrict
<. Web.urlEncodeParams
-- | Login button for GitHub.
tryButton :: OAuthArgs -> Text -> Text -> Lucid.Html ()
tryButton oAuthArgs title subtitle =
Lucid.a_
[Lucid.id_ "try-button", Lucid.href_ <| githubLoginUrl oAuthArgs]
<| do
Lucid.toHtml title
Lucid.small_ <| Lucid.toHtml subtitle
-- | Universal header
header :: Monad m => Maybe User -> Lucid.HtmlT m ()
header muser =
Lucid.header_ <| do
Lucid.nav_ <| do
a "Devalloc" <| fieldLink home
case muser of
Nothing ->
Lucid.ul_ <| do
li "Login" <| fieldLink login
Just _ ->
Lucid.ul_ <| do
li "Analyses" <| fieldLink getAnalyses
li "Account" <| fieldLink getAccount
where
a txt href =
Lucid.a_ [Lucid.linkHref_ "/" href] txt
li txt href = Lucid.li_ <| a txt href
-- | Universal footer
footer :: Monad m => Lucid.HtmlT m ()
footer =
Lucid.footer_ <| do
Lucid.p_ <| Lucid.i_ "Copyright ©2020-2021 Devalloc.io"
-- * analysis
-- | I need more information than just 'Analysis' has to render a full, useful
-- web page, hence this type.
data AnalysisDisplay = AnalysisDisplay User Analysis
instance App.HasCss AnalysisDisplay where
cssFor (AnalysisDisplay _ analysis) = App.cssFor analysis
instance Lucid.ToHtml AnalysisDisplay where
toHtmlRaw = Lucid.toHtml
toHtml (AnalysisDisplay user anal) = do
header <| Just user
Lucid.main_ <| do
Lucid.h1_ "Analysis Results"
Lucid.toHtml anal
footer
instance App.HasCss Analysis where
cssFor _ = do
Clay.display Clay.grid
Clay.justifyContent Clay.spaceAround
Biz.Look.rowGap (rem 2)
Biz.Look.marginY (rem 1)
Biz.Look.gridTemplateAreas
[ "analysisFor",
"metrics"
]
".metrics" ? do
Clay.gridTemplateColumns [pct 50, pct 50]
Clay.display Clay.grid
Biz.Look.columnGap (em 2)
Biz.Look.rowGap (em 2)
".score" ? do
Clay.display Clay.flex
Clay.flexDirection Clay.column
".title" ? do
Clay.fontSize (rem 1.4)
Clay.lineHeight (rem 2.4)
".percentage" ? do
Clay.display Clay.flex
Clay.alignItems Clay.baseline
".centum" ? do
Clay.fontSize (rem 1.2)
Clay.lineHeight (rem 1.2)
".quantity" ? do
Clay.fontSize (rem 3)
Clay.lineHeight (rem 3)
"details" ? do
Biz.Look.gridArea "details-collapsed"
"details[open]" ? do
Biz.Look.gridArea "details"
instance Lucid.ToHtml Analysis where
toHtmlRaw = Lucid.toHtml
toHtml Analysis {..} =
Lucid.div_ <| do
Lucid.p_ [Lucid.class_ ".analysisFor"] <| do
"Analysis for "
Lucid.a_ [Lucid.href_ <| (\(URL txt) -> txt) <| url] <| do
Lucid.toHtml url
Lucid.div_ [Lucid.class_ "metrics"] <| do
score_ <| do
title_ "Total Score"
percentage_ <| do
quantity_ <| Lucid.toHtml <| tshow score
centum_ "/100"
score_ <| do
title_ "Total Files"
quantity_ <| Lucid.toHtml <| tshow totalFiles
score_ <| do
title_ "Active authors"
quantity_ <| Lucid.toHtml <| slen activeAuthors
Lucid.details_ <| do
Lucid.summary_ "Details"
Lucid.ul_ <| forM_ activeAuthors <| \author -> do
Lucid.li_ <| Lucid.toHtml author
score_ <| do
title_ "Blackholes"
quantity_ <| Lucid.toHtml <| slen blackholes
Lucid.details_ <| do
Lucid.summary_ "Details"
Lucid.ul_ <| do
traverse_ (Lucid.toHtml .> Lucid.li_) blackholes
score_ <| do
title_ "Liabilities"
quantity_ <| Lucid.toHtml <| slen liabilities
Lucid.details_ <| do
Lucid.summary_ "Details"
Lucid.ul_ <| do
traverse_ (Lucid.toHtml .> Lucid.li_) liabilities
score_ <| do
title_ "Stale files"
quantity_ <| Lucid.toHtml <| slen stale
Lucid.details_ <| do
Lucid.summary_ "Details"
Lucid.ul_ <| do
forM_ stale <| \(path, days) ->
Lucid.li_ <| Lucid.toHtml <| path <> " (" <> show days <> " days)"
where
slen = tshow <. length
div_ c = Lucid.with Lucid.div_ [Lucid.class_ c]
score_ = div_ "score"
title_ = div_ "title"
quantity_ = div_ "quantity"
centum_ = div_ "centum"
percentage_ = div_ "percentage"
-- | Run a full analysis on a git repo
analyze :: Acid.AcidState Keep -> Id.Id User -> [Text] -> URL -> FilePath -> Bool -> IO Analysis
analyze keep askedBy activeAuthors url bareRepo repoPrivate = do
commit <- Sha </ Text.strip </ Text.pack </ git ["log", "-n1", "--format=%H"]
Acid.query keep (GetAnalysisByUrlAndCommit url commit) +> \case
Just analysis -> pure analysis
Nothing -> do
tree <-
git
[ "ls-tree",
"--full-tree",
"--name-only",
"-r", -- recurse into subtrees
"HEAD"
]
/> String.lines
authors <- traverse (authorsFor bareRepo) tree :: IO [[(Text, Text, Text)]]
let authorMap =
zipWith
( \path authors_ ->
(path, authors_)
)
tree
authors ::
[(FilePath, [(Text, Text, Text)])]
stalenessMap <- traverse (lastTouched bareRepo) tree
let blackholes =
[ Text.pack path
| (path, authors_) <- authorMap,
null (map third authors_ `List.intersect` activeAuthors)
]
let liabilities =
[ Text.pack path
| (path, authors_) <- authorMap,
length (map third authors_ `List.intersect` activeAuthors) < 3
]
let numBlackholes = realToFrac <| length blackholes
let numLiabilities = realToFrac <| length liabilities
let numTotal = realToFrac <| length tree
Analysis
{ analysisId = mempty,
stale =
[ (path, days)
| (path, Just days) <- stalenessMap,
days > 180
],
score = calculateScore numTotal numBlackholes numLiabilities,
totalFiles = toInteger <| length tree,
repoVisibility = repoPrivate ?: (Private, Public),
..
}
|> CreateAnalysis
|> Acid.update keep
where
third :: (a, b, c) -> c
third (_, _, a) = a
git args = Process.readProcess "git" (["--git-dir", bareRepo] ++ args) ""
-- | Does the aggregate score calculation given number of files found to be
-- blackholes, liabilities, etc.
calculateScore :: Double -> Double -> Double -> Integer
calculateScore 0 _ _ = 0
calculateScore a 0 0 | a > 0 = 100
calculateScore a b c | a < 0 || b < 0 || c < 0 = 0
calculateScore numTotal numBlackholes numLiabilities =
max 0 <. round
<| maxScore
* (weightedBlackholes + weightedLiabilities + numGood)
/ numTotal
where
weightedBlackholes = numBlackholes * (5 / 10)
weightedLiabilities = numLiabilities * (7 / 10)
numGood = numTotal - numBlackholes - numLiabilities
maxScore = 100.0
test_calculateScore :: Test.Tree
test_calculateScore =
Test.group
"calculateScore"
[ Test.unit "perfect score" <| 100 @=? calculateScore 100 0 0,
Test.unit "all blackholes" <| 50 @=? calculateScore 100 100 0,
Test.unit "all liabilities" <| 70 @=? calculateScore 100 0 100,
Test.prop "never > 100" <| \t b l -> calculateScore t b l <= 100,
Test.prop "never < 0" <| \t b l -> calculateScore t b l >= 0
]
lastTouched :: FilePath -> FilePath -> IO (FilePath, Maybe Int)
lastTouched bareRepo path = do
now <- Time.getCurrentTime
timestamp <-
Process.readProcess
"git"
[ "--git-dir",
bareRepo,
"log",
"-n1",
"--pretty=%aI",
"--",
path
]
""
/> filter (/= '\n')
/> Time.parseTimeM True Time.defaultTimeLocale "%Y-%m-%dT%H:%M:%S%z"
pure (path, calculateAge now </ timestamp)
where
calculateAge now n = round <| Time.diffUTCTime now n / Time.nominalDay
-- | Given a git dir and a path inside the git repo, pure a list of tuples
-- with number of commits and author.
authorsFor ::
FilePath ->
FilePath ->
-- | returns (number of commits, author name, author email)
IO [(Text, Text, Text)]
authorsFor gitDir path =
Process.readProcess
"git"
[ "--git-dir",
gitDir,
"shortlog",
"--numbered",
"--summary",
"--email",
"HEAD",
"--",
path
]
""
/> Text.pack
/> Text.lines
/> map (Text.break (== '\t'))
/> map
( \(commits, author) ->
( Text.strip commits,
Text.strip <| Text.takeWhile (/= '<') author,
Text.strip <| Text.dropAround (`elem` ['<', '>']) <| Text.dropWhile (/= '<') author
)
)
-- | Clones a repo from GitHub and does the analysis.
analyzeGitHub ::
GitHub.AuthMethod ghAuth =>
Acid.AcidState Keep ->
-- | The User asking for the analysis, we auth as them
Id.Id User ->
-- | How to auth with GitHub API
ghAuth ->
-- | The repo depo
FilePath ->
-- | GitHub owner
Text ->
-- | GitHub repo
Text ->
IO Analysis
analyzeGitHub keep userId ghAuth depo o r = do
activeAuthors <-
getPeople
/> Vector.map (GitHub.simpleUserLogin .> GitHub.userInfoForR)
/> Vector.toList
+> Async.mapConcurrently (GitHub.github ghAuth)
/> map (either (const Nothing) GitHub.userEmail)
/> catMaybes
GitHub.github ghAuth (GitHub.repositoryR ghOwner ghRepo) +> \case
Left err -> throwIO <| toException err
Right repo -> do
let GitHub.URL url = GitHub.repoHtmlUrl repo
bareRepo <- fetchBareRepo depo <. GitHub.getUrl <| GitHub.repoHtmlUrl repo
analyze keep userId activeAuthors (URL url) bareRepo (GitHub.repoPrivate repo)
where
ghOwner = GitHub.mkName (Proxy :: Proxy GitHub.Owner) o
ghRepo = GitHub.mkName (Proxy :: Proxy GitHub.Repo) r
getPeople :: IO (Vector GitHub.SimpleUser)
getPeople =
Async.runConcurrently <| (Vector.++)
</ Concurrently getCollaborators
<*> Concurrently getTopContributors
getCollaborators :: IO (Vector GitHub.SimpleUser)
getCollaborators =
GitHub.collaboratorsOnR ghOwner ghRepo GitHub.FetchAll
|> GitHub.github ghAuth
/> either mempty identity
getTopContributors :: IO (Vector GitHub.SimpleUser)
getTopContributors =
-- 'False' means don't include anonymous contributors
GitHub.contributorsR ghOwner ghRepo False GitHub.FetchAll
|> GitHub.github ghAuth
/> either mempty identity
-- TODO: return top 10%; I can't figure out how to use this />
-- Vector.sortBy
-- ( \case
-- GitHub.KnownContributor n _ _ _ _ _ -> n
-- GitHub.AnonymousContributor n _ -> n
-- )
/> Vector.take 10
/> Vector.mapMaybe GitHub.contributorToSimpleUser
test_analyzeGitHub :: IO (Config, Application, Acid.AcidState Keep) -> Test.Tree
test_analyzeGitHub load =
Test.group
"analyzeGitHub"
[ Test.unit "can analyze a public repo (octocat/hello-world)" <| do
(c, _, k) <- load
let user =
User
{ userEmail = UserEmail <| Just "user@example.com",
userGitHubId = GitHubId 0,
userGitHubToken = tokn c,
userSubscription = Free,
userId = mempty
}
Analysis {..} <-
analyzeGitHub
k
(userId user)
(userGitHubAuth <| userGitHubToken user)
(depo c)
"octocat"
"hello-world"
url @?= URL "https://github.com/octocat/Hello-World"
bareRepo @?= depo c <> "/github.com/octocat/Hello-World.git"
length activeAuthors @?= 2
activeAuthors @?= ["hire@spacegho.st", "octocat@github.com"]
blackholes @?= ["README"]
liabilities @?= ["README"]
fst </ headMay stale @?= Just "README"
score @?= 20
totalFiles @?= 1
commit @?= Sha "7fd1a60b01f91b314f59955a4e4d4e80d8edf11d"
]
-- | Clone the repo to @<Config.depo>/<url>@. If repo already exists, just do a
-- @git fetch@. pures the full path to the local repo.
fetchBareRepo :: FilePath -> Text -> IO FilePath
fetchBareRepo depo url =
Directory.doesPathExist worktree
+> fetchOrClone
>> pure worktree
where
fetchOrClone True =
Log.info ["git", "fetch", url]
>> Log.br
>> Process.callProcess "git" ["--git-dir", worktree, "fetch", "--quiet", "origin"]
fetchOrClone False =
Log.info ["git", "clone", url]
>> Log.br
>> Process.callProcess "git" ["clone", "--bare", "--quiet", "--", Text.unpack url, worktree]
removeScheme :: Text -> FilePath
removeScheme u = Text.unpack <. Text.dropWhile (== '/') <. snd <| Text.breakOn "//" u
worktree = depo </> removeScheme url <.> "git"
|