eve_online 0.30.0 → 0.35.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (121) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +18 -54
  3. data/.deepsource.toml +5 -0
  4. data/.ruby-version +1 -1
  5. data/Appraisals +0 -12
  6. data/CHANGELOG.md +58 -0
  7. data/Gemfile.lock +57 -53
  8. data/Gemfile.mutant.lock +49 -50
  9. data/README.md +401 -133
  10. data/eve_online.gemspec +3 -3
  11. data/lib/eve_online.rb +40 -7
  12. data/lib/eve_online/esi/alliance_corporations.rb +1 -1
  13. data/lib/eve_online/esi/alliances.rb +1 -1
  14. data/lib/eve_online/esi/base.rb +15 -6
  15. data/lib/eve_online/esi/character_assets.rb +1 -1
  16. data/lib/eve_online/esi/character_calendar.rb +1 -1
  17. data/lib/eve_online/esi/character_calendar_event.rb +1 -1
  18. data/lib/eve_online/esi/{character_bookmarks.rb → character_contracts.rb} +7 -7
  19. data/lib/eve_online/esi/character_get_mail.rb +37 -0
  20. data/lib/eve_online/esi/character_location.rb +1 -1
  21. data/lib/eve_online/esi/character_mail_labels.rb +40 -0
  22. data/lib/eve_online/esi/character_online.rb +1 -1
  23. data/lib/eve_online/esi/character_ship.rb +1 -1
  24. data/lib/eve_online/esi/character_skills.rb +1 -1
  25. data/lib/eve_online/esi/character_wallet.rb +1 -1
  26. data/lib/eve_online/esi/character_wallet_journal.rb +2 -2
  27. data/lib/eve_online/esi/character_wallet_transactions.rb +41 -0
  28. data/lib/eve_online/esi/corporation_assets.rb +1 -1
  29. data/lib/eve_online/esi/corporation_npc.rb +20 -0
  30. data/lib/eve_online/esi/killmail.rb +30 -0
  31. data/lib/eve_online/esi/market_prices.rb +27 -0
  32. data/lib/eve_online/esi/models/aggressor.rb +1 -1
  33. data/lib/eve_online/esi/models/alliance.rb +1 -1
  34. data/lib/eve_online/esi/models/alliance_icon.rb +1 -1
  35. data/lib/eve_online/esi/models/alliance_short.rb +1 -1
  36. data/lib/eve_online/esi/models/ally.rb +1 -1
  37. data/lib/eve_online/esi/models/ancestry.rb +1 -1
  38. data/lib/eve_online/esi/models/asset.rb +1 -1
  39. data/lib/eve_online/esi/models/asset_location.rb +1 -1
  40. data/lib/eve_online/esi/models/asset_name.rb +1 -1
  41. data/lib/eve_online/esi/models/asteroid_belt.rb +1 -1
  42. data/lib/eve_online/esi/models/attributes.rb +1 -1
  43. data/lib/eve_online/esi/models/bloodline.rb +1 -1
  44. data/lib/eve_online/esi/models/blueprint.rb +1 -1
  45. data/lib/eve_online/esi/models/category.rb +1 -1
  46. data/lib/eve_online/esi/models/character.rb +1 -1
  47. data/lib/eve_online/esi/models/character_corporation_history.rb +1 -1
  48. data/lib/eve_online/esi/models/character_industry_job.rb +1 -1
  49. data/lib/eve_online/esi/models/character_location.rb +1 -1
  50. data/lib/eve_online/esi/models/character_order.rb +1 -1
  51. data/lib/eve_online/esi/models/character_portrait.rb +1 -1
  52. data/lib/eve_online/esi/models/character_ship.rb +1 -1
  53. data/lib/eve_online/esi/models/constellation.rb +1 -1
  54. data/lib/eve_online/esi/models/contract.rb +132 -0
  55. data/lib/eve_online/esi/models/coordinates.rb +1 -1
  56. data/lib/eve_online/esi/models/corporation.rb +1 -1
  57. data/lib/eve_online/esi/models/corporation_alliance_history.rb +1 -1
  58. data/lib/eve_online/esi/models/corporation_industry_job.rb +1 -1
  59. data/lib/eve_online/esi/models/corporation_order.rb +1 -1
  60. data/lib/eve_online/esi/models/defender.rb +1 -1
  61. data/lib/eve_online/esi/models/dogma_attribute.rb +1 -1
  62. data/lib/eve_online/esi/models/dogma_attribute_short.rb +1 -1
  63. data/lib/eve_online/esi/models/dogma_effect.rb +1 -1
  64. data/lib/eve_online/esi/models/dogma_effect_modifier.rb +1 -1
  65. data/lib/eve_online/esi/models/dogma_effect_short.rb +1 -1
  66. data/lib/eve_online/esi/models/event.rb +1 -1
  67. data/lib/eve_online/esi/models/event_details.rb +1 -1
  68. data/lib/eve_online/esi/models/faction.rb +1 -1
  69. data/lib/eve_online/esi/models/fatigue.rb +1 -1
  70. data/lib/eve_online/esi/models/graphic.rb +1 -1
  71. data/lib/eve_online/esi/models/group.rb +1 -1
  72. data/lib/eve_online/esi/models/home_location.rb +1 -1
  73. data/lib/eve_online/esi/models/jump_clone.rb +1 -1
  74. data/lib/eve_online/esi/models/killmail.rb +47 -0
  75. data/lib/eve_online/esi/models/killmail_short.rb +1 -1
  76. data/lib/eve_online/esi/models/loyalty_point.rb +1 -1
  77. data/lib/eve_online/esi/models/loyalty_store_offer.rb +1 -1
  78. data/lib/eve_online/esi/models/mail.rb +49 -0
  79. data/lib/eve_online/esi/models/mail_label.rb +34 -0
  80. data/lib/eve_online/esi/models/mail_recipient.rb +24 -0
  81. data/lib/eve_online/esi/models/mail_recipients.rb +21 -0
  82. data/lib/eve_online/esi/models/market_group.rb +1 -1
  83. data/lib/eve_online/esi/models/market_history.rb +1 -1
  84. data/lib/eve_online/esi/models/market_price.rb +29 -0
  85. data/lib/eve_online/esi/models/moon.rb +1 -1
  86. data/lib/eve_online/esi/models/notification.rb +1 -1
  87. data/lib/eve_online/esi/models/offer_required_item.rb +1 -1
  88. data/lib/eve_online/esi/models/online.rb +1 -1
  89. data/lib/eve_online/esi/models/planet.rb +1 -1
  90. data/lib/eve_online/esi/models/planet_short.rb +1 -1
  91. data/lib/eve_online/esi/models/position.rb +1 -1
  92. data/lib/eve_online/esi/models/public_contract.rb +98 -0
  93. data/lib/eve_online/esi/models/public_contract_item.rb +59 -0
  94. data/lib/eve_online/esi/models/race.rb +3 -3
  95. data/lib/eve_online/esi/models/region.rb +5 -6
  96. data/lib/eve_online/esi/models/server_status.rb +1 -1
  97. data/lib/eve_online/esi/models/skill.rb +1 -1
  98. data/lib/eve_online/esi/models/skill_queue_entry.rb +1 -1
  99. data/lib/eve_online/esi/models/standing.rb +1 -1
  100. data/lib/eve_online/esi/models/star.rb +1 -1
  101. data/lib/eve_online/esi/models/stargate.rb +8 -2
  102. data/lib/eve_online/esi/models/station.rb +1 -1
  103. data/lib/eve_online/esi/models/system.rb +1 -1
  104. data/lib/eve_online/esi/models/system_jump.rb +1 -1
  105. data/lib/eve_online/esi/models/system_kill.rb +1 -1
  106. data/lib/eve_online/esi/models/type.rb +1 -1
  107. data/lib/eve_online/esi/models/{wallet_journal_entry.rb → wallet_journal.rb} +4 -4
  108. data/lib/eve_online/esi/models/wallet_transaction.rb +66 -0
  109. data/lib/eve_online/esi/models/war.rb +1 -1
  110. data/lib/eve_online/esi/public_contract.rb +40 -0
  111. data/lib/eve_online/esi/public_contracts.rb +40 -0
  112. data/lib/eve_online/esi/universe_region.rb +2 -2
  113. data/lib/eve_online/esi/universe_stargate.rb +1 -1
  114. data/lib/eve_online/exceptions/error_limited.rb +8 -0
  115. data/lib/eve_online/formulas/blueprint_copy_time.rb +47 -0
  116. data/lib/eve_online/version.rb +1 -1
  117. metadata +32 -15
  118. data/lib/eve_online/esi/character_bookmark_folders.rb +0 -41
  119. data/lib/eve_online/esi/models/bookmark.rb +0 -71
  120. data/lib/eve_online/esi/models/bookmark_folder.rb +0 -24
  121. data/lib/eve_online/esi/models/stargate_destination.rb +0 -24
@@ -19,7 +19,7 @@ module EveOnline
19
19
  tax_rate: tax_rate,
20
20
  ticker: ticker,
21
21
  corporation_url: corporation_url,
22
- war_eligible: war_eligible,
22
+ war_eligible: war_eligible
23
23
  }
24
24
  end
25
25
 
@@ -9,7 +9,7 @@ module EveOnline
9
9
  alliance_id: alliance_id,
10
10
  is_deleted: is_deleted,
11
11
  record_id: record_id,
12
- start_date: start_date,
12
+ start_date: start_date
13
13
  }
14
14
  end
15
15
 
@@ -27,7 +27,7 @@ module EveOnline
27
27
  runs: runs,
28
28
  start_date: start_date,
29
29
  status: status,
30
- successful_runs: successful_runs,
30
+ successful_runs: successful_runs
31
31
  }
32
32
  end
33
33
 
@@ -20,7 +20,7 @@ module EveOnline
20
20
  type_id: type_id,
21
21
  volume_remain: volume_remain,
22
22
  volume_total: volume_total,
23
- wallet_division: wallet_division,
23
+ wallet_division: wallet_division
24
24
  }
25
25
  end
26
26
 
@@ -9,7 +9,7 @@ module EveOnline
9
9
  alliance_id: alliance_id,
10
10
  corporation_id: corporation_id,
11
11
  isk_destroyed: isk_destroyed,
12
- ships_killed: ships_killed,
12
+ ships_killed: ships_killed
13
13
  }
14
14
  end
15
15
 
@@ -15,7 +15,7 @@ module EveOnline
15
15
  name: name,
16
16
  published: published,
17
17
  stackable: stackable,
18
- unit_id: unit_id,
18
+ unit_id: unit_id
19
19
  }
20
20
  end
21
21
 
@@ -7,7 +7,7 @@ module EveOnline
7
7
  def as_json
8
8
  {
9
9
  attribute_id: attribute_id,
10
- value: value,
10
+ value: value
11
11
  }
12
12
  end
13
13
 
@@ -25,7 +25,7 @@ module EveOnline
25
25
  published: published,
26
26
  range_attribute_id: range_attribute_id,
27
27
  range_chance: range_chance,
28
- tracking_speed_attribute_id: tracking_speed_attribute_id,
28
+ tracking_speed_attribute_id: tracking_speed_attribute_id
29
29
  }
30
30
  end
31
31
 
@@ -11,7 +11,7 @@ module EveOnline
11
11
  func: func,
12
12
  modified_attribute_id: modified_attribute_id,
13
13
  modifying_attribute_id: modifying_attribute_id,
14
- operator: operator,
14
+ operator: operator
15
15
  }
16
16
  end
17
17
 
@@ -7,7 +7,7 @@ module EveOnline
7
7
  def as_json
8
8
  {
9
9
  effect_id: effect_id,
10
- is_default: is_default,
10
+ is_default: is_default
11
11
  }
12
12
  end
13
13
 
@@ -10,7 +10,7 @@ module EveOnline
10
10
  event_id: event_id,
11
11
  event_response: event_response,
12
12
  importance: importance,
13
- title: title,
13
+ title: title
14
14
  }
15
15
  end
16
16
 
@@ -15,7 +15,7 @@ module EveOnline
15
15
  owner_type: owner_type,
16
16
  event_response: event_response,
17
17
  text: text,
18
- title: title,
18
+ title: title
19
19
  }
20
20
  end
21
21
 
@@ -15,7 +15,7 @@ module EveOnline
15
15
  size_factor: size_factor,
16
16
  solar_system_id: solar_system_id,
17
17
  station_count: station_count,
18
- station_system_count: station_system_count,
18
+ station_system_count: station_system_count
19
19
  }
20
20
  end
21
21
 
@@ -8,7 +8,7 @@ module EveOnline
8
8
  {
9
9
  jump_fatigue_expire_date: jump_fatigue_expire_date,
10
10
  last_jump_date: last_jump_date,
11
- last_update_date: last_update_date,
11
+ last_update_date: last_update_date
12
12
  }
13
13
  end
14
14
 
@@ -13,7 +13,7 @@ module EveOnline
13
13
  sof_dna: sof_dna,
14
14
  sof_fation_name: sof_fation_name,
15
15
  sof_hull_name: sof_hull_name,
16
- sof_race_name: sof_race_name,
16
+ sof_race_name: sof_race_name
17
17
  }
18
18
  end
19
19
 
@@ -9,7 +9,7 @@ module EveOnline
9
9
  category_id: category_id,
10
10
  group_id: group_id,
11
11
  name: name,
12
- published: published,
12
+ published: published
13
13
  }
14
14
  end
15
15
 
@@ -7,7 +7,7 @@ module EveOnline
7
7
  def as_json
8
8
  {
9
9
  location_id: location_id,
10
- location_type: location_type,
10
+ location_type: location_type
11
11
  }
12
12
  end
13
13
 
@@ -9,7 +9,7 @@ module EveOnline
9
9
  jump_clone_id: jump_clone_id,
10
10
  location_id: location_id,
11
11
  location_type: location_type,
12
- name: name,
12
+ name: name
13
13
  }
14
14
  end
15
15
 
@@ -0,0 +1,47 @@
1
+ # frozen_string_literal: true
2
+
3
+ module EveOnline
4
+ module ESI
5
+ module Models
6
+ class Killmail < Base
7
+ def as_json
8
+ {
9
+ killmail_id: killmail_id,
10
+ killmail_time: killmail_time,
11
+ moon_id: moon_id,
12
+ solar_system_id: solar_system_id,
13
+ war_id: war_id
14
+ }
15
+ end
16
+
17
+ def killmail_id
18
+ options["killmail_id"]
19
+ end
20
+
21
+ def killmail_time
22
+ killmail_time = options["killmail_time"]
23
+
24
+ parse_datetime_with_timezone(killmail_time) if killmail_time
25
+ end
26
+
27
+ def moon_id
28
+ options["moon_id"]
29
+ end
30
+
31
+ def solar_system_id
32
+ options["solar_system_id"]
33
+ end
34
+
35
+ def war_id
36
+ options["war_id"]
37
+ end
38
+
39
+ # def attackers
40
+ # end
41
+ #
42
+ # def victim
43
+ # end
44
+ end
45
+ end
46
+ end
47
+ end
@@ -7,7 +7,7 @@ module EveOnline
7
7
  def as_json
8
8
  {
9
9
  killmail_hash: killmail_hash,
10
- killmail_id: killmail_id,
10
+ killmail_id: killmail_id
11
11
  }
12
12
  end
13
13
 
@@ -7,7 +7,7 @@ module EveOnline
7
7
  def as_json
8
8
  {
9
9
  corporation_id: corporation_id,
10
- loyalty_points: loyalty_points,
10
+ loyalty_points: loyalty_points
11
11
  }
12
12
  end
13
13
 
@@ -11,7 +11,7 @@ module EveOnline
11
11
  lp_cost: lp_cost,
12
12
  offer_id: offer_id,
13
13
  quantity: quantity,
14
- type_id: type_id,
14
+ type_id: type_id
15
15
  }
16
16
  end
17
17
 
@@ -0,0 +1,49 @@
1
+ # frozen_string_literal: true
2
+
3
+ module EveOnline
4
+ module ESI
5
+ module Models
6
+ class Mail < Base
7
+ def as_json
8
+ {
9
+ body: body,
10
+ from_id: from_id,
11
+ read: read,
12
+ subject: subject,
13
+ timestamp: timestamp
14
+ }
15
+ end
16
+
17
+ def body
18
+ options["body"]
19
+ end
20
+
21
+ def from_id
22
+ options["from"]
23
+ end
24
+
25
+ def read
26
+ options["read"]
27
+ end
28
+
29
+ def subject
30
+ options["subject"]
31
+ end
32
+
33
+ def timestamp
34
+ timestamp = options["timestamp"]
35
+
36
+ parse_datetime_with_timezone(timestamp) if timestamp
37
+ end
38
+
39
+ def label_ids
40
+ options["labels"]
41
+ end
42
+
43
+ def recipients
44
+ @recipients ||= MailRecipients.new(options["recipients"]).mail_recipients
45
+ end
46
+ end
47
+ end
48
+ end
49
+ end
@@ -0,0 +1,34 @@
1
+ # frozen_string_literal: true
2
+
3
+ module EveOnline
4
+ module ESI
5
+ module Models
6
+ class MailLabel < Base
7
+ def as_json
8
+ {
9
+ color: color,
10
+ label_id: label_id,
11
+ name: name,
12
+ unread_count: unread_count
13
+ }
14
+ end
15
+
16
+ def color
17
+ options["color"]
18
+ end
19
+
20
+ def label_id
21
+ options["label_id"]
22
+ end
23
+
24
+ def name
25
+ options["name"]
26
+ end
27
+
28
+ def unread_count
29
+ options["unread_count"]
30
+ end
31
+ end
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ module EveOnline
4
+ module ESI
5
+ module Models
6
+ class MailRecipient < Base
7
+ def as_json
8
+ {
9
+ recipient_id: recipient_id,
10
+ recipient_type: recipient_type
11
+ }
12
+ end
13
+
14
+ def recipient_id
15
+ options["recipient_id"]
16
+ end
17
+
18
+ def recipient_type
19
+ options["recipient_type"]
20
+ end
21
+ end
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ module EveOnline
4
+ module ESI
5
+ module Models
6
+ class MailRecipients < Base
7
+ def mail_recipients
8
+ output = []
9
+
10
+ return output unless options.is_a?(Array)
11
+
12
+ options.each do |mail_recipient|
13
+ output << MailRecipient.new(mail_recipient)
14
+ end
15
+
16
+ output
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
@@ -9,7 +9,7 @@ module EveOnline
9
9
  description: description,
10
10
  market_group_id: market_group_id,
11
11
  name: name,
12
- parent_group_id: parent_group_id,
12
+ parent_group_id: parent_group_id
13
13
  }
14
14
  end
15
15
 
@@ -11,7 +11,7 @@ module EveOnline
11
11
  highest: highest,
12
12
  lowest: lowest,
13
13
  order_count: order_count,
14
- volume: volume,
14
+ volume: volume
15
15
  }
16
16
  end
17
17
 
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ module EveOnline
4
+ module ESI
5
+ module Models
6
+ class MarketPrice < Base
7
+ def as_json
8
+ {
9
+ adjusted_price: adjusted_price,
10
+ average_price: average_price,
11
+ type_id: type_id
12
+ }
13
+ end
14
+
15
+ def adjusted_price
16
+ options["adjusted_price"]
17
+ end
18
+
19
+ def average_price
20
+ options["average_price"]
21
+ end
22
+
23
+ def type_id
24
+ options["type_id"]
25
+ end
26
+ end
27
+ end
28
+ end
29
+ end
@@ -8,7 +8,7 @@ module EveOnline
8
8
  {
9
9
  moon_id: moon_id,
10
10
  name: name,
11
- system_id: system_id,
11
+ system_id: system_id
12
12
  }
13
13
  end
14
14