/* * Copyright 2022 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.cbnu.cats.data.local import com.cbnu.cats.R import com.cbnu.cats.data.Email import com.cbnu.cats.data.EmailAttachment import com.cbnu.cats.data.MailboxType /** * A static data store of [Email]s. */ object LocalEmailsDataProvider { private val threads = listOf( Email( id = 8L, sender = LocalAccountsDataProvider.getContactAccountByUid(13L), recipients = listOf(LocalAccountsDataProvider.getDefaultUserAccount()), subject = "Your update on Google Play Store is live!", body = """ Your update, 0.1.1, is now live on the Play Store and available for your alpha users to start testing. Your alpha testers will be automatically notified. If you'd rather send them a link directly, go to your Google Play Console and follow the instructions for obtaining an open alpha testing link. """.trimIndent(), mailbox = MailboxType.TRASH, createdAt = "3 hours ago", ), Email( id = 5L, sender = LocalAccountsDataProvider.getContactAccountByUid(13L), recipients = listOf(LocalAccountsDataProvider.getDefaultUserAccount()), subject = "Update to Your Itinerary", body = "", createdAt = "2 hours ago", ), Email( id = 6L, sender = LocalAccountsDataProvider.getContactAccountByUid(10L), recipients = listOf(LocalAccountsDataProvider.getDefaultUserAccount()), subject = "Recipe to try", "Raspberry Pie: We should make this pie recipe tonight! The filling is " + "very quick to put together.", createdAt = "2 hours ago", mailbox = MailboxType.SENT ), Email( id = 7L, sender = LocalAccountsDataProvider.getContactAccountByUid(9L), recipients = listOf(LocalAccountsDataProvider.getDefaultUserAccount()), subject = "Delivered", body = "Your shoes should be waiting for you at home!", createdAt = "2 hours ago", ), Email( id = 9L, sender = LocalAccountsDataProvider.getContactAccountByUid(10L), recipients = listOf(LocalAccountsDataProvider.getDefaultUserAccount()), subject = "(No subject)", body = """ Hey, Wanted to email and see what you thought of """.trimIndent(), createdAt = "3 hours ago", mailbox = MailboxType.DRAFTS ), Email( id = 1L, sender = LocalAccountsDataProvider.getContactAccountByUid(6L), recipients = listOf(LocalAccountsDataProvider.getDefaultUserAccount()), subject = "Brunch this weekend?", body = """ I'll be in your neighborhood doing errands and was hoping to catch you for a coffee this Saturday. If you don't have anything scheduled, it would be great to see you! It feels like its been forever. If we do get a chance to get together, remind me to tell you about Kim. She stopped over at the house to say hey to the kids and told me all about her trip to Mexico. Talk to you soon, Ali """.trimIndent(), createdAt = "40 mins ago", ), Email( id = 2L, sender = LocalAccountsDataProvider.getContactAccountByUid(5L), recipients = listOf(LocalAccountsDataProvider.getDefaultUserAccount()), subject = "Bonjour from Paris", body = "Here are some great shots from my trip...", attachments = listOf( EmailAttachment(R.drawable.paris_1, "Bridge in Paris"), EmailAttachment(R.drawable.paris_2, "Bridge in Paris at night"), EmailAttachment(R.drawable.paris_3, "City street in Paris"), EmailAttachment(R.drawable.paris_4, "Street with bike in Paris") ), isImportant = true, createdAt = "1 hour ago", ), ) val allEmails = listOf( Email( id = 0L, sender = LocalAccountsDataProvider.getContactAccountByUid(9L), recipients = listOf(LocalAccountsDataProvider.getDefaultUserAccount()), subject = "Package shipped!", body = """ Cucumber Mask Facial has shipped. Keep an eye out for a package to arrive between this Thursday and next Tuesday. If for any reason you don't receive your package before the end of next week, please reach out to us for details on your shipment. As always, thank you for shopping with us and we hope you love our specially formulated Cucumber Mask! """.trimIndent(), createdAt = "20 mins ago", isStarred = true, threads = threads, ), Email( id = 1L, sender = LocalAccountsDataProvider.getContactAccountByUid(6L), recipients = listOf(LocalAccountsDataProvider.getDefaultUserAccount()), subject = "Brunch this weekend?", body = """ I'll be in your neighborhood doing errands and was hoping to catch you for a coffee this Saturday. If you don't have anything scheduled, it would be great to see you! It feels like its been forever. If we do get a chance to get together, remind me to tell you about Kim. She stopped over at the house to say hey to the kids and told me all about her trip to Mexico. Talk to you soon, Ali """.trimIndent(), createdAt = "40 mins ago", threads = threads.shuffled(), ), Email( 2L, LocalAccountsDataProvider.getContactAccountByUid(5L), listOf(LocalAccountsDataProvider.getDefaultUserAccount()), "Bonjour from Paris", "Here are some great shots from my trip...", listOf( EmailAttachment(R.drawable.paris_1, "Bridge in Paris"), EmailAttachment(R.drawable.paris_2, "Bridge in Paris at night"), EmailAttachment(R.drawable.paris_3, "City street in Paris"), EmailAttachment(R.drawable.paris_4, "Street with bike in Paris") ), true, createdAt = "1 hour ago", threads = threads.shuffled(), ), Email( 3L, LocalAccountsDataProvider.getContactAccountByUid(8L), listOf(LocalAccountsDataProvider.getDefaultUserAccount()), "High school reunion?", """ Hi friends, I was at the grocery store on Sunday night.. when I ran into Genie Williams! I almost didn't recognize her afer 20 years! Anyway, it turns out she is on the organizing committee for the high school reunion this fall. I don't know if you were planning on going or not, but she could definitely use our help in trying to track down lots of missing alums. If you can make it, we're doing a little phone-tree party at her place next Saturday, hoping that if we can find one person, thee more will... """.trimIndent(), createdAt = "2 hours ago", mailbox = MailboxType.SENT, threads = threads.shuffled(), ), Email( id = 4L, sender = LocalAccountsDataProvider.getContactAccountByUid(11L), recipients = listOf( LocalAccountsDataProvider.getDefaultUserAccount(), LocalAccountsDataProvider.getContactAccountByUid(8L), LocalAccountsDataProvider.getContactAccountByUid(5L) ), subject = "Brazil trip", body = """ Thought we might be able to go over some details about our upcoming vacation. I've been doing a bit of research and have come across a few paces in Northern Brazil that I think we should check out. One, the north has some of the most predictable wind on the planet. I'd love to get out on the ocean and kitesurf for a couple of days if we're going to be anywhere near or around Taiba. I hear it's beautiful there and if you're up for it, I'd love to go. Other than that, I haven't spent too much time looking into places along our road trip route. I'm assuming we can find places to stay and things to do as we drive and find places we think look interesting. But... I know you're more of a planner, so if you have ideas or places in mind, lets jot some ideas down! Maybe we can jump on the phone later today if you have a second. """.trimIndent(), createdAt = "2 hours ago", isStarred = true, threads = threads.shuffled(), ), Email( id = 5L, sender = LocalAccountsDataProvider.getContactAccountByUid(13L), recipients = listOf(LocalAccountsDataProvider.getDefaultUserAccount()), subject = "Update to Your Itinerary", body = "", createdAt = "2 hours ago", threads = threads.shuffled() ), Email( id = 6L, sender = LocalAccountsDataProvider.getContactAccountByUid(10L), recipients = listOf(LocalAccountsDataProvider.getDefaultUserAccount()), subject = "Recipe to try", "Raspberry Pie: We should make this pie recipe tonight! The filling is " + "very quick to put together.", createdAt = "2 hours ago", mailbox = MailboxType.SENT, threads = threads.shuffled() ), Email( id = 7L, sender = LocalAccountsDataProvider.getContactAccountByUid(9L), recipients = listOf(LocalAccountsDataProvider.getDefaultUserAccount()), subject = "Delivered", body = "Your shoes should be waiting for you at home!", createdAt = "2 hours ago", threads = threads.shuffled() ), Email( id = 8L, sender = LocalAccountsDataProvider.getContactAccountByUid(13L), recipients = listOf(LocalAccountsDataProvider.getDefaultUserAccount()), subject = "Your update on Google Play Store is live!", body = """ Your update, 0.1.1, is now live on the Play Store and available for your alpha users to start testing. Your alpha testers will be automatically notified. If you'd rather send them a link directly, go to your Google Play Console and follow the instructions for obtaining an open alpha testing link. """.trimIndent(), mailbox = MailboxType.TRASH, createdAt = "3 hours ago", threads = threads.shuffled(), ), Email( id = 9L, sender = LocalAccountsDataProvider.getContactAccountByUid(10L), recipients = listOf(LocalAccountsDataProvider.getDefaultUserAccount()), subject = "(No subject)", body = """ Hey, Wanted to email and see what you thought of """.trimIndent(), createdAt = "3 hours ago", mailbox = MailboxType.DRAFTS, threads = threads.shuffled(), ), Email( id = 10L, sender = LocalAccountsDataProvider.getContactAccountByUid(5L), recipients = listOf(LocalAccountsDataProvider.getDefaultUserAccount()), subject = "Try a free TrailGo account", body = """ Looking for the best hiking trails in your area? TrailGo gets you on the path to the outdoors faster than you can pack a sandwich. Whether you're an experienced hiker or just looking to get outside for the afternoon, there's a segment that suits you. """.trimIndent(), createdAt = "3 hours ago", mailbox = MailboxType.TRASH, threads = threads.shuffled(), ), Email( id = 11L, sender = LocalAccountsDataProvider.getContactAccountByUid(5L), recipients = listOf(LocalAccountsDataProvider.getDefaultUserAccount()), subject = "Free money", body = """ You've been selected as a winner in our latest raffle! To claim your prize, click on the link. """.trimIndent(), createdAt = "3 hours ago", mailbox = MailboxType.SPAM, threads = threads.shuffled(), ) ) /** * Get an [Email] with the given [id]. */ fun get(id: Long): Email? { return allEmails.firstOrNull { it.id == id } } /** * Create a new, blank [Email]. */ fun create(): Email { return Email( System.nanoTime(), // Unique ID generation. LocalAccountsDataProvider.getDefaultUserAccount(), createdAt = "Just now", subject = "Monthly hosting party", body = "I would like to invite everyone to our monthly event hosting party" ) } /** * Create a new [Email] that is a reply to the email with the given [replyToId]. */ fun createReplyTo(replyToId: Long): Email { val replyTo = get(replyToId) ?: return create() return Email( id = System.nanoTime(), sender = replyTo.recipients.firstOrNull() ?: LocalAccountsDataProvider.getDefaultUserAccount(), recipients = listOf(replyTo.sender) + replyTo.recipients, subject = replyTo.subject, isStarred = replyTo.isStarred, isImportant = replyTo.isImportant, createdAt = "Just now", body = "Responding to the above conversation." ) } /** * Get a list of [EmailFolder]s by which [Email]s can be categorized. */ fun getAllFolders() = listOf( "Receipts", "Pine Elementary", "Taxes", "Vacation", "Mortgage", "Grocery coupons" ) }