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
//! Object-oriented programming (OOP) has been around since the 1960s and was first introduced in the late 1950s
//! in artificial intelligence by an MMIT group. It is no wonder then that over the years, the concept of objects
//! being represented by classes and attributes with inheritanted behavior.
//!
//! Rust addresses this design by providing structures, traits, and implementations. However, the native ability to
//! `extend` a class (like in other languages) makes OOP a bit of a challenge. To address this gap, `Scaffolding` utilizes
//! Rust's [procedural macros](https://doc.rust-lang.org/reference/procedural-macros.html) to mimic the ability to
//! `extend` a class - both data structure and behavior.
//!
//! ## Scaffolding Concept
//! 1. A class that `extends` the "Scaffolding class" should inherate all the "parent" data structure and behavior,
//! as well as append the "child" specific data structure and behavior from the generic type being extended.
//! 2. The developer should have the flexibility to adopt the default "parent" characteristics or overwrite them as desired.
//! 3. There are common class attributes that are required in order to manage it using CRUD
//! + `id` - The unique identifier of the object.
//! + `created_dtm` - The unix epoch (UTC) representation of when the object was created
//! + `modified_dtm` - The unix epoch (UTC) representation of when the object was last updated
//! + `inactive_dtm` - The unix epoch (UTC) representation of when the object was/will be considered obsolete
//! + `expired_dtm` - The unix epoch (UTC) representation of when the object was/will be ready for deletion
//! + `activity` - The list of actions performed on the object
//! 4. There is common class behaviors that are required in order to manage it using CRUD
//! + The `id` is not optional. It must be either provided or automatically generated during instantiation.
//! This can be done by calling the `Scaffolding` trait's `id()` method
//! + The `created_dtm` is not optional. It must be either provided or automatically generated during instantiation.
//! This can be done by calling one of the `Scaffolding` trait's many datetime related methods, (e.g.: `now()`)
//! + The `modified_dtm` is not optional. It must be either provided or automatically generated during instantiation or updates to the object.
//! This can be done by calling one of the `Scaffolding` trait's many datetime related methods, (e.g.: `now()`)
//! + The `inactive_dtm` is not optional. It must be either provided or automatically generated during instantiation or updates to the object.
//! This can be done by calling one of the `Scaffolding` trait's many datetime related methods, (e.g.: `add_months()` in conjuctions with `now()`)
//! + The `expire_dtm` is not optional. It must be either provided or automatically generated during instantiation or updates to the object.
//! This can be done by calling one of the `Scaffolding` trait's many datetime related methods, (e.g.: `never()`)
//! + The `activity` is required and by default is an empty list of activity
//!
//! ### Example
//! Add Scaffolding to a `struct` and `impl` `::new()` using macros and defaults
//! ```rust
//! extern crate scaffolding_core;
//!
//! use scaffolding_core::*;
//! use scaffolding_macros::*;
//! use serde_derive::{Deserialize, Serialize};
//!
//! // (1) Define the structure - Required
//! #[scaffolding_struct]
//! #[derive(Debug, Clone, Deserialize, Serialize, Scaffolding)]
//! struct MyEntity {
//! a: bool,
//! b: String,
//! }
//!
//! impl MyEntity {
//! // (2) Define the constructor - Optional
//! // Note: Any of the Scaffodling attributes that are set here
//! // will not be overwritten when generated. For example
//! // the `id` attribute, if uncommented, would be ignored.
//! #[scaffolding_fn]
//! fn new(arg: bool) -> Self {
//! let msg = format!("You said it is {}", arg);
//! Self {
//! // id: "my unique identitifer".to_string(),
//! a: arg,
//! b: msg
//! }
//! }
//!
//! fn my_func(&self) -> String {
//! "my function".to_string()
//! }
//! }
//!
//! let mut entity = MyEntity::new(true);
//!
//! /* scaffolding attributes */
//! assert_eq!(entity.id.len(), "54324f57-9e6b-4142-b68d-1d4c86572d0a".len());
//! assert_eq!(entity.created_dtm, defaults::now());
//! assert_eq!(entity.modified_dtm, defaults::now());
//! // becomes inactive in 90 days
//! assert_eq!(entity.inactive_dtm, defaults::add_days(defaults::now(), 90));
//! // expires in 3 years
//! assert_eq!(entity.expired_dtm, defaults::add_years(defaults::now(), 3));
//!
//! /* use the activity log functionality */
//! // (1) Log an activity
//! entity.log_activity("cancelled".to_string(), "The customer has cancelled their service".to_string());
//! // (2) Get activities
//! assert_eq!(entity.get_activity("cancelled".to_string()).len(), 1);
//!
//! // extended attributes
//! assert_eq!(entity.a, true);
//! assert_eq!(entity.b, "You said it is true");
//!
//! // extended behavior
//! assert_eq!(entity.my_func(), "my function");
//! ```
#[macro_use]
extern crate serde_derive;
extern crate serde_json;
use errors::*;
use regex::Regex;
use serde::de::DeserializeOwned;
use serde::Serialize;
use serde_json::Value;
/// Supporting Classes
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct ActivityItem {
// The timestamp when the action occurred
pub created_dtm: i64,
// The textual name of the action that occurred
pub action: String,
// The textual description of the action that occurred
pub description: String,
}
impl ActivityItem {
/// This is the constructor function.
///
/// #Example
///
/// ```rust
/// // extern crate scaffolding_core;
///
/// use scaffolding_core::{defaults, ActivityItem};
///
/// let mut activity_item = ActivityItem::new("updated".to_string(), "This was updated".to_string());
/// ```
pub fn new(name: String, descr: String) -> Self {
Self {
created_dtm: defaults::now(),
action: name,
description: descr,
}
}
/// This function instantiates an ActivityItem from a JSON string.
///
/// #Example
///
/// ```rust
/// use scaffolding_core::ActivityItem;
/// use serde_derive::Deserialize;
///
/// let serialized = r#"{
/// "created_dtm":1711760135,
/// "action":"updated",
/// "description":"The object has been updated."
/// }"#;
/// let mut activity_item = ActivityItem::deserialized(&serialized.as_bytes()).unwrap();
///
/// assert_eq!(activity_item.created_dtm, 1711760135);
/// assert_eq!(activity_item.action, "updated".to_string());
/// assert_eq!(activity_item.description, "The object has been updated.".to_string());
/// ```
pub fn deserialized(serialized: &[u8]) -> Result<ActivityItem, DeserializeError> {
match serde_json::from_slice(&serialized) {
Ok(item) => Ok(item),
Err(err) => {
println!("{}", err);
Err(DeserializeError)
}
}
}
/// This function converts the ActivityItem to a serialize JSON string.
///
/// #Example
///
/// ```rust
/// use scaffolding_core::ActivityItem;
/// use serde_derive::Serialize;
///
///
/// let mut activity_item = ActivityItem::new("updated".to_string(), "This was updated".to_string());
/// let json = activity_item.serialize();
///
/// println!("{}", json);
/// ```
pub fn serialize(&mut self) -> String {
serde_json::to_string(&self).unwrap()
}
}
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct Address {
// The unique identifier of the note
pub id: String,
// The timestamp when the note was created
pub created_dtm: i64,
// The timestamp when the note was last modified
pub modified_dtm: i64,
// The type of address, (e.g.: Billing, Shipping, Home, Work, etc.)
pub category: String,
// The first line of the address should contain the location's full name
pub line_1: String,
// The second line of the address should include the house number and street address/ PO box address
pub line_2: String,
// The third line of the address should include the city name followed by province, state, or county name and postal code
pub line_3: String,
// The fourth line of the address including the country
pub line_4: String,
// The country code of the location (Use Alpha 3 codes)
pub country_code: String,
}
impl Address {
/// This is the constructor function.
///
/// #Example
///
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::Address;
///
/// fn main() {
/// let address = Address::new(
/// "shipping".to_string(),
/// "acmes company".to_string(),
/// "14 Main Street".to_string(),
/// "Big City, NY 038845".to_string(),
/// "USA".to_string(),
/// "USA".to_string(),
///
/// );
///
/// // scaffolding attributes
/// println!("{}", address.id);
/// println!("{}", address.created_dtm);
/// println!("{}", address.modified_dtm,);
/// }
/// ```
pub fn new(
category: String,
line_1: String,
line_2: String,
line_3: String,
line_4: String,
country_code: String,
) -> Self {
Self {
id: defaults::id(),
created_dtm: defaults::now(),
modified_dtm: defaults::now(),
category: category,
line_1: line_1,
line_2: line_2,
line_3: line_3,
line_4: line_4,
country_code: country_code,
}
}
/// This function instantiates an Address from a JSON string.
///
/// #Example
///
/// ```rust
/// use scaffolding_core::Address;
/// use serde_derive::Deserialize;
///
/// let serialized = r#"{
/// "id":"2d624160-16b1-49ce-9b90-09a82127d6ac",
/// "created_dtm":1711833619,
/// "modified_dtm":1711833619,
/// "category":"shipping",
/// "line_1":"acmes company",
/// "line_2":"14 Main Street",
/// "line_3":"Big City, NY 038845",
/// "line_4":"United States",
/// "country_code": "USA"
/// }"#;
/// let mut address = Address::deserialized(&serialized.as_bytes()).unwrap();
///
/// assert_eq!(address.created_dtm, 1711833619);
/// assert_eq!(address.modified_dtm, 1711833619);
/// assert_eq!(address.category, "shipping".to_string());
/// ```
pub fn deserialized(serialized: &[u8]) -> Result<Address, DeserializeError> {
match serde_json::from_slice(&serialized) {
Ok(item) => Ok(item),
Err(err) => {
println!("{}", err);
Err(DeserializeError)
}
}
}
/// This function converts the Address to a serialize JSON string.
///
/// #Example
///
/// ```rust
/// use scaffolding_core::{defaults, Address};
/// use serde_derive::{Serialize};
///
/// let mut address = Address::new(
/// "shipping".to_string(),
/// "acmes company".to_string(),
/// "14 Main Street".to_string(),
/// "Big City, NY 038845".to_string(),
/// "USA".to_string(),
/// "USA".to_string()
/// );
/// println!("{}", address.serialize());
/// ```
pub fn serialize(&mut self) -> String {
serde_json::to_string(&self).unwrap()
}
/// This function updates the Address.
///
/// #Example
///
/// ```rust
/// use scaffolding_core::{defaults, Address};
/// use serde_derive::{Serialize};
///
/// let mut address = Address::new(
/// "shipping".to_string(),
/// "acmes company".to_string(),
/// "14 Main Street".to_string(),
/// "Big City, NY 038845".to_string(),
/// "USA".to_string(),
/// "USA".to_string()
/// );
///
/// address.update(
/// "billing".to_string(),
/// "acmes company".to_string(),
/// "14 Main Street".to_string(),
/// "Big City, NY 038845".to_string(),
/// "USA".to_string(),
/// "USA".to_string());
///
/// assert_eq!(address.category, "billing".to_string());
/// ```
pub fn update(
&mut self,
category: String,
line_1: String,
line_2: String,
line_3: String,
line_4: String,
country_code: String,
) {
self.category = category;
self.line_1 = line_1;
self.line_2 = line_2;
self.line_3 = line_3;
self.line_4 = line_4;
self.country_code = country_code;
self.modified_dtm = defaults::now();
}
}
pub struct Countries {
// The list of countries
pub list: Vec<Country>,
}
impl Countries {
/// This is the constructor function.
///
/// #Example
///
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::Countries;
///
/// fn main() {
/// let countries = Countries::new();
/// }
/// ```
pub fn new() -> Self {
let data = include_str!("countries.json");
let array: Value = serde_json::from_str(data).unwrap();
let countries: Vec<Country> = array
.as_array()
.unwrap()
.iter()
.map(|c| {
Country::new(
c["country_name"].as_str().unwrap().to_string(),
c["phone_code"].as_str().unwrap().to_string(),
c["iso_2_code"].as_str().unwrap().to_string(),
c["iso_3_code"].as_str().unwrap().to_string(),
)
})
.collect();
Self { list: countries }
}
/// Verifies a Country
///
/// ### Example
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::{Countries, Country};
///
/// fn main() {
/// let countries = Countries::new();
/// let country = Country::new(
/// "United States".to_string(),
/// "1".to_string(),
/// "US".to_string(),
/// "USA".to_string()
/// );
///
/// assert_eq!(countries.is_valid(country), true);
/// }
/// ```
pub fn is_valid(&self, country: Country) -> bool {
let found = self.list.iter().filter(|c| {
c.name == country.name
&& c.phone_code == country.phone_code
&& c.iso_2_code == country.iso_2_code
&& c.iso_3_code == country.iso_3_code
});
match found.count() {
0 => return false,
_ => return true,
}
}
/// Retrieves a Country based on the ISO 2 Code
///
/// ### Example
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::{Countries, Country};
///
/// fn main() {
/// let countries = Countries::new();
/// let country = countries.get_country_by_iso_2_code("US".to_string()).unwrap();
///
/// assert_eq!(country.name, "United States");
/// assert_eq!(country.phone_code, "1");
/// assert_eq!(country.iso_2_code, "US");
/// assert_eq!(country.iso_3_code, "USA");
/// }
/// ```
pub fn get_country_by_iso_2_code(&self, iso_2_code: String) -> Option<&Country> {
let found = self.list.iter().filter(|c| c.iso_2_code == iso_2_code);
return found.last();
}
/// Retrieves a Country based on the ISO 3 Code
///
/// ### Example
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::{Countries, Country};
///
/// fn main() {
/// let countries = Countries::new();
/// let country = countries.get_country_by_iso_3_code("USA".to_string()).unwrap();
///
/// assert_eq!(country.name, "United States");
/// assert_eq!(country.phone_code, "1");
/// assert_eq!(country.iso_2_code, "US");
/// assert_eq!(country.iso_3_code, "USA");
/// }
/// ```
pub fn get_country_by_iso_3_code(&self, iso_3_code: String) -> Option<&Country> {
let found = self.list.iter().filter(|c| c.iso_3_code == iso_3_code);
return found.last();
}
/// Retrieves a Country based on the international phone code
///
/// ### Example
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::{Countries, Country};
///
/// fn main() {
/// let countries = Countries::new();
/// let country = countries.get_country_by_phone_code("1".to_string()).unwrap();
///
/// assert_eq!(country.name, "United States");
/// assert_eq!(country.phone_code, "1");
/// assert_eq!(country.iso_2_code, "US");
/// assert_eq!(country.iso_3_code, "USA");
/// }
/// ```
pub fn get_country_by_phone_code(&self, phone_code: String) -> Option<&Country> {
let found = self.list.iter().filter(|c| c.phone_code == phone_code);
return found.last();
}
}
// A country definition
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct Country {
// Textual name of the coutnry
pub name: String,
// The code used for international phone calls
pub phone_code: String,
// The 2 char abbreviation
pub iso_2_code: String,
// The 3 char abbreviation
pub iso_3_code: String,
}
impl Country {
/// This is the constructor function.
///
/// #Example
///
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::Country;
///
/// fn main() {
/// let country = Country::new("United States".to_string(), "1".to_string(), "US".to_string(), "USA".to_string());
///
/// assert_eq!(country.name, "United States".to_string());
/// assert_eq!(country.phone_code, "1".to_string());
/// assert_eq!(country.iso_2_code, "US".to_string());
/// assert_eq!(country.iso_3_code, "USA".to_string());
/// }
/// ```
pub fn new(name: String, phone_code: String, iso_2_code: String, iso_3_code: String) -> Self {
Self {
name: name,
phone_code: phone_code,
iso_2_code: iso_2_code,
iso_3_code: iso_3_code,
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct EmailAddress {
// The unique identifier of the note
pub id: String,
// The timestamp when the note was created
pub created_dtm: i64,
// The timestamp when the note was last modified
pub modified_dtm: i64,
// The type of email address, (e.g.: Login, Personal, Work, Primary Contact, Assistant, etc.)
pub category: String,
// The email address
pub address: String,
}
impl EmailAddress {
/// This is the constructor function.
///
/// #Example
///
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::EmailAddress;
///
/// fn main() {
/// let email = EmailAddress::new(
/// "home".to_string(),
/// "myemail@example.com".to_string(),
/// );
///
/// // scaffolding attributes
/// println!("{}", email.id);
/// println!("{}", email.created_dtm);
/// println!("{}", email.modified_dtm,);
/// }
/// ```
pub fn new(category: String, address: String) -> Self {
Self {
id: defaults::id(),
created_dtm: defaults::now(),
modified_dtm: defaults::now(),
category: category,
address: address,
}
}
/// This function instantiates a EmailAddress from a JSON string.
///
/// #Example
///
/// ```rust
/// use scaffolding_core::EmailAddress;
/// use serde_derive::Deserialize;
///
/// let serialized = r#"{
/// "id":"2d624160-16b1-49ce-9b90-09a82127d6ac",
/// "created_dtm":1711833619,
/// "modified_dtm":1711833619,
/// "category":"home",
/// "address":"myemail@example.com"
/// }"#;
/// let mut email = EmailAddress::deserialized(&serialized.as_bytes()).unwrap();
///
/// assert_eq!(email.created_dtm, 1711833619);
/// assert_eq!(email.modified_dtm, 1711833619);
/// assert_eq!(email.category, "home".to_string());
/// ```
pub fn deserialized(serialized: &[u8]) -> Result<EmailAddress, DeserializeError> {
match serde_json::from_slice(&serialized) {
Ok(item) => Ok(item),
Err(err) => {
println!("{}", err);
Err(DeserializeError)
}
}
}
/// This function performs a quick check to see if the email address is properly formatted.
/// NOTE: This is not a validation that the email address is real.
///
/// #Example
///
/// ```rust
/// use scaffolding_core::EmailAddress;
/// use serde_derive::Deserialize;
///
/// let email = EmailAddress::new(
/// "home".to_string(),
/// "myemail@example.com".to_string(),
/// );
///
/// assert_eq!(email.is_valid(), true);
/// ```
pub fn is_valid(&self) -> bool {
// use regex::Regex;
let exp = r#"(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])"#;
let re = Regex::new(exp).unwrap();
re.is_match(&self.address)
}
/// This function converts the EmailAddress to a serialize JSON string.
///
/// #Example
///
/// ```rust
/// use scaffolding_core::{defaults, EmailAddress};
/// use serde_derive::{Serialize};
///
/// let mut email = EmailAddress::new(
/// "home".to_string(),
/// "myemail@example.com".to_string(),
/// );
/// println!("{}", email.serialize());
/// ```
pub fn serialize(&mut self) -> String {
serde_json::to_string(&self).unwrap()
}
}
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct Note {
// The unique identifier of the note
pub id: String,
// The timestamp when the note was created
pub created_dtm: i64,
// The timestamp when the note was last modified
pub modified_dtm: i64,
// The identifier of the author of the note
pub author: String,
// The identifier of access rule of the note, (e.g.: public, internal, confidential)
pub access: String,
// The comment of the note
pub content: Vec<u8>,
}
impl Note {
/// This is the constructor function.
///
/// #Example
///
/// ```rust
/// use scaffolding_core::{defaults, Note};
///
/// let note = Note::new("fsmith".to_string(), "This was updated".as_bytes().to_vec(), None);
/// ```
pub fn new(auth: String, cont: Vec<u8>, acc: Option<String>) -> Self {
Self {
id: defaults::id(),
created_dtm: defaults::now(),
modified_dtm: defaults::now(),
author: auth,
access: match acc {
Some(a) => a,
None => defaults::access(),
},
content: cont,
}
}
/// This function returns the content of the note as a string.
///
/// #Example
///
/// ```rust
/// use scaffolding_core::{defaults, Note};
///
/// let note = Note::new("fsmith".to_string(), "This was updated".as_bytes().to_vec(), None);
/// assert_eq!(note.content_as_string().unwrap(), "This was updated".to_string());
/// ```
pub fn content_as_string(&self) -> Result<String, String> {
String::from_utf8(self.content.clone())
.map_err(|non_utf8| String::from_utf8_lossy(non_utf8.as_bytes()).into_owned())
}
/// This function instantiates an ActivityItem from a JSON string.
///
/// #Example
///
/// ```rust
/// use scaffolding_core::Note;
/// use serde_derive::Deserialize;
///
/// let serialized = r#"{
/// "id":"2d624160-16b1-49ce-9b90-09a82127d6ac",
/// "created_dtm":1711833619,
/// "modified_dtm":1711833619,
/// "author":"fsmith",
/// "access":"public",
/// "content":[84,104,105,115,32,119,97,115,32,117,112,100,97,116,101,100]
/// }"#;
/// let mut note = Note::deserialized(&serialized.as_bytes()).unwrap();
///
/// assert_eq!(note.created_dtm, 1711833619);
/// assert_eq!(note.modified_dtm, 1711833619);
/// assert_eq!(note.author, "fsmith".to_string());
/// assert_eq!(note.access, "public".to_string());
/// assert_eq!(note.content, "This was updated".as_bytes().to_vec());
/// ```
pub fn deserialized(serialized: &[u8]) -> Result<Note, DeserializeError> {
match serde_json::from_slice(&serialized) {
Ok(item) => Ok(item),
Err(err) => {
println!("{}", err);
Err(DeserializeError)
}
}
}
/// This function converts the ActivityItem to a serialize JSON string.
///
/// #Example
///
/// ```rust
/// use scaffolding_core::{defaults, Note};
/// use serde_derive::{Serialize};
///
/// let mut note = Note::new("fsmith".to_string(), "This was updated".as_bytes().to_vec(), None);
/// println!("{}", note.serialize());
/// ```
pub fn serialize(&mut self) -> String {
serde_json::to_string(&self).unwrap()
}
/// This function updates the note and sets the modified_dtm.
/// The modified_dtm will not be changed if the attributes are written to directly.
///
/// #Example
///
/// ```rust
/// use scaffolding_core::{defaults, Note};
/// use serde_derive::Deserialize;
///
/// let serialized = r#"{
/// "id":"2d624160-16b1-49ce-9b90-09a82127d6ac",
/// "created_dtm":1711833619,
/// "modified_dtm":1711833619,
/// "author":"fsmith",
/// "access":"public",
/// "content":[84,104,105,115,32,119,97,115,32,117,112,100,97,116,101,100]
/// }"#;
/// let mut note = Note::deserialized(&serialized.as_bytes()).unwrap();
/// let first_modified = note.modified_dtm.clone();
///
/// note.update("fsmith".to_string(), "This was updated again".as_bytes().to_vec(), Some("private".to_string()));
///
/// assert_eq!(note.author, "fsmith".to_string());
/// assert_eq!(note.access, "private".to_string());
/// assert_eq!(note.content, "This was updated again".as_bytes().to_vec());
/// assert!(note.modified_dtm > first_modified);
/// ```
pub fn update(&mut self, auth: String, cont: Vec<u8>, acc: Option<String>) {
self.author = auth;
self.content = cont;
self.access = match acc {
Some(a) => a,
None => self.access.clone(),
};
self.modified_dtm = defaults::now();
}
}
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct PhoneNumber {
// The unique identifier of the note
pub id: String,
// The timestamp when the note was created
pub created_dtm: i64,
// The timestamp when the note was last modified
pub modified_dtm: i64,
// The type of address, (e.g.: Login, Personal, Work, Primary Contact, Assistant, etc.)
pub category: String,
// The phone number
pub number: String,
// The country code of the phone number (Use Alpha 3 codes)
pub country_code: String,
}
impl PhoneNumber {
/// This is the constructor function.
///
/// #Example
///
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::PhoneNumber;
///
/// fn main() {
/// let phone = PhoneNumber::new(
/// "home".to_string(),
/// "8482493561".to_string(),
/// "USA".to_string(),
/// );
///
/// // scaffolding attributes
/// println!("{}", phone.id);
/// println!("{}", phone.created_dtm);
/// println!("{}", phone.modified_dtm,);
/// }
/// ```
pub fn new(category: String, number: String, country_code: String) -> Self {
Self {
id: defaults::id(),
created_dtm: defaults::now(),
modified_dtm: defaults::now(),
category: category,
number: number,
country_code: country_code,
}
}
/// This function instantiates a PhoneNumber from a JSON string.
///
/// #Example
///
/// ```rust
/// use scaffolding_core::PhoneNumber;
/// use serde_derive::Deserialize;
///
/// let serialized = r#"{
/// "id":"2d624160-16b1-49ce-9b90-09a82127d6ac",
/// "created_dtm":1711833619,
/// "modified_dtm":1711833619,
/// "category":"home",
/// "number":"8482493561",
/// "country_code": "USA"
/// }"#;
/// let mut phone = PhoneNumber::deserialized(&serialized.as_bytes()).unwrap();
///
/// assert_eq!(phone.created_dtm, 1711833619);
/// assert_eq!(phone.modified_dtm, 1711833619);
/// assert_eq!(phone.category, "home".to_string());
/// ```
pub fn deserialized(serialized: &[u8]) -> Result<PhoneNumber, DeserializeError> {
match serde_json::from_slice(&serialized) {
Ok(item) => Ok(item),
Err(err) => {
println!("{}", err);
Err(DeserializeError)
}
}
}
/// This function converts the PhoneNumber to a serialize JSON string.
///
/// #Example
///
/// ```rust
/// use scaffolding_core::{defaults, PhoneNumber};
/// use serde_derive::{Serialize};
///
/// let mut phone = PhoneNumber::new(
/// "home".to_string(),
/// "8482493561".to_string(),
/// "USA".to_string(),
/// );
/// println!("{}", phone.serialize());
/// ```
pub fn serialize(&mut self) -> String {
serde_json::to_string(&self).unwrap()
}
}
/// The core behavior of a Scaffolding object
pub trait Scaffolding {
/// This function adds a ActivityItem to the activity log
///
/// #Example
///
/// ```rust
/// #[macro_use]
///
/// use scaffolding_core::{defaults, ActivityItem, Scaffolding};
/// use scaffolding_macros::*;
///
/// #[scaffolding_struct]
/// #[derive(Clone, Debug, Scaffolding)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let mut entity = MyEntity::new();
///
/// entity.log_activity("cancelled".to_string(), "The customer has cancelled their service".to_string());
/// assert_eq!(entity.activity.len(), 1);
/// ```
fn log_activity(&mut self, name: String, descr: String);
/// This function retrieves all the ActivityItems that have the specified action (name)
///
/// #Example
///
/// ```rust
/// #[macro_use]
///
/// use scaffolding_core::{defaults, ActivityItem, Scaffolding};
/// use scaffolding_macros::*;
///
/// #[scaffolding_struct]
/// #[derive(Clone, Debug, Scaffolding)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let mut entity = MyEntity::new();
///
/// entity.log_activity("ordered".to_string(), "The customer has place the order".to_string());
/// entity.log_activity("cancelled".to_string(), "The customer has cancelled their service".to_string());
/// assert_eq!(entity.get_activity("cancelled".to_string()).len(), 1);
/// ```
fn get_activity(&self, name: String) -> Vec<ActivityItem>;
/// This function instantiates an entity from a JSON string.
///
/// #Example
///
/// ```rust
/// #[macro_use]
///
/// use scaffolding_core::{defaults, ActivityItem, Scaffolding};
/// use scaffolding_macros::*;
/// use serde_derive::Deserialize;
///
/// #[scaffolding_struct]
/// #[derive(Clone, Debug, Deserialize, Scaffolding)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let json = r#"{
/// "id":"b4d6c6db-7468-400a-8536-a5e83b1f2bdc",
/// "created_dtm":1711802687,
/// "modified_dtm":1711802687,
/// "inactive_dtm":1719578687,
/// "expired_dtm":1806410687,
/// "activity":[
/// {
/// "created_dtm":1711802687,
/// "action":"updated",
/// "description":"The object has been updated"
/// },
/// {
/// "created_dtm":1711802687,
/// "action":"updated",
/// "description":"The object has been updated"
/// },
/// {
/// "created_dtm":1711802687,
/// "action":"cancelled",
/// "description":"The object has been cancelled"
/// }
/// ]
/// }"#;
/// let deserialized = MyEntity::deserialized::<MyEntity>(json.as_bytes()).unwrap();
///
/// assert_eq!(deserialized.id, "b4d6c6db-7468-400a-8536-a5e83b1f2bdc");
/// assert_eq!(deserialized.activity.len(), 3);
///
/// ```
fn deserialized<T: DeserializeOwned>(serialized: &[u8]) -> Result<T, DeserializeError> {
match serde_json::from_slice::<T>(&serialized) {
Ok(item) => Ok(item),
Err(err) => {
println!("{}", err);
Err(DeserializeError)
}
}
}
/// This function converts the entity to a serialize JSON string.
///
/// #Example
///
/// ```rust
/// #[macro_use]
///
/// use scaffolding_core::{defaults, ActivityItem, Scaffolding};
/// use scaffolding_macros::*;
/// use serde_derive::Serialize;
///
/// #[scaffolding_struct]
/// #[derive(Clone, Debug, Serialize, Scaffolding)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let mut entity = MyEntity::new();
/// let json_string = entity.serialize();
///
/// println!("{}", json_string);
/// ```
fn serialize(&mut self) -> String
where
Self: Serialize,
{
serde_json::to_string(&self).unwrap()
}
}
/// The addresses behavior of a Scaffolding object
pub trait ScaffoldingAddresses {
/// Retrieves a related Address to the Entity based on the specified id.
///
/// #Example
///
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::*;
/// use scaffolding_macros::*;
/// use serde_derive::{Deserialize, Serialize};
/// use std::collections::BTreeMap;
///
/// #[scaffolding_struct("addresses")]
/// #[derive(Clone, Debug, Deserialize, Serialize, Scaffolding, ScaffoldingAddresses)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn("addresses")]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let mut entity = MyEntity::new();
/// let id = entity.insert_address(
/// "shipping".to_string(),
/// "acmes company".to_string(),
/// "14 Main Street".to_string(),
/// "Big City, NY 038845".to_string(),
/// "USA".to_string(),
/// "USA".to_string(),
/// );
///
/// assert_eq!(entity.get_address(id).unwrap().category, "shipping".to_string());
/// ```
fn get_address(&self, id: String) -> Option<&Address>;
/// Insert or updates a related Address to the Entity and returns the id of the Address.
///
/// #Example
///
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::*;
/// use scaffolding_macros::*;
/// use serde_derive::{Deserialize, Serialize};
/// use std::collections::BTreeMap;
///
/// #[scaffolding_struct("addresses")]
/// #[derive(Clone, Debug, Deserialize, Serialize, Scaffolding, ScaffoldingAddresses)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn("addresses")]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let mut entity = MyEntity::new();
/// let _ = entity.insert_address(
/// "shipping".to_string(),
/// "acmes company".to_string(),
/// "14 Main Street".to_string(),
/// "Big City, NY 038845".to_string(),
/// "USA".to_string(),
/// "USA".to_string(),
/// );
///
/// assert_eq!(entity.addresses.len(), 1);
/// ```
fn insert_address(
&mut self,
category: String,
line_1: String,
line_2: String,
line_3: String,
line_4: String,
country_code: String,
) -> String;
/// Insert or updates a related Address to the Entity and returns the id of the Address for reference.
///
/// #Example
///
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::*;
/// use scaffolding_macros::*;
/// use serde_derive::{Deserialize, Serialize};
/// use std::collections::BTreeMap;
///
/// #[scaffolding_struct("addresses")]
/// #[derive(Clone, Debug, Deserialize, Serialize, Scaffolding, ScaffoldingAddresses)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn("addresses")]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let mut entity = MyEntity::new();
/// let id = entity.insert_address(
/// "shipping".to_string(),
/// "acmes company".to_string(),
/// "14 Main Street".to_string(),
/// "Big City, NY 038845".to_string(),
/// "USA".to_string(),
/// "USA".to_string(),
/// );
///
/// entity.modify_address(
/// id.clone(),
/// "billing".to_string(),
/// "acmes company".to_string(),
/// "14 Main Street".to_string(),
/// "Big City, NY 038845".to_string(),
/// "USA".to_string(),
/// "USA".to_string(),);
///
/// assert_eq!(entity.get_address(id).unwrap().category, "billing".to_string());
/// ```
fn modify_address(
&mut self,
id: String,
category: String,
line_1: String,
line_2: String,
line_3: String,
line_4: String,
country_code: String,
);
/// Retrieves all the Addresses with the specified category.
///
/// #Example
///
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::*;
/// use scaffolding_macros::*;
/// use serde_derive::{Deserialize, Serialize};
/// use std::collections::BTreeMap;
///
/// #[scaffolding_struct("addresses")]
/// #[derive(Clone, Debug, Deserialize, Serialize, Scaffolding, ScaffoldingAddresses)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn("addresses")]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let mut entity = MyEntity::new();
/// let address = entity.insert_address(
/// "shipping".to_string(),
/// "acmes company".to_string(),
/// "14 Main Street".to_string(),
/// "Big City, NY 038845".to_string(),
/// "USA".to_string(),
/// "USA".to_string(),
/// );
///
/// assert_eq!(entity.search_addresses_by_category("shipping".to_string()).len(), 1);
/// ```
fn search_addresses_by_category(&self, category: String) -> Vec<Address>;
/// Removes a related Address to the Entity.
///
/// #Example
///
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::*;
/// use scaffolding_macros::*;
/// use serde_derive::{Deserialize, Serialize};
/// use std::collections::BTreeMap;
///
/// #[scaffolding_struct("addresses")]
/// #[derive(Clone, Debug, Deserialize, Serialize, Scaffolding, ScaffoldingAddresses)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn("addresses")]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let mut entity = MyEntity::new();
/// let id = entity.insert_address(
/// "shipping".to_string(),
/// "acmes company".to_string(),
/// "14 Main Street".to_string(),
/// "Big City, NY 038845".to_string(),
/// "USA".to_string(),
/// "USA".to_string(),
/// );
/// assert_eq!(entity.addresses.len(), 1);
///
/// entity.remove_address(id);
/// assert_eq!(entity.addresses.len(), 0);
/// ```
fn remove_address(&mut self, id: String);
}
/// The email address behavior of a Scaffolding object
pub trait ScaffoldingEmailAddresses {
/// Retrieves a related EmailAddress based on the specific id.
///
/// #Example
///
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::*;
/// use scaffolding_macros::*;
/// use serde_derive::{Deserialize, Serialize};
/// use std::collections::BTreeMap;
///
/// #[scaffolding_struct("email_addresses")]
/// #[derive(Clone, Debug, Deserialize, Serialize, Scaffolding, ScaffoldingEmailAddresses)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn("email_addresses")]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let mut entity = MyEntity::new();
/// let id = entity.insert_email_address(
/// "home".to_string(),
/// "myemail@example.com".to_string(),
/// );
///
/// assert_eq!(entity.get_email_address(id).unwrap().address, "myemail@example.com".to_string());
/// ```
fn get_email_address(&self, id: String) -> Option<&EmailAddress>;
/// Adds a related PhoneNumber to the Entity and returns the id for reference.
///
/// #Example
///
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::*;
/// use scaffolding_macros::*;
/// use serde_derive::{Deserialize, Serialize};
/// use std::collections::BTreeMap;
///
/// #[scaffolding_struct("email_addresses")]
/// #[derive(Clone, Debug, Deserialize, Serialize, Scaffolding, ScaffoldingEmailAddresses)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn("email_addresses")]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let mut entity = MyEntity::new();
/// let _ = entity.insert_email_address(
/// "home".to_string(),
/// "myemail@example.com".to_string(),
/// );
///
/// assert_eq!(entity.email_addresses.len(), 1);
/// ```
fn insert_email_address(&mut self, category: String, address: String) -> String;
/// Retrieves all the EmailAddress with the specified category.
///
/// #Example
///
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::*;
/// use scaffolding_macros::*;
/// use serde_derive::{Deserialize, Serialize};
/// use std::collections::BTreeMap;
///
/// #[scaffolding_struct("email_addresses")]
/// #[derive(Clone, Debug, Deserialize, Serialize, Scaffolding, ScaffoldingEmailAddresses)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn("email_addresses")]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let mut entity = MyEntity::new();
/// let _ = entity.insert_email_address(
/// "home".to_string(),
/// "myemail@example.com".to_string(),
/// );
///
/// assert_eq!(entity.search_email_addresses_by_category("home".to_string()).len(), 1);
/// ```
fn search_email_addresses_by_category(&self, category: String) -> Vec<EmailAddress>;
/// Removes a related EmailAddress to the Entity.
///
/// #Example
///
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::*;
/// use scaffolding_macros::*;
/// use serde_derive::{Deserialize, Serialize};
/// use std::collections::BTreeMap;
///
/// #[scaffolding_struct("email_addresses")]
/// #[derive(Clone, Debug, Deserialize, Serialize, Scaffolding, ScaffoldingEmailAddresses)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn("email_addresses")]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let mut entity = MyEntity::new();
/// let id = entity.insert_email_address(
/// "home".to_string(),
/// "myemail@example.com".to_string(),
/// );
/// assert_eq!(entity.email_addresses.len(), 1);
///
/// entity.remove_email_address(id);
/// assert_eq!(entity.email_addresses.len(), 0);
/// ```
fn remove_email_address(&mut self, id: String);
}
/// The notes behavior of a Scaffolding object
pub trait ScaffoldingNotes {
/// Retrieves a related Note based on the specific id.
///
/// #Example
///
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::*;
/// use scaffolding_macros::*;
/// use serde_derive::{Deserialize, Serialize};
/// use std::collections::BTreeMap;
///
/// #[scaffolding_struct("notes")]
/// #[derive(Clone, Debug, Deserialize, Serialize, Scaffolding, ScaffoldingNotes)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn("notes")]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let mut entity = MyEntity::new();
/// let id = entity.insert_note(
/// "fsmith".to_string(),
/// "This was updated".as_bytes().to_vec(),
/// None,
/// );
///
/// assert_eq!(entity.get_note(id).unwrap().content_as_string().unwrap(), "This was updated".to_string());
/// ```
fn get_note(&self, id: String) -> Option<&Note>;
/// Inserts a related Note.
///
/// #Example
///
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::*;
/// use scaffolding_macros::*;
/// use serde_derive::{Deserialize, Serialize};
/// use std::collections::BTreeMap;
///
/// #[scaffolding_struct("notes")]
/// #[derive(Clone, Debug, Deserialize, Serialize, Scaffolding, ScaffoldingNotes)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn("notes")]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let mut entity = MyEntity::new();
/// let id = entity.insert_note(
/// "fsmith".to_string(),
/// "This was updated".as_bytes().to_vec(),
/// None,
/// );
///
/// assert_eq!(entity.notes.len(), 1);
/// ```
fn insert_note(&mut self, auth: String, cont: Vec<u8>, acc: Option<String>) -> String;
/// Updates a related Note based on the specified id.
///
/// #Example
///
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::*;
/// use scaffolding_macros::*;
/// use serde_derive::{Deserialize, Serialize};
/// use std::collections::BTreeMap;
///
/// #[scaffolding_struct("notes")]
/// #[derive(Clone, Debug, Deserialize, Serialize, Scaffolding, ScaffoldingNotes)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn("notes")]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let mut entity = MyEntity::new();
/// let id = entity.insert_note(
/// "fsmith".to_string(),
/// "This was updated".as_bytes().to_vec(),
/// None,
/// );
///
/// entity.modify_note(
/// id.clone(),
/// "fsmith".to_string(),
/// "This was updated again".as_bytes().to_vec(),
/// Some("private".to_string()),
/// );
/// ```
fn modify_note(&mut self, id: String, auth: String, cont: Vec<u8>, acc: Option<String>);
/// Searches the notes for specific string and returns all the notes that were found.
///
/// #Example
///
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::*;
/// use scaffolding_macros::*;
/// use serde_derive::{Deserialize, Serialize};
/// use std::collections::BTreeMap;
///
/// #[scaffolding_struct("notes")]
/// #[derive(Clone, Debug, Deserialize, Serialize, Scaffolding, ScaffoldingNotes)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn("notes")]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let mut entity = MyEntity::new();
///
/// let _ = entity.insert_note(
/// "fsmith".to_string(),
/// "This was updated".as_bytes().to_vec(),
/// None,
/// );
/// let _ = entity.insert_note(
/// "fsmith".to_string(),
/// "Something to find here".as_bytes().to_vec(),
/// None,
/// );
/// let _ = entity.insert_note(
/// "fsmith".to_string(),
/// "Nonething to find here".as_bytes().to_vec(),
/// Some("private".to_string()),
/// );
///
/// let search_results = entity.search_notes("thing".to_string());
///
/// assert_eq!(search_results.len(), 2);
/// ```
fn search_notes(&mut self, search: String) -> Vec<Note>;
/// Removes a note for specific id.
///
/// #Example
///
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::*;
/// use scaffolding_macros::*;
/// use serde_derive::{Deserialize, Serialize};
/// use std::collections::BTreeMap;
///
/// #[scaffolding_struct("notes")]
/// #[derive(Clone, Debug, Deserialize, Serialize, Scaffolding, ScaffoldingNotes)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn("notes")]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let mut entity = MyEntity::new();
///
/// let _ = entity.insert_note(
/// "fsmith".to_string(),
/// "This was updated".as_bytes().to_vec(),
/// None,
/// );
/// let id = entity.insert_note(
/// "fsmith".to_string(),
/// "Something to find here".as_bytes().to_vec(),
/// None,
/// );
/// let _ = entity.insert_note(
/// "fsmith".to_string(),
/// "Nonething to find here".as_bytes().to_vec(),
/// Some("private".to_string()),
/// );
///
/// entity.remove_note(id);
///
/// assert_eq!(entity.notes.len(), 2);
/// ```
fn remove_note(&mut self, id: String);
}
/// The phone number behavior of a Scaffolding object
pub trait ScaffoldingPhoneNumbers {
/// Retrieves a related PhoneNumber based on the specific id.
///
/// #Example
///
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::*;
/// use scaffolding_macros::*;
/// use serde_derive::{Deserialize, Serialize};
/// use std::collections::BTreeMap;
///
/// #[scaffolding_struct("phone_numbers")]
/// #[derive(Clone, Debug, Deserialize, Serialize, Scaffolding, ScaffoldingPhoneNumbers)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn("phone_numbers")]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let mut entity = MyEntity::new();
/// let id = entity.insert_phone_number(
/// "home".to_string(),
/// "8482493561".to_string(),
/// "USA".to_string(),
/// );
///
/// assert_eq!(entity.get_phone_number(id).unwrap().number, "8482493561".to_string());
/// ```
fn get_phone_number(&self, id: String) -> Option<&PhoneNumber>;
/// Adds a related PhoneNumber to the Entity and returns the id for reference.
///
/// #Example
///
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::*;
/// use scaffolding_macros::*;
/// use serde_derive::{Deserialize, Serialize};
/// use std::collections::BTreeMap;
///
/// #[scaffolding_struct("phone_numbers")]
/// #[derive(Clone, Debug, Deserialize, Serialize, Scaffolding, ScaffoldingPhoneNumbers)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn("phone_numbers")]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let mut entity = MyEntity::new();
/// let _ = entity.insert_phone_number(
/// "home".to_string(),
/// "8482493561".to_string(),
/// "USA".to_string(),
/// );
///
/// assert_eq!(entity.phone_numbers.len(), 1);
/// ```
fn insert_phone_number(
&mut self,
category: String,
number: String,
country_code: String,
) -> String;
/// Retrieves all the PhoneNumber with the specified category.
///
/// #Example
///
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::*;
/// use scaffolding_macros::*;
/// use serde_derive::{Deserialize, Serialize};
/// use std::collections::BTreeMap;
///
/// #[scaffolding_struct("phone_numbers")]
/// #[derive(Clone, Debug, Deserialize, Serialize, Scaffolding, ScaffoldingPhoneNumbers)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn("phone_numbers")]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let mut entity = MyEntity::new();
/// let _ = entity.insert_phone_number(
/// "home".to_string(),
/// "8482493561".to_string(),
/// "USA".to_string(),
/// );
///
/// assert_eq!(entity.search_phone_numbers_by_category("home".to_string()).len(), 1);
/// ```
fn search_phone_numbers_by_category(&self, category: String) -> Vec<PhoneNumber>;
/// Removes a related PhoneNumber to the Entity.
///
/// #Example
///
/// ```rust
/// extern crate scaffolding_core;
///
/// use scaffolding_core::*;
/// use scaffolding_macros::*;
/// use serde_derive::{Deserialize, Serialize};
/// use std::collections::BTreeMap;
///
/// #[scaffolding_struct("phone_numbers")]
/// #[derive(Clone, Debug, Deserialize, Serialize, Scaffolding, ScaffoldingPhoneNumbers)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn("phone_numbers")]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let mut entity = MyEntity::new();
/// let id = entity.insert_phone_number(
/// "home".to_string(),
/// "8482493561".to_string(),
/// "USA".to_string(),
/// );
/// assert_eq!(entity.phone_numbers.len(), 1);
///
/// entity.remove_phone_number(id);
/// assert_eq!(entity.phone_numbers.len(), 0);
/// ```
fn remove_phone_number(&mut self, id: String);
}
/// The tagging behavior of a Scaffolding object
pub trait ScaffoldingTags {
/// This function adds a tag to the object
///
/// #Example
///
/// ```rust
/// #[macro_use]
///
/// use scaffolding_core::{defaults, ActivityItem, Scaffolding, ScaffoldingTags};
/// use scaffolding_macros::*;
///
/// #[scaffolding_struct("tags")]
/// #[derive(Clone, Debug, Scaffolding, ScaffoldingTags)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn("tags")]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let mut entity = MyEntity::new();
///
/// entity.add_tag("tag_1".to_string());
/// // ignore any duplicates
/// entity.add_tag("tag_1".to_string());
/// entity.add_tag("tag_2".to_string());
/// entity.add_tag("tag_3".to_string());
///
/// assert_eq!(entity.tags.len(), 3);
/// ```
fn add_tag(&mut self, tag: String);
/// This function determines if the object has a specific tag
///
/// #Example
///
/// ```rust
/// #[macro_use]
///
/// use scaffolding_core::{defaults, ActivityItem, Scaffolding, ScaffoldingTags};
/// use scaffolding_macros::*;
///
/// #[scaffolding_struct("tags")]
/// #[derive(Clone, Debug, Scaffolding, ScaffoldingTags)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn("tags")]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let mut entity = MyEntity::new();
///
/// entity.add_tag("tag_1".to_string());
///
/// assert!(entity.has_tag("tag_1".to_string()));
/// ```
fn has_tag(&self, tag: String) -> bool;
/// This function removes a specific tag from the object
///
/// #Example
///
/// ```rust
/// #[macro_use]
///
/// use scaffolding_core::{defaults, ActivityItem, Scaffolding, ScaffoldingTags};
/// use scaffolding_macros::*;
///
/// #[scaffolding_struct("tags")]
/// #[derive(Clone, Debug, Scaffolding, ScaffoldingTags)]
/// struct MyEntity {}
///
/// impl MyEntity {
/// #[scaffolding_fn("tags")]
/// fn new() -> Self {
/// Self {}
/// }
/// }
///
/// let mut entity = MyEntity::new();
///
/// entity.add_tag("tag_1".to_string());
/// assert_eq!(entity.tags.len(), 1);
/// entity.remove_tag("tag_1".to_string());
/// assert_eq!(entity.tags.len(), 0);
/// ```
fn remove_tag(&mut self, tag: String);
}
// modules
pub mod defaults;
pub mod errors;
#[cfg(test)]
mod tests {
use crate::{defaults, ActivityItem};
fn get_actionitem() -> ActivityItem {
ActivityItem::new(
"updated".to_string(),
"The object has been updated.".to_string(),
)
}
#[test]
fn test_activityitem_new() {
let ai = get_actionitem();
assert_eq!(ai.created_dtm, defaults::now());
assert_eq!(ai.action, "updated".to_string());
assert_eq!(ai.description, "The object has been updated.".to_string());
}
#[test]
fn test_activityitem_serialization() {
let serialized = r#"{"created_dtm":1711760135,"action":"updated","description":"The object has been updated."}"#;
let mut ai = ActivityItem::deserialized(&serialized.as_bytes()).unwrap();
assert_eq!(ai.created_dtm, 1711760135);
assert_eq!(ai.action, "updated".to_string());
assert_eq!(ai.description, "The object has been updated.".to_string());
assert_eq!(ai.serialize(), serialized);
}
}