import 'package:git_touch/utils/utils.dart'; import 'package:json_annotation/json_annotation.dart'; import 'package:tuple/tuple.dart'; part 'github.g.dart'; @JsonSerializable(fieldRename: FieldRename.snake) class GithubEvent { GithubEventUser actor; String type; GithubEventRepo repo; DateTime createdAt; GithubEventPayload payload; Tuple2 _repo; String get repoOwner { if (_repo == null) { _repo = parseRepositoryFullName(repo.name); } return _repo.item1; } String get repoName { if (_repo == null) { _repo = parseRepositoryFullName(repo.name); } return _repo.item2; } GithubEvent(); factory GithubEvent.fromJson(Map json) => _$GithubEventFromJson(json); } @JsonSerializable(fieldRename: FieldRename.snake) class GithubEventUser { String login; String avatarUrl; GithubEventUser(); factory GithubEventUser.fromJson(Map json) => _$GithubEventUserFromJson(json); } @JsonSerializable(fieldRename: FieldRename.snake) class GithubEventRepo { String name; GithubEventRepo(); factory GithubEventRepo.fromJson(Map json) => _$GithubEventRepoFromJson(json); } @JsonSerializable(fieldRename: FieldRename.snake) class GithubEventPayload { GithubEventIssue issue; GithubEventIssue pullRequest; GithubEventComment comment; GithubEventRelease release; String action; String ref; String refType; String before; String head; List commits; Map forkee; GithubEventPayload(); factory GithubEventPayload.fromJson(Map json) => _$GithubEventPayloadFromJson(json); } @JsonSerializable(fieldRename: FieldRename.snake) class GithubEventIssue { String title; GithubEventUser user; int number; String body; dynamic pullRequest; String state; int comments; bool merged; DateTime createdAt; bool get isPullRequestComment => pullRequest != null; GithubEventIssue(); factory GithubEventIssue.fromJson(Map json) => _$GithubEventIssueFromJson(json); } @JsonSerializable(fieldRename: FieldRename.snake) class GithubEventComment { String body; GithubEventUser user; GithubEventComment(); factory GithubEventComment.fromJson(Map json) => _$GithubEventCommentFromJson(json); } @JsonSerializable(fieldRename: FieldRename.snake) class GithubEventCommit { String sha; String message; GithubEventCommit(); factory GithubEventCommit.fromJson(Map json) => _$GithubEventCommitFromJson(json); } @JsonSerializable(fieldRename: FieldRename.snake) class GithubEventRelease { String htmlUrl; String tagName; GithubEventRelease(); factory GithubEventRelease.fromJson(Map json) => _$GithubEventReleaseFromJson(json); } // Notification @JsonSerializable(fieldRename: FieldRename.snake) class GithubNotificationItem { String id; String htmlUrl; GithubNotificationItemSubject subject; DateTime updatedAt; GithubNotificationItemRepo repository; bool unread; @JsonKey(ignore: true) String state; String get key => '_$hashCode'; GithubNotificationItem(); factory GithubNotificationItem.fromJson(Map json) => _$GithubNotificationItemFromJson(json); } @JsonSerializable(fieldRename: FieldRename.snake) class GithubNotificationItemSubject { String title; String type; String url; int _number; int get number { if (_number == null) { _number = int.parse(url?.split('/')?.last ?? '0'); } return _number; } GithubNotificationItemSubject(); factory GithubNotificationItemSubject.fromJson(Map json) => _$GithubNotificationItemSubjectFromJson(json); } @JsonSerializable(fieldRename: FieldRename.snake) class GithubNotificationItemRepo { String fullName; Tuple2 _repo; String get owner { if (_repo == null) { _repo = parseRepositoryFullName(fullName); } return _repo.item1; } String get name { if (_repo == null) { _repo = parseRepositoryFullName(fullName); } return _repo.item2; } GithubNotificationItemRepo(); factory GithubNotificationItemRepo.fromJson(Map json) => _$GithubNotificationItemRepoFromJson(json); } // Trending @JsonSerializable() class GithubTrendingItem { String author; String name; String avatar; String description; String language; String languageColor; int stars; int forks; int currentPeriodStars; GithubTrendingItem(); factory GithubTrendingItem.fromJson(Map json) => _$GithubTrendingItemFromJson(json); } @JsonSerializable() class GithubTrendingUser { String username; String name; String avatar; GithubTrendingUserRepo repo; GithubTrendingUser(); factory GithubTrendingUser.fromJson(Map json) => _$GithubTrendingUserFromJson(json); } @JsonSerializable() class GithubTrendingUserRepo { String name; String description; GithubTrendingUserRepo(); factory GithubTrendingUserRepo.fromJson(Map json) => _$GithubTrendingUserRepoFromJson(json); } @JsonSerializable(fieldRename: FieldRename.snake) class GithubTreeItem { String name; String path; int size; String type; String downloadUrl; String content; GithubTreeItem(); factory GithubTreeItem.fromJson(Map json) => _$GithubTreeItemFromJson(json); }