diff --git a/src/main/java/Team5/SmartTowns/data/Location.java b/src/main/java/Team5/SmartTowns/data/Location.java index 60b4a772bd93dbd24df5e38a9d62a89dc7b0df74..e013b0f88572eebe5c8d53da4bb4473516322a67 100644 --- a/src/main/java/Team5/SmartTowns/data/Location.java +++ b/src/main/java/Team5/SmartTowns/data/Location.java @@ -60,7 +60,6 @@ public class Location { public boolean isLocationApproved() { return locationApproved; - } diff --git a/src/main/java/Team5/SmartTowns/data/LocationRepository.java b/src/main/java/Team5/SmartTowns/data/LocationRepository.java index 87a282b886ea979f4014ab8dba9d78c1d2bc0f33..da6f1183ea7cd7b472ba69192d57d43c0ec15139 100644 --- a/src/main/java/Team5/SmartTowns/data/LocationRepository.java +++ b/src/main/java/Team5/SmartTowns/data/LocationRepository.java @@ -12,7 +12,7 @@ public interface LocationRepository { List<Location> getAllApprovedLocations(); - int nametoLocationID(String name); + int nametoLocationID(String name); // List<Location> getApprovedLocations2(List<Location> list); diff --git a/src/main/java/Team5/SmartTowns/data/LocationRepositoryJDBC.java b/src/main/java/Team5/SmartTowns/data/LocationRepositoryJDBC.java index 98d829b72e6bea3494359d95748a244b045dd137..8ab41dc4589a5ee0a49021c105f31ed40d869546 100644 --- a/src/main/java/Team5/SmartTowns/data/LocationRepositoryJDBC.java +++ b/src/main/java/Team5/SmartTowns/data/LocationRepositoryJDBC.java @@ -41,16 +41,7 @@ public class LocationRepositoryJDBC implements LocationRepository { String sql= "SELECT * FROM locations"; return jdbc.query(sql, locationMapper); } - public LocationRepositoryJDBC() { - JdbcTemplate ajdbc = new JdbcTemplate(); - this.jdbc =ajdbc; - setlocationMapper(); - } - public LocationRepositoryJDBC(JdbcTemplate jdbc, RowMapper<Location> locationMapper) { - this.jdbc = jdbc; - this.locationMapper = locationMapper; - } @Override public List<Location> getAllApprovedLocations(){ diff --git a/src/main/java/Team5/SmartTowns/placeswithcoordinates/PlacesController.java b/src/main/java/Team5/SmartTowns/placeswithcoordinates/PlacesController.java index b9f08193e5f31d8285e385cc6c9495cc15ddf3b1..94200d14799ebe4dbc7f9356b78848bcb0df873c 100644 --- a/src/main/java/Team5/SmartTowns/placeswithcoordinates/PlacesController.java +++ b/src/main/java/Team5/SmartTowns/placeswithcoordinates/PlacesController.java @@ -5,8 +5,6 @@ import Team5.SmartTowns.data.LocationRepository; import Team5.SmartTowns.data.Trail; import Team5.SmartTowns.data.TrailsRepository; import Team5.SmartTowns.rewards.RewardsRepository; -import Team5.SmartTowns.users.UserRepository; -import jakarta.validation.constraints.Max; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; @@ -18,15 +16,12 @@ import org.springframework.web.servlet.ModelAndView; import java.util.ArrayList; import java.util.List; -import java.util.stream.Collectors; @Controller public class PlacesController { @Autowired private PlacesCoordinatesRepository placeRepo; - @Autowired - private LocationRepository locationRepo; @Autowired private TrailsRepository trailsRepo; @@ -34,12 +29,15 @@ public class PlacesController { @Autowired private RewardsRepository rewardsRepository; + @Autowired + private LocationRepository locationRepository; + @GetMapping("/checkpoints") public ModelAndView getLocationPages(){ ModelAndView modelAndView = new ModelAndView("landmarks/locationPage.html"); List<LocationsCoordinates> locCoords = placeRepo.getAllLocationCoords(); - List<Location> approvedLocations = locationRepo.getAllApprovedLocations(); + List<Location> approvedLocations = locationRepository.getAllApprovedLocations(); modelAndView.addObject("location", approvedLocations); modelAndView.addObject("locationCoords", locCoords); @@ -58,7 +56,7 @@ public class PlacesController { @GetMapping("/checkpoints/{location}") public ModelAndView getResultBySearchKeyLocation(@PathVariable String location) { List<LocationsCoordinates> locCoords = placeRepo.getAllLocationCoords(); - List<Location> approvedLocations = locationRepo.getAllApprovedLocations(); + List<Location> approvedLocations = locationRepository.getAllApprovedLocations(); int locationID = 999; for (int i=0;i<approvedLocations.size();i++){ @@ -84,7 +82,7 @@ public class PlacesController { public ModelAndView getTrailsPage(){ ModelAndView modelAndView = new ModelAndView("landmarks/trailsPage.html"); List<LocationsCoordinates> locCoords = placeRepo.getAllLocationCoords(); - List<Location> approvedLocations = locationRepo.getAllApprovedLocations(); + List<Location> approvedLocations = locationRepository.getAllApprovedLocations(); List<Trail> trailslocations = trailsRepo.getAllTrails(); List<Location> locationCoordsWorkaround = new ArrayList<Location>(); @@ -103,8 +101,9 @@ public class PlacesController { @GetMapping("/trails/{trail}") public ModelAndView getResultBySearchKeyTrails(@PathVariable String trail) { List<LocationsCoordinates> locCoords = placeRepo.getAllLocationCoords(); - List<Location> approvedLocations = locationRepo.getAllApprovedLocations(); + List<Location> approvedLocations = locationRepository.getAllApprovedLocations(); List<Trail> trailslocations = trailsRepo.getAllTrails(); + int trailID = 999;// otherwise cases errors e.g. null used. 999 unlikely to be used so safe until then for (int i=0;i<trailslocations.size();i++){ @@ -113,9 +112,6 @@ public class PlacesController { break;} } ModelAndView modelAndView= new ModelAndView("fragments/trailsPageFrags :: trailsSection"); - System.out.println(locCoords.get(0).getLocationID()); - System.out.println(approvedLocations.get(0).getLocationID()); -// locations[indexValue.index].getLocationTrailID()==trail.getTrailsId()} final int trailIDFINAL = trailID; diff --git a/src/main/java/Team5/SmartTowns/placeswithcoordinates/PlacesCoordinatesRepositoryJDBC.java b/src/main/java/Team5/SmartTowns/placeswithcoordinates/PlacesCoordinatesRepositoryJDBC.java index a7a7dc86900df8bdfb0c0dd080fcced6d123d313..4258c7e598c3296b7851b843807f8a040af6a31e 100644 --- a/src/main/java/Team5/SmartTowns/placeswithcoordinates/PlacesCoordinatesRepositoryJDBC.java +++ b/src/main/java/Team5/SmartTowns/placeswithcoordinates/PlacesCoordinatesRepositoryJDBC.java @@ -18,6 +18,7 @@ public class PlacesCoordinatesRepositoryJDBC implements PlacesCoordinatesReposit private JdbcTemplate jdbc; private RowMapper<LocationsCoordinates> locationCoordMapper; private RowMapper<TownWithTrails> townCoordMapper; + public PlacesCoordinatesRepositoryJDBC(JdbcTemplate aJdbc) { this.jdbc = aJdbc; setLocationCoordsMapper(); @@ -217,369 +218,3 @@ public class PlacesCoordinatesRepositoryJDBC implements PlacesCoordinatesReposit - - - /// if location id == unapproved location id,-> make sure coords within boundaries, -> approve and append lcoations table and add to coords table. - -// List<String> unapprovedLocationTowns = new ArrayList<String>(); -// for (int i=1;unapprovedLocations.size()>i;i++ ){ -// if (Objects.equals(unapprovedLocations.get(i).getLocationPlace(), town)){ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -// } -// -//// -// // unapproved list -// // if matches name, approve -// // add long/lat coords -// //use to update table -// } -//} diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index fc40c9e4004d1b4e83234ecefecf308e3e4871b8..52e81d219c68d4702643665e6f9d58c7aebb8308 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -1,4 +1,4 @@ -spring.datasource.url=jdbc:mariadb://localhost:3306/ +spring.datasource.url=jdbc:mariadb://localhost:3306/towns spring.datasource.username=root spring.datasource.password=comsc diff --git a/src/main/resources/data.sql b/src/main/resources/data.sql index 7d1cef56ac46ccf4ed4a8990a2142825708d67be..ca3b5657695233a62fa3c5164d60a220a9256ad0 100644 --- a/src/main/resources/data.sql +++ b/src/main/resources/data.sql @@ -54,10 +54,6 @@ INSERT INTO stickers (packID, stickerID, name, description, rarity) VALUE (3, 1, INSERT INTO stickers (packID, stickerID, name, description, rarity) VALUE (3, 2, 'Welsh Outline', 'Welsh Heritage', '1'); INSERT INTO stickers (packID, stickerID, name, description, rarity) VALUE (3, 3, 'Welsh Spoon', 'Welsh Heritage', '1'); -# delete from stickerprogress; -# insert into stickerprogress (userID, stickerID, hasSticker) value ('1', '1', true); -# insert into stickerprogress (userID, stickerID, hasSticker) value ('1', '3', true); -# insert into stickerprogress (userID, stickerID, hasSticker) value ('2', '2', true); delete from locationCoordinates; insert into locationCoordinates(locationID, locationCoordsLat, locationCoordsLong) value (2, 51.57623, -3.21910 ); @@ -73,23 +69,13 @@ insert into locationCoordinates(locationID, locationCoordsLat, locationCoordsLon insert into locationCoordinates(locationID, locationCoordsLat, locationCoordsLong) value (20, 51.43547, -3.16789 ); - - - -# insert into stickerprogress (userID, packID, stickerID) value (1, 1, 1); -# insert into stickerprogress (userID, packID, stickerID) value (1, 1, 2); -# insert into stickerprogress (userID, packID, stickerID) value (1, 1, 3); -# insert into stickerprogress (userID, packID, stickerID) value (1, 1, 5); -# insert into stickerprogress (userID, packID, stickerID) value (1, 2, 1); -# insert into stickerprogress (userID, packID, stickerID) value (1, 2, 3); - delete from localauthority; insert into localauthority ( localAuthorityName, address1, address2, city, county, postcode, website) value ( 'Caerphilly County Borough Council', 'Tredomen Park','', 'Ystrad Mynach, Hengoed', '', 'CF82 7PG', 'https://www.caerphilly.gov.uk/main.aspx?lang=en-GB'); insert into localauthority ( localAuthorityName, address1, address2, city, county, postcode, website) value ( 'Risca Town Council', 'Unit B, 75 Tredegar Street', '', 'Risca', '', 'NP11 6BW', 'https://www.riscatowncouncil.org.uk/'); insert into localauthority ( localAuthorityName, address1, address2, city, county, postcode, website) value ( 'Penarth Town Council West House', 'Stanwell Road', '', 'Penarth', '', 'CF64 2YG', 'https://www.penarthtowncouncil.gov.uk/your-council/'); -# + delete from townsWithTrails; insert into townsWithTrails (townName, townCentreCoordsLat, townCentreCoordsLong, townUppermostCoordsLat, townLowermostCoordsLat, townLeftmostCoordsLong, townRightmostCoordsLong) value ('Caerphilly', '51.57903','-3.22075 ','51.60418','51.55093','-3.25222','-3.17696'); insert into townsWithTrails (townName, townCentreCoordsLat, townCentreCoordsLong, townUppermostCoordsLat, townLowermostCoordsLat, townLeftmostCoordsLong, townRightmostCoordsLong) value ('Risca','51.61195','-3.09648','51.63039','51.59175','-3.12129','-3.06438'); diff --git a/src/main/resources/schema.sql b/src/main/resources/schema.sql index 2078cbc3e921010294cbf026c57a689b3ce54657..12452d458fccc0626341c4017ab3d1720bf24194 100644 --- a/src/main/resources/schema.sql +++ b/src/main/resources/schema.sql @@ -28,8 +28,7 @@ create table if not exists trails city varchar(128) ) engine=InnoDB; -drop table if exists locationCoordinates; -drop table if exists locations; + create table if not exists locations ( locationID bigint auto_increment primary key, @@ -103,7 +102,7 @@ create table if not exists locationCoordinates )engine=InnoDB; -drop table if exists townsWithTrails; + create table if not exists townsWithTrails ( townID bigint auto_increment primary key, @@ -117,7 +116,7 @@ create table if not exists townsWithTrails )engine=InnoDB; -drop table if exists localAuthority; + create table if not exists localAuthority ( localAuthorityID bigint auto_increment primary key, @@ -130,7 +129,7 @@ create table if not exists localAuthority website varchar(250) ) engine=InnoDB; -drop table if exists businesses; + create table if not exists businesses ( businessID bigint auto_increment primary key, diff --git a/src/main/resources/static/css/locationApprovalFormStyle.css b/src/main/resources/static/css/locationApprovalFormStyle.css index 99a2f8719b8877f881addd9e029a4562ed713399..3ff324e5832368502608b039b96fd17beb52f9b2 100644 --- a/src/main/resources/static/css/locationApprovalFormStyle.css +++ b/src/main/resources/static/css/locationApprovalFormStyle.css @@ -1,7 +1,7 @@ -body{ - background: rgb(41, 41, 41); - color: wheat; -} +/*body{*/ +/* background: rgb(41, 41, 41);*/ +/* color: wheat;*/ +/*}*/ main { background-color: rgb(206, 153, 253); color: black; @@ -9,7 +9,7 @@ main { align-content: center; text-align: center; border-radius: 25px; - max-width: 620px; + max-width: 80vw; margin: 0 auto } diff --git a/src/main/resources/static/css/mobile-style.css b/src/main/resources/static/css/mobile-style.css index 6be7d20cb2d472f85e42d7154c059181e13a0904..fe240351253e9b3286c1aa8bae8ecf0433e08493 100644 --- a/src/main/resources/static/css/mobile-style.css +++ b/src/main/resources/static/css/mobile-style.css @@ -157,6 +157,31 @@ and (max-device-width: 640px) { flex-direction: column; align-items: center; justify-content: flex-end; + + & ul { + list-style: none; + text-decoration: none; + + + & li { + display: flex; + align-items: center; + justify-content: center; + padding: 15px; + margin-block: 3px; + background-color: #1f1f1f; + border-radius: 20px; + text-decoration: none; + text-align: center; + + & a { + text-decoration: none; + font-weight: 600; + color: white; + font-size: 1.2em; + } + } + } } .rightFooter { @@ -170,6 +195,7 @@ and (max-device-width: 640px) { aspect-ratio: 1; } } + } diff --git a/src/main/resources/templates/fragments/banners.html b/src/main/resources/templates/fragments/banners.html index a04b03d5f9a9a3c6cb569cc60c8bdc9db1a070e3..b4955803d95d88817d4d0bc408c9d80c9cfa9f72 100644 --- a/src/main/resources/templates/fragments/banners.html +++ b/src/main/resources/templates/fragments/banners.html @@ -20,12 +20,6 @@ <input hidden type="submit" value="Sign Out"/> </form> </li> - <li class="nav-li li-first"> - <a href="/local-authorities" class="nav-links">Local Authorities</a> - </li> - <li class="nav-li li-first"> - <a href="/businesses" class="nav-links">Local Businesses</a> - </li> </ul> </nav> </header> @@ -42,6 +36,14 @@ </div> <div class="footer-div centerFooter"> <div class="footerText"> + <ul> + <li class="nav-li li-first"> + <a href="/local-authorities" class="nav-links">Local Authorities</a> + </li> + <li class="nav-li li-first"> + <a href="/businesses" class="nav-links">Local Businesses</a> + </li> + </ul> <h3>Follow Us</h3> <a href="https://www.facebook.com/VZTAsmarttowns/" class="icon"><img src="/images/icons/Facebook.png" height="25" width="25" alt="Facebook Logo" class="icon"/></a> <a href="https://www.twitter.com/VZTAsmarttowns/" class="icon"><img src="/images/icons/Twitter.jpg" height="25" width="25" alt="X (formally Twitter) Logo" class="icon"/></a> diff --git a/src/main/resources/templates/fragments/trailsPageFrags.html b/src/main/resources/templates/fragments/trailsPageFrags.html index 9a62be17086ae209a7b3c372e8edacc0992713ed..d66c519a45596954d00fd7c7ee99b9de550e5de7 100644 --- a/src/main/resources/templates/fragments/trailsPageFrags.html +++ b/src/main/resources/templates/fragments/trailsPageFrags.html @@ -93,7 +93,7 @@ </div> </div> <H3>Checkpoints:</H3> -<!-- With the trial name, we go through locations list to get --> + With the trial name, we go through locations list to get <div th:each="location:${locations}" > <div> <li id="checkpointList"> diff --git a/src/main/resources/templates/landmarks/locationApprovalFormTh.html b/src/main/resources/templates/landmarks/locationApprovalFormTh.html index eb8c45db5cebcf1f755f1aecdc29f5cb98b98495..7315b62f8a7e80175686d97fc940ab6609dff714 100644 --- a/src/main/resources/templates/landmarks/locationApprovalFormTh.html +++ b/src/main/resources/templates/landmarks/locationApprovalFormTh.html @@ -4,14 +4,14 @@ <meta charset="UTF-8"> <title>Title</title> - <link rel="stylesheet" th:href="@{css/templatingstyle.css}"> + <link rel="stylesheet" th:href="@{css/mobile-style.css}"> <link rel="stylesheet" th:href="@{css/locationApprovalFormStyle.css}"> <script src="/scripts/locationApprovalForm.js"></script> </head> <body> -<header th:insert="~{/fragments/Templating.html :: header}"></header> +<header th:insert="~{/fragments/banners.html :: header}"></header> <hr style="height:20px; visibility:hidden;" /> <main> <H1 id="formHeader">Locations To Be Approved:</H1> @@ -67,6 +67,6 @@ <hr style="height:20px; visibility:hidden;" /> </main> -<footer th:insert="~{/fragments/Templating.html :: footer}"></footer> +<footer th:insert="~{/fragments/banners.html :: footer}"></footer> </body> </html> \ No newline at end of file diff --git a/src/main/resources/templates/towns/home/mobile-homepage.html b/src/main/resources/templates/towns/home/mobile-homepage.html index 43da82f7201b96bd66ab76381a4d450bc2a0ddb2..480cf57421e2066572bb8139b953876a582c66d6 100644 --- a/src/main/resources/templates/towns/home/mobile-homepage.html +++ b/src/main/resources/templates/towns/home/mobile-homepage.html @@ -13,7 +13,9 @@ <div class="title-container"> <h1 class="title">Welcome to VZTA Smart Towns!</h1> <a class="submitLand" href="/landmarkSubmission"> <button> Submit Landmark!</button></a> + <a th:if="${#authentication.getName().equals('Admin')}" class="reviewLand" href="/checkpointApproval"> <button> Review Landmark!</button></a> <p class="small-text">Choose your town and start tracking your trails!</p> + </div> <article class="towns-wrapper">